diff options
author | sefidel <contact@sefidel.net> | 2023-06-17 07:40:49 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-06-17 07:40:49 +0900 |
commit | 4de201426fbf55cb90b42120268fdd692d25be4f (patch) | |
tree | 149fc899564240207113b53b2c8507fa4a32eaee | |
parent | fac57ae963a0f8e676426bf4851ae02eb56b44d9 (diff) | |
download | nixrc-4de201426fbf55cb90b42120268fdd692d25be4f.tar.gz nixrc-4de201426fbf55cb90b42120268fdd692d25be4f.zip |
fix(nixos/alpha): fix openssh settings conflict
-rw-r--r-- | nixos/alpha/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index 2c2c5a8..e614b46 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -108,7 +108,7 @@ services.zfs.autoScrub.pools = [ "rpool" ]; services.openssh.enable = true; - services.openssh.settings.passwordAuthentication = false; + services.openssh.settings.PasswordAuthentication = false; services.openssh.hostKeys = [ { path = "/persist/ssh/ssh_host_ed25519_key"; |