12 lines
241 B
Nix
12 lines
241 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems = {
|
|
# Network mounts
|
|
"/home/jimbo/JimboNFS" = {
|
|
device = "10.100.0.1:/export/JimboNFS";
|
|
fsType = "nfs4";
|
|
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
|
};
|
|
};
|
|
}
|