forked from DGNum/infrastructure
23 lines
370 B
Nix
23 lines
370 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"k-radius"
|
|
"networking"
|
|
"ups"
|
|
"ulogd"
|
|
];
|
|
|
|
extraConfig = {
|
|
services.netbird.enable = true;
|
|
services.nginx.enable = true;
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
};
|
|
|
|
root = ./.;
|
|
}
|