diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:16:32 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:16:32 -0800 |
| commit | 455acd7d2edc5aecf62ab6b2ee6c16360fda9980 (patch) | |
| tree | c5b96fdf7923d83e817b04adcd3bbdfdf14d9d7b /modules | |
| parent | home-manager: rofi uses alacritty (diff) | |
| download | infra-455acd7d2edc5aecf62ab6b2ee6c16360fda9980.tar.gz | |
ssh: new module for managing ssh
Diffstat (limited to 'modules')
| -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"; +} |
