nixos-flake/nfs.nix
2024-07-21 22:21:55 -07:00

7 lines
159 B
Nix

{
fileSystems."/net/video" = {
device = "supplydepot:/video";
fsType = "nfs";
options = [ "nfsvers=4.1" "x-systemd.automount" "noauto" ];
};
}