added an nfsv2 module.
This commit is contained in:
parent
fac5efd7b2
commit
e641a643af
2 changed files with 30 additions and 0 deletions
23
modules/nixos/nfsv2.nix
Normal file
23
modules/nixos/nfsv2.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
# will force you to compile kernel locally.
|
||||
services.nfs = {
|
||||
settings = {
|
||||
nfsd.vers2 = true;
|
||||
};
|
||||
server.enable = true;
|
||||
};
|
||||
boot.kernelPatches = [
|
||||
{
|
||||
name = "nfsv2";
|
||||
patch = null;
|
||||
extraStructuredConfig = {
|
||||
NFSD_V2 = lib.kernel.yes;
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue