lab-infra/modules/default.nix
sinavir 3509683340
Some checks failed
Check meta / check_meta (push) Failing after 18s
lint / check (push) Successful in 23s
build configuration / build_krz01 (push) Successful in 2m56s
feat(modules): Disable modules with secrets
2024-10-18 12:16:16 +02:00

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;
}