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