2024-12-07 16:26:03 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
lib.extra.mkConfig {
|
|
|
|
enabledModules = [
|
|
|
|
# List of modules to enable
|
|
|
|
];
|
|
|
|
|
|
|
|
enabledServices = [
|
|
|
|
# List of services to enable
|
|
|
|
"nginx"
|
|
|
|
"uptime-kuma"
|
|
|
|
];
|
|
|
|
|
|
|
|
extraConfig = {
|
2024-12-09 10:31:35 +01:00
|
|
|
deployment.tags = [ "cst1" ];
|
2024-12-07 16:26:03 +01:00
|
|
|
networking = {
|
|
|
|
firewall.allowedTCPPorts = [
|
|
|
|
80
|
|
|
|
443
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
root = ./.;
|
|
|
|
}
|