diff options
Diffstat (limited to 'users/glittershark/system/home/default.nix')
-rw-r--r-- | users/glittershark/system/home/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/glittershark/system/home/default.nix b/users/glittershark/system/home/default.nix index 949def154207..d896ba340d59 100644 --- a/users/glittershark/system/home/default.nix +++ b/users/glittershark/system/home/default.nix @@ -10,7 +10,7 @@ rec { sha256 = "10svwspmsf46rijzsh0h9nmz1mq2998wcml8yp36mwksgi8695pc"; }); - home = confPath: import "${home-manager}/modules" { + home = confPath: (import "${home-manager}/modules" { pkgs = nixpkgs; configuration = { config, lib, ... }: { imports = [confPath]; @@ -20,7 +20,7 @@ rec { lib.depot = depot; }; - }; + }) // { __readTree = true; }; chupacabra = home ./machines/chupacabra.nix; } |