Add modules/nix/mount-docker-databases.nix
Check NixOS configurations / eval-hosts (push) Failing after 6m43s
Check NixOS configurations / eval-hosts (push) Failing after 6m43s
This commit is contained in:
@@ -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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user