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