lab-infra/machines/status01/_configuration.nix
Constantin Gierczak--Galle 1467819be2
Some checks failed
lint / check (push) Successful in 24s
build configuration / build_krz01 (push) Failing after 1m30s
feat: add deployment tag 'cst1'
2024-12-09 10:31:35 +01:00

25 lines
353 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"nginx"
"uptime-kuma"
];
extraConfig = {
deployment.tags = [ "cst1" ];
networking = {
firewall.allowedTCPPorts = [
80
443
];
};
};
root = ./.;
}