nixos/hosts/gunter/nfs.nix

26 lines
508 B
Nix
Raw Normal View History

2024-07-17 20:22:04 +00:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ nfs-utils ];
2024-03-05 14:42:52 +00:00
services.rpcbind.enable = true;
2024-07-17 20:22:04 +00:00
systemd.mounts = [
{
type = "nfs";
mountConfig = {
Options = "rw,soft,noatime";
};
what = "nas.home.2rjus.net:/mnt/hdd-pool/media";
where = "/mnt/nas/media";
}
];
2024-03-05 14:42:52 +00:00
2024-07-17 20:22:04 +00:00
systemd.automounts = [
{
wantedBy = [ "multi-user.target" ];
automountConfig = {
TimeoutIdleSec = "5min";
};
where = "/mnt/nas/media";
}
];
2024-03-05 14:42:52 +00:00
}