NixOS-Config/hosts/lacros/filesystems/default.nix

12 lines
241 B
Nix
Raw Normal View History

2024-12-10 17:54:39 -05:00
{ config, ... }:
{
fileSystems = {
# Network mounts
"/home/jimbo/JimboNFS" = {
device = "10.100.0.1:/export/JimboNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
};
}