Add modules/nix/mount-docker-databases.nix
Check NixOS configurations / eval-hosts (push) Failing after 6m43s

This commit is contained in:
2026-07-01 10:28:34 +00:00
parent 0edb1a431e
commit 895c9d7003
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
fileSystems."/mnt/docker-databases" = {
device = "server:/tank/docker/databases";
fsType = "nfs";
options = [
"nfsvers=4.2"
"_netdev"
"x-systemd.automount"
"noatime"
];
};
}