diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-29 21:45:44 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-29 21:45:44 +0100 |
commit | 433a9ffcbddda74b0449eba251246a60221ae7cd (patch) | |
tree | 94792eabcb1e30b1f452ea18fd9c70e267aa4180 /modules/services/ssh.nix | |
parent | 1d6f6c4c6f4823d1b969c6309ad2d472441b7b16 (diff) |
better mirror upstream nixpkgs layout
Diffstat (limited to 'modules/services/ssh.nix')
-rw-r--r-- | modules/services/ssh.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/services/ssh.nix b/modules/services/ssh.nix deleted file mode 100644 index d965472..0000000 --- a/modules/services/ssh.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ config, lib, pkgs, ... }: -with lib; - -let - cfg = config.eth.services.ssh; - -in { - options.eth.services.ssh = { - enable = mkEnableOption "Whether to enable SSHd with Eth's defaults."; - - passwordAuthentication = mkOption { - type = types.bool; - default = false; - description = "Whether to allow password authentication. Occasionally useful, used sparingly."; - }; - }; - - config = mkIf cfg.enable { - - security.pam.enableSSHAgentAuth = true; - security.pam.services.sudo.sshAgentAuth = true; - - services.openssh = { - enable = true; - permitRootLogin = "no"; - passwordAuthentication = cfg.passwordAuthentication; - }; - }; -} |