style: format expression inputs, remove unused

This commit is contained in:
Michael Thomas 2023-11-13 12:40:23 -05:00
parent 7b81820c1c
commit 05522c6325
11 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
# Enable CUPS to print documents.
services.printing = {
enable = true;

View File

@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
# Font Settings
fonts = {
fonts = with pkgs; [

View File

@ -1,4 +1,4 @@
{ config, pkgs, inputs, ... }:
{ pkgs, ... }:
{
imports = [
../../modules/zsh.nix
@ -6,6 +6,7 @@
../../modules/git.nix
../../modules/fonts.nix
../../modules/nvim.nix
../../modules/vscode.nix
];
home.packages = with pkgs; [

View File

@ -1,4 +1,3 @@
{ config, pkgs, ... }:
{
imports = [
../../modules/dev.nix

View File

@ -1,5 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
imports = [
../../modules/dev.nix

View File

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ pkgs, ... }:
{
home.packages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })

View File

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
git-lfs

View File

@ -1,4 +1,4 @@
{ config, pkgs, libs, ... }:
{ pkgs, ... }:
{
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
programs.git = {

View File

@ -1,4 +1,4 @@
{ config, pkgs, libs, ... }:
{ pkgs, ... }:
{
home.packages = with pkgs; [
gnomeExtensions.caffeine

View File

@ -1,4 +1,3 @@
{ config, pkgs, libs, ... }:
{
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;

View File

@ -1,4 +1,4 @@
{ config, pkgs, libs, ... }:
{ pkgs, ... }:
{
programs.zsh = {
enable = true;