diff options
| author | Christian Krinitsin <code@krinitsin.xyz> | 2025-03-05 12:09:51 +0100 |
|---|---|---|
| committer | Christian Krinitsin <code@krinitsin.xyz> | 2025-03-05 12:09:51 +0100 |
| commit | 3208039a06a26467026a0946814d570146599a47 (patch) | |
| tree | 9004ab79feb8cfd6425587527407264799aacfe6 /modules/ssh.nix | |
| parent | 1624697b33322cf83c138a404871909c7b189c62 (diff) | |
| download | nosix-3208039a06a26467026a0946814d570146599a47.tar.gz nosix-3208039a06a26467026a0946814d570146599a47.zip | |
add mealie and refactor
Diffstat (limited to 'modules/ssh.nix')
| -rw-r--r-- | modules/ssh.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/ssh.nix b/modules/ssh.nix index 44580d7..a23dacd 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -1,6 +1,8 @@ { config, libs, pkgs, ... }: { + environment.systemPackages = [ pkgs.openssh ]; + services.openssh = { enable = true; settings.PasswordAuthentication = false; |