nixos/nfs: test nfs with kerberos authentication

This commit is contained in:
Kai Wohlfahrt
2019-12-12 15:42:44 +00:00
parent ea55a2d8a9
commit 0dce66a6ec
5 changed files with 155 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
{ version ? 4
, system ? builtins.currentSystem
, pkgs ? import ../../.. { inherit system; }
}: {
simple = import ./simple.nix { inherit version system pkgs; };
} // pkgs.lib.optionalAttrs (version == 4) {
# TODO: Test kerberos + nfsv3
kerberos = import ./kerberos.nix { inherit version system pkgs; };
}