25 lines
315 B
Nix
25 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 = ./.;
|
||
|
}
|