diff options
| author | Dominik Kaiser | 2025-02-16 11:27:57 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-16 11:27:57 +0100 |
| commit | b73e524cefb7878a8d3fd197f0e6dd4a71338cbc (patch) | |
| tree | c8e430f2ac4f88688b3764235e666d538a597908 | |
| parent | f4f4e6e7f5a63effc39098188d74655fc46acae3 (diff) | |
| download | nixos-b73e524cefb7878a8d3fd197f0e6dd4a71338cbc.tar.gz nixos-b73e524cefb7878a8d3fd197f0e6dd4a71338cbc.zip | |
Disable ssh password login on antares
| -rw-r--r-- | hosts/antares/configuration.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix index a32bb61..6e05e75 100644 --- a/hosts/antares/configuration.nix +++ b/hosts/antares/configuration.nix @@ -17,6 +17,7 @@ efiInstallAsRemovable = true; }; services.openssh.enable = true; + services.openssh.passwordAuthentication = false; networking.hostName = "antares"; time.timeZone = "Europe/Berlin"; |
