1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

svn path=/nixos/trunk/; revision=22647

This commit is contained in:
Eelco Dolstra 2010-07-18 22:29:40 +00:00
parent b14f80c89a
commit 1a5c18d1b6

View file

@ -81,13 +81,13 @@ in
networking.defaultGateway = mkOverride 150 {} "";
networking.nameservers = mkOverride 150 {} [ ];
# Apply a patch to the kernel to increase the 15s CIFS timeout.
nixpkgs.config.packageOverrides = pkgs: {
linux = pkgs.linux.override (orig: {
kernelPatches = orig.kernelPatches ++ [ pkgs.kernelPatches.cifs_timeout ];
});
};
# Require a patch to the kernel to increase the 15s CIFS timeout.
assertions =
[ { assertion = config.boot.kernelPackages.kernel.features ? cifsTimeout;
message = "VM tests require that the kernel has the CIFS timeout patch.";
}
];
};
}