nixos-flake/nfs.nix

8 lines
159 B
Nix
Raw Normal View History

2024-07-22 05:21:55 +00:00
{
fileSystems."/net/video" = {
device = "supplydepot:/video";
fsType = "nfs";
options = [ "nfsvers=4.1" "x-systemd.automount" "noauto" ];
};
}