nixos-config/hosts/pear/filesystems/default.nix
2025-03-14 15:21:37 -04:00

8 lines
208 B
Nix

{ config, ... }:
{
fileSystems."/home/${config.sysusers.main}/Midas" = {
device = "10.100.0.1:/storage";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
}