summaryrefslogtreecommitdiff
path: root/nixos/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/ssh.nix')
-rw-r--r--nixos/ssh.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/nixos/ssh.nix b/nixos/ssh.nix
deleted file mode 100644
index 8f81474..0000000
--- a/nixos/ssh.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ lib, config, ... }: let
- cfg = config.services._ssh;
-in {
- options.services._ssh = {
- enable = lib.mkEnableOption "enable openssh with X11 forwarding";
- };
-
- config = lib.mkIf cfg.enable {
- services.openssh = {
- enable = true;
- settings = {
- X11Forwarding = true;
- };
- };
- };
-}