Add nfs mount

This commit is contained in:
Torjus Håkestad 2024-03-05 15:42:52 +01:00
parent 03cbf084e0
commit ffc6e57b23
2 changed files with 20 additions and 0 deletions

View File

@ -3,6 +3,7 @@
./configuration.nix
./hardware-configuration.nix
./steamuser.nix
./nfs.nix
../../system
../../home
];

19
hosts/gunter/nfs.nix Normal file
View File

@ -0,0 +1,19 @@
{ pkgs, ... }: {
services.rpcbind.enable = true;
systemd.mounts = [{
type = "nfs4";
mountConfig = {
Options = "rw,soft,noatime";
};
what = "nas.home.2rjus.net:/mnt/hdd-pool/media";
where = "/mnt/nas/media";
}];
systemd.automounts = [{
wantedBy = [ "multi-user.target" ];
automountConfig = {
TimeoutIdleSec = "5min";
};
where = "/mnt/nas/media";
}];
}