c3h-nixfiles/shared-services/nfs-client.nix
2021-10-24 20:55:12 +02:00

15 lines
268 B
Nix

{ ... }:
{
boot.supportedFilesystems = [ "nfs" ];
fileSystems."/mnt/Music" = {
device = "10.23.42.126:/music";
fsType = "nfs";
options = [
"nfsvers=4.1"
"noauto"
"x-systemd.automount"
"x-systemd.idle-timeout=600"
];
};
}