lab-infra/machines/homebox01/_configuration.nix

25 lines
315 B
Nix
Raw Normal View History

2024-12-05 10:57:36 +01:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"homebox"
"nginx"
];
2024-12-05 10:58:24 +01:00
extraConfig = {
2024-12-05 10:57:36 +01:00
networking = {
firewall.allowedTCPPorts = [
80
443
];
};
};
root = ./.;
}