{ config, lib, pkgs, vars, ... }: { fileSystems = { "/mnt/docker/config" = { device = "${vars.nfsServerHost}:${vars.storageRoot}/docker/config"; fsType = "nfs"; options = [ "nfsvers=4.2" "_netdev" "x-systemd.automount" "noatime" ]; }; "/mnt/docker/databases" = { device = "${vars.nfsServerHost}:${vars.storageRoot}/docker/databases"; fsType = "nfs"; options = [ "nfsvers=4.2" "_netdev" "x-systemd.automount" "noatime" ]; }; "/mnt/docker/volumes" = { device = "${vars.nfsServerHost}:${vars.storageRoot}/docker/volumes"; fsType = "nfs"; options = [ "nfsvers=4.2" "_netdev" "x-systemd.automount" "noatime" ]; }; "/mnt/nextcloud-data" = { device = "${vars.nfsServerHost}:${vars.storageRoot}/docker/nextcloud-data"; fsType = "nfs"; options = [ "nfsvers=4.2" "_netdev" "x-systemd.automount" "noatime" ]; }; "/mnt/raspi-backup" = { device = "${vars.nfsServerHost}:${vars.storageRoot}/raspi/volumes"; fsType = "nfs"; options = [ "nfsvers=4.2" "_netdev" "x-systemd.automount" "noatime" ]; }; }; }