Files
nixos/modules/nix/mount-docker-volumes.nix
T
git ae4c3dba24
Check NixOS configurations / eval-hosts (push) Successful in 39m58s
updated config for new ZFS/NFS shares
2026-07-01 16:59:55 +10:00

16 lines
239 B
Nix

{ config, lib, pkgs, ... }:
{
fileSystems."/zfs-volumes" = {
device = "server:/tank/docker/volumes";
fsType = "nfs";
options = [
"nfsvers=4.2"
"_netdev"
"x-systemd.automount"
"noatime"
];
};
}