mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
* Increase the CIFS timeout here as well.
svn path=/nixos/branches/boot-order/; revision=22348
This commit is contained in:
parent
593a110c47
commit
061ea1674f
@ -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 ];
|
||||
});
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user