summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-12-25 14:51:40 -0800
committerGraham Christensen <graham@grahamc.com>2018-01-28 16:36:00 -0500
commit716d1612afadf0cb0c11499261f68d364dd2879f (patch)
tree530092405b2a92a94b54e308eb418fe4a232faea /nixos
parent192f30f06adcdfe58ff0d4191ef457dfcf3d8642 (diff)
openssh: Build with Kerberos by default
This can be disabled with the `withKerberos` flag if desired. Make the relevant assertions lazy, so that if an overlay is used to set kerberos to null, a later override can explicitly set `withKerberos` to false. Don't build with GSSAPI by default; the patchset is large and a bit hairy, and it is reasonable to follow upstream who has not merged it in not enabling it by default.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/misc/nixpkgs.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/misc/nixpkgs.nix b/nixos/modules/misc/nixpkgs.nix
index 1793c1447d60..6eb424941245 100644
--- a/nixos/modules/misc/nixpkgs.nix
+++ b/nixos/modules/misc/nixpkgs.nix
@@ -69,7 +69,6 @@ in
[ (self: super: {
openssh = super.openssh.override {
hpnSupport = true;
- withKerberos = true;
kerberos = self.libkrb5;
};
};