diff --git a/hosts/tower/default.nix b/hosts/tower/default.nix index ecae484..1387d2f 100644 --- a/hosts/tower/default.nix +++ b/hosts/tower/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ ./boot diff --git a/modules/system/accounts/users/custom/default.nix b/modules/system/accounts/users/custom/default.nix index 10bbc64..d2600a9 100644 --- a/modules/system/accounts/users/custom/default.nix +++ b/modules/system/accounts/users/custom/default.nix @@ -1,7 +1,6 @@ { home-manager, ... }: { imports = [ - ./jules ./main home-manager.nixosModules.home-manager ]; diff --git a/modules/system/accounts/users/custom/jules/default.nix b/modules/system/accounts/users/custom/jules/default.nix deleted file mode 100644 index 9bb74ec..0000000 --- a/modules/system/accounts/users/custom/jules/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ pkgs, config, ... }: -{ - users.users."jules" = { - initialPassword = "jules"; - isNormalUser = true; - extraGroups = [ - "audio" - "video" - "rtkit" - ]; - shell = pkgs.fish; - }; - programs.fish.enable = true; -}