nixos-config/hosts/pear/filesystems/default.nix

9 lines
211 B
Nix
Raw Normal View History

2025-03-08 05:36:01 -05:00
{ config, ... }:
{
fileSystems."/home/${config.sysusers.main}/KittyNFS" = {
device = "10.100.0.1:/storage";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
}