Commit aae97d1fb2e3

Vincent Demeester <vincent@sbr.pm>
2020-06-06 18:35:17
profiles.home: fix secretPath
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 6c5f419
Changed files (1)
systems
modules
profiles
systems/modules/profiles/home.nix
@@ -3,7 +3,7 @@
 with lib;
 let
   cfg = config.profiles.home;
-  secretPath = ../../secrets/machines.nix;
+  secretPath = ../../../secrets/machines.nix;
   secretCondition = (builtins.pathExists secretPath);
   machines = lib.optionalAttrs secretCondition (import secretPath);
 in