From cbe313139146c970032d2a57082124b321ff1a3a Mon Sep 17 00:00:00 2001 From: Jimbo Date: Sat, 25 Jan 2025 16:08:05 -0500 Subject: [PATCH] Didn't mean to leave this in lol --- hosts/tower/default.nix | 2 +- modules/system/accounts/users/custom/default.nix | 1 - .../system/accounts/users/custom/jules/default.nix | 14 -------------- 3 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 modules/system/accounts/users/custom/jules/default.nix 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; -}