nixos-configs/configurations/cluster/modules/nfs-client/default.nix
matt1432 8326399b80
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: move machine specific modules inside subdirs
2025-01-17 14:46:47 -05:00

32 lines
659 B
Nix

{pkgs, ...}: {
# NFS client setup
services.rpcbind.enable = true;
boot.supportedFilesystems = ["nfs"];
environment.systemPackages = builtins.attrValues {
inherit (pkgs) nfs-utils;
};
systemd.mounts = let
host = "10.0.0.249";
in [
{
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "${host}:/caddy";
where = "/var/lib/caddy";
requiredBy = ["caddy.service"];
}
{
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "${host}:/headscale";
where = "/var/lib/headscale";
requiredBy = ["headscale.service"];
}
];
}