nixos/hosts/common/optional/nfs-mounts/homeshare.nix
2024-08-20 13:14:24 +01:00

9 lines
149 B
Nix

{
fileSystems."/media/homeshare" = {
device = "10.0.10.30:/mnt/homeshare";
fsType = "nfs";
options = [ "noatime" "_netdev" ];
};
}