diff options
author | Soispha <soispha@vhack.eu> | 2023-07-04 21:36:35 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-04 21:36:35 +0200 |
commit | f3f8e43a670b2f8e745ef93b4f6d04ca9cf8d4c5 (patch) | |
tree | 8bb15b4b6463b70e82765166fc3f42147b995101 /system/services/openssh/default.nix | |
parent | Fix(system/services/nginx): Create nix-sync cache through impermanence (diff) | |
download | nixos-server-f3f8e43a670b2f8e745ef93b4f6d04ca9cf8d4c5.tar.gz nixos-server-f3f8e43a670b2f8e745ef93b4f6d04ca9cf8d4c5.zip |
Fix(system/services/openssh): Set correct permissions on ssh dir
Diffstat (limited to 'system/services/openssh/default.nix')
-rw-r--r-- | system/services/openssh/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/openssh/default.nix b/system/services/openssh/default.nix index 1bb37ee..8b28cbd 100644 --- a/system/services/openssh/default.nix +++ b/system/services/openssh/default.nix @@ -4,7 +4,7 @@ settings.PasswordAuthentication = false; hostKeys = [ { - path = "/srv/sshd/ssh_host_ed25519_key"; + path = "/var/lib/sshd/ssh_host_ed25519_key"; rounds = 1000; type = "ed25519"; } |