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/modules/home/home.nix | |
parent | 2dff9d2b61244fed49136028d0e0f6ae3ae759cf (diff) |
modularized nix configuration; builds correctly
Diffstat (limited to 'nix/modules/home/home.nix')
-rw-r--r-- | nix/modules/home/home.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nix/modules/home/home.nix b/nix/modules/home/home.nix index d82445a..aa55550 100644 --- a/nix/modules/home/home.nix +++ b/nix/modules/home/home.nix @@ -1,15 +1,11 @@ { config, sops-nix, ... }: { - imports = [ - ../default.nix - ]; - home-manager = { sharedModules = [ sops-nix.homeManagerModules.sops ]; useGlobalPkgs = true; useUserPackages = true; - users."${config.monorepo.vars.userName}" = import ./user.nix; + users."${config.monorepo.vars.userName}" = import ./default.nix; }; } |