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

11 lines
214 B
Nix
Raw Normal View History

2024-11-24 20:02:09 -05:00
{ ... }:
{
fileSystems = {
"/home/jimbo/JimboNFS" = {
device = "10.100.0.1:/export/JimboNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}