diff options
author | ene <ene@sils.li> | 2023-03-17 17:42:23 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-17 17:42:23 +0100 |
commit | 8978453ef0492c833d42599c758d25f8ed5afde0 (patch) | |
tree | e0652bf94479213be1a89945f9aa3d7eee1f9a45 /services/openssh | |
parent | Fix(hm/conf/lf): Update to new shell lib version (diff) | |
download | nixos-config-8978453ef0492c833d42599c758d25f8ed5afde0.zip |
Fix(system): Move services to system
Diffstat (limited to 'services/openssh')
-rw-r--r-- | services/openssh/default.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/services/openssh/default.nix b/services/openssh/default.nix deleted file mode 100644 index 5ee48a0c..00000000 --- a/services/openssh/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ - config, - pkg, - ... -}: { - services.openssh = { - enable = true; - hostKeys = [ - { - path = "/srv/sshd/ssh_host_ed25519_key"; - rounds = 1000; - type = "ed25519"; - } - ]; - settings = { - PasswordAuthentication = false; - }; - }; -} |