Commit 98ae989be676

Vincent Demeester <vincent@sbr.pm>
2020-06-06 13:00:46
users/vincent: fix secretPath in core
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 02b609e
Changed files (1)
users
vincent
users/vincent/core/ssh.nix
@@ -3,7 +3,7 @@
 with lib;
 let
   patchedOpenSSH = pkgs.openssh.override { withKerberos = true; withGssapiPatches = true; };
-  secretPath = ../../secrets/machines.nix;
+  secretPath = ../../../secrets/machines.nix;
   secretCondition = (builtins.pathExists secretPath);
   sshConfig = optionalAttrs secretCondition (import secretPath).sshConfig;
 in