about summary refs log tree commit diff
path: root/nixos/modules/misc
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:30:46 -0500
commita232dd66ee0b390dc4d82858af7e15713bd60327 (patch)
treebfe19f53d2b6fc8e017095ed9bba67068d79f2ae /nixos/modules/misc
parent0cc73f2524738613422b28e0b322180e445b090b (diff)
downloadnixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar.gz
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar.bz2
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar.lz
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar.xz
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.tar.zst
nixlib-a232dd66ee0b390dc4d82858af7e15713bd60327.zip
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/modules/misc')
-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;
               };
             };