Files
nixos/modules/nix/mount-docker-volumes.nix
T
beatzaplenty b3c3760c3e
Check NixOS configurations / eval-hosts (push) Successful in 38m28s
Update modules/nix/mount-docker-volumes.nix
2026-07-01 08:46:38 +00:00

16 lines
246 B
Nix

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