home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 98ae989be6762a06f35ef080a96d7cea146d7ae1
parent 02b609e2a7917503504f37bae0832ac525a7eedc
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sat,  6 Jun 2020 13:00:46 +0200

users/vincent: fix secretPath in core

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Musers/vincent/core/ssh.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/users/vincent/core/ssh.nix b/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