diff options
Diffstat (limited to 'hosts/vidhar/default.nix')
-rw-r--r-- | hosts/vidhar/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hosts/vidhar/default.nix b/hosts/vidhar/default.nix index 7f780d9a..5c70c669 100644 --- a/hosts/vidhar/default.nix +++ b/hosts/vidhar/default.nix | |||
@@ -4,7 +4,7 @@ with lib; | |||
4 | 4 | ||
5 | { | 5 | { |
6 | imports = with flake.nixosModules.systemProfiles; [ | 6 | imports = with flake.nixosModules.systemProfiles; [ |
7 | ./zfs.nix ./network ./samba.nix ./dns ./prometheus ./borg ./pgbackrest | 7 | ./zfs.nix ./network ./samba.nix ./dns ./prometheus ./borg ./pgbackrest ./printing |
8 | tmpfs-root zfs | 8 | tmpfs-root zfs |
9 | initrd-all-crypto-modules default-locale openssh rebuild-machines | 9 | initrd-all-crypto-modules default-locale openssh rebuild-machines |
10 | build-server | 10 | build-server |
@@ -82,8 +82,10 @@ with lib; | |||
82 | 82 | ||
83 | services.openssh = { | 83 | services.openssh = { |
84 | enable = true; | 84 | enable = true; |
85 | passwordAuthentication = false; | 85 | settings = { |
86 | kbdInteractiveAuthentication = false; | 86 | PasswordAuthentication = false; |
87 | KbdInteractiveAuthentication = false; | ||
88 | }; | ||
87 | extraConfig = '' | 89 | extraConfig = '' |
88 | AllowGroups ssh | 90 | AllowGroups ssh |
89 | ''; | 91 | ''; |