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

12 lines
261 B
Nix
Raw Normal View History

2025-01-31 22:44:14 -05:00
{ config, ... }:
{
fileSystems = {
# Network mounts
"/home/${config.sysusers.main}/KittyNFS" = {
device = "10.100.0.1:/export/KittyNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}