11 lines
245 B
Nix
11 lines
245 B
Nix
{
|
|
boot.supportedFilesystems = [ "nfs" ];
|
|
|
|
services.rpcbind.enable = true;
|
|
|
|
fileSystems."/mnt/nas" = {
|
|
device = "192.168.1.226:/volume1/docker";
|
|
fsType = "nfs";
|
|
options = [ "noatime" "vers=4" "rsize=8192" "wsize=8192" ];
|
|
};
|
|
}
|