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

12 lines
243 B
Nix
Raw Normal View History

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