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