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

16 lines
237 B
Nix

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