{ config, lib, pkgs, ... }: { # mount network shares fileSystems."/mnt/nas/private" = { device = "dashboard.omv:/ShatteredMINT"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" ]; }; fileSystems."/mnt/nas/shared" = { device = "dashboard.omv:/default-nas"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" ]; }; }