lab-infra/machines/labcore01/_configuration.nix
sinavir 930c1bd90a
All checks were successful
lint / check (push) Successful in 24s
build configuration / build_krz01 (push) Successful in 2m6s
feat(sni-proxy): init
2024-12-22 02:49:09 +01:00

17 lines
220 B
Nix

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