1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/modules/default.nix
Constantin Gierczak--Galle d3bfe16f7f feat(status01): init (#11)
Reviewed-on: DGNum/lab-infra#11
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2024-12-07 16:26:03 +01:00

17 lines
344 B
Nix

{ lib, sources, ... }:
{
imports =
(lib.extra.mkImports ./. [
"lab-acme"
"lab-network"
])
++ [ "${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;
}