diff options
Diffstat (limited to 'modules/systems')
-rw-r--r-- | modules/systems/ssh.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/systems/ssh.nix b/modules/systems/ssh.nix new file mode 100644 index 0000000..0ecca80 --- /dev/null +++ b/modules/systems/ssh.nix @@ -0,0 +1,5 @@ +{ + # Enable the OpenSSH daemon. + services.openssh.enable = true; + services.openssh.permitRootLogin = "yes"; +} |