nixos/hosts/common/optional/nfs-mounts/media.nix

8 lines
137 B
Nix
Raw Normal View History

2024-08-20 13:14:24 +01:00
{
fileSystems."/media/media" = {
device = "10.0.10.30:/mnt/media";
fsType = "nfs";
options = ["noatime" "_netdev"];
2024-08-20 13:14:24 +01:00
};
}