dotfiles/hosts/h001/autofs.nix
RingOfStorms (Joshua Bell) 76758fb24a use new NAS for media storage
2025-12-30 10:33:06 -06:00

18 lines
317 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.nfs-utils
];
services.autofs = {
enable = true;
autoMaster =
let
conf = pkgs.writeText "nfs" ''
h002 -fstype=nfs4,rw,nofail,nfsvers=4 10.12.14.183:/
'';
in
''
/nfs file:${conf}
'';
};
}