homelab/nixos/hosts/sandbox/storage.nix
2025-06-03 23:07:46 +02:00

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" ];
};
}