Constantin Gierczak--Galle
1f82719dcb
Reviewed-on: #8 Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org> Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
24 lines
315 B
Nix
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 = ./.;
|
|
}
|