summaryrefslogtreecommitdiff
path: root/modules/desktop/software/access/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/desktop/software/access/ssh.nix')
-rw-r--r--modules/desktop/software/access/ssh.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/desktop/software/access/ssh.nix b/modules/desktop/software/access/ssh.nix
deleted file mode 100644
index b514049..0000000
--- a/modules/desktop/software/access/ssh.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ lib, config, ... }:
-{
- programs.ssh.startAgent = false;
- security.pam.sshAgentAuth.enable = true;
-
- services.fail2ban.jails.sshd.settings = {
- enabled = true;
- filter = "sshd[mode=aggressive]";
- port = lib.strings.concatStringsSep "," (map toString config.services.openssh.ports);
- };
-}