forked from Yuka/c3h-nixfiles
15 lines
268 B
Nix
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"
|
|
];
|
|
};
|
|
}
|