nixos-config/hosts/intuos/filesystems/default.nix

8 lines
197 B
Nix

{ config, ... }:
{
fileSystems."/home/${config.sysusers.main}/Midas" = {
device = "11.0.0.1:/";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
}