lab-infra/machines/router02/_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

18 lines
243 B
Nix

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