16 lines
237 B
Nix
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"
|
|
];
|
|
};
|
|
}
|