14 lines
312 B
Nix
14 lines
312 B
Nix
{ lib, sources, ... }:
|
|
{
|
|
imports = (lib.extra.mkImports ./. [ "lab-acme" ]) ++ [
|
|
"${sources."microvm.nix"}/nixos-modules/host"
|
|
];
|
|
|
|
dgn-notify.enable = false;
|
|
|
|
dgn-records.enable = false;
|
|
|
|
# TODO think about how to use netbox with lab
|
|
dgn-netbox-agent.enable = false;
|
|
dgn-acme.enable = false;
|
|
}
|