diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-01-31 22:02:28 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-01-31 22:02:28 +0530 | 
| commit | 01bb0877c285383fd2857920048bd2576f4d31e9 (patch) | |
| tree | b6f26596f1051baf5b791450d6158a69363f6c76 /modules/ssh.nix | |
| parent | 578dd91bd1af79b256166ecf797344611790e267 (diff) | |
restructure
Diffstat (limited to 'modules/ssh.nix')
| -rw-r--r-- | modules/ssh.nix | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/modules/ssh.nix b/modules/ssh.nix new file mode 100644 index 0000000..a389210 --- /dev/null +++ b/modules/ssh.nix @@ -0,0 +1,9 @@ +{ pkgs, config, ... }: + +{ +  services.openssh = { +    enable = true; +    permitRootLogin = "no"; +    passwordAuthentication = false; +  }; +} | 
