lab-infra/machines/homebox01/_configuration.nix
Constantin Gierczak--Galle 8445a860c1
Some checks failed
lint / check (push) Successful in 22s
lint / check (pull_request) Successful in 24s
Check meta / check_meta (pull_request) Failing after 27s
build configuration / build_krz01 (pull_request) Failing after 1m30s
fix: fmt
2024-12-05 10:58:24 +01:00

24 lines
315 B
Nix

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