8 lines
197 B
Nix
8 lines
197 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems."/home/${config.sysusers.main}/Midas" = {
|
|
device = "10.2.0.1:/";
|
|
fsType = "nfs4";
|
|
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
|
};
|
|
}
|