1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/status01/_configuration.nix
Constantin Gierczak--Galle d3bfe16f7f feat(status01): init (#11)
Reviewed-on: DGNum/lab-infra#11
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2024-12-07 16:26:03 +01:00

24 lines
319 B
Nix

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