NixOS-Config/hosts/jupiter/filesystems/default.nix
2024-11-24 09:55:02 -05:00

12 lines
227 B
Nix

{ ... }:
{
fileSystems = {
# Remote
"/home/jimbo/JimboNFS" = {
device = "10.100.0.1:/export/JimboNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}