2024-01-10 15:00:18 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
lib.extra.mkConfig {
|
|
|
|
enabledModules = [
|
|
|
|
# List of modules to enable
|
|
|
|
];
|
|
|
|
|
|
|
|
enabledServices = [
|
|
|
|
# List of services to enable
|
2024-04-08 22:20:53 +02:00
|
|
|
"k-radius"
|
2024-03-27 10:26:31 +01:00
|
|
|
"networking"
|
2024-04-19 21:10:14 +02:00
|
|
|
"ups"
|
2024-08-28 19:01:27 +02:00
|
|
|
"ulogd"
|
2024-01-10 15:00:18 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
extraConfig = {
|
|
|
|
services.netbird.enable = true;
|
2024-09-01 15:40:59 +02:00
|
|
|
services.nginx.enable = true;
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
2024-01-10 15:00:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
root = ./.;
|
|
|
|
}
|