summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-05 18:17:22 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-05 18:17:22 +0200
commit520cb14f16a13b4e70ead6618fa4e081a5a8059f (patch)
tree8d069cf61b9f745e18920c1d8a5884005af63d8c /nixos/modules
parent9e363a752fbd5ca4447cd1f82526e2a166eedfa5 (diff)
downloadnixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar.gz
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar.bz2
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar.lz
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar.xz
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.tar.zst
nixlib-520cb14f16a13b4e70ead6618fa4e081a5a8059f.zip
Fix infinite recursion introduced by f3c32cb2c1344c9a831bb9e4f47c1b20527dbe0b
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index ef186a20f932..1d15a1419722 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -85,7 +85,7 @@ in
 
       forwardX11 = mkOption {
         type = types.bool;
-        default = cfgc.setXAuthLocation;
+        default = false;
         description = ''
           Whether to allow X11 connections to be forwarded.
         '';