Files
nixos/modules/nix/mount-docker-config.nix
T
beatzaplenty b9ff8002bd
Check NixOS configurations / eval-hosts (push) Successful in 36m26s
Update modules/nix/mount-docker-config.nix
updated mount path
2026-07-01 08:46:12 +00:00

16 lines
244 B
Nix

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