diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-16 02:11:26 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-16 02:11:26 -0800 |
commit | 1a3486d77574c06b395ab6cda41084f5ed24a3f4 (patch) | |
tree | 69d1051bd14a0c3cb374f84a8c06cb655eba509b /nix/systems/desktop/home.nix | |
parent | 2dff9d2b61244fed49136028d0e0f6ae3ae759cf (diff) |
modularized nix configuration; builds correctly
Diffstat (limited to 'nix/systems/desktop/home.nix')
-rw-r--r-- | nix/systems/desktop/home.nix | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/nix/systems/desktop/home.nix b/nix/systems/desktop/home.nix deleted file mode 100644 index f1a11df..0000000 --- a/nix/systems/desktop/home.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ sops-nix, ... }: -let - vars = import ./vars.nix; -in -{ - home-manager = { - sharedModules = [ - sops-nix.homeManagerModules.sops - ]; - useGlobalPkgs = true; - useUserPackages = true; - users."${vars.userName}" = import ./user.nix; - }; -} |