This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/modules/nix/mount-docker-volumes.nix
T

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"
];
};
}