lab-infra/machines/labcore01/_configuration.nix
sinavir 3915b492c4
Some checks failed
Check meta / check_meta (push) Failing after 19s
lint / check (push) Successful in 31s
build configuration / build_krz01 (push) Successful in 1m24s
feat(labcore01): init
Lab's core infra vm, doing only dns64 for now.
2024-11-07 01:10:24 +01:00

16 lines
208 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"unbound"
];
extraConfig = { };
root = ./.;
}