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-config.nix
T
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"
];
};
}