* Increase the CIFS timeout here as well.

svn path=/nixos/branches/boot-order/; revision=22348
This commit is contained in:
Eelco Dolstra 2010-06-20 20:52:42 +00:00
parent 593a110c47
commit 061ea1674f

View File

@ -81,6 +81,13 @@ in
networking.defaultGateway = mkOverride 200 {} "";
networking.nameservers = mkOverride 200 {} [ ];
# 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 ];
});
};
};
}