Files
nixconf/nfs-mount.nix
T
2025-07-22 10:58:27 +02:00

23 lines
517 B
Nix

{ config, pkgs, ... }: {
# Add ZFS and NFS support to the initramfs so it can be mounted at boot.
boot.supportedFilesystems = [ "nfs" ];
systemd.mounts = [{
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "${config.vars.nfs_server}:${config.vars.nfs_volume}";
where = config.vars.nfs_mount;
}];
systemd.automounts = [{
wantedBy = [ "multi-user.target" ];
automountConfig = {
TimeoutIdleSec = "600";
};
where = config.vars.nfs_mount;
}];
}