2023-10-04 09:23:48 +02:00
|
|
|
{ lib, ... }:
|
2023-05-12 03:22:09 +02:00
|
|
|
|
2023-10-04 09:23:48 +02:00
|
|
|
lib.extra.mkConfig {
|
2023-07-23 21:46:53 +02:00
|
|
|
enabledModules = [
|
2023-10-02 13:53:20 +02:00
|
|
|
# List of modules to enable
|
2023-10-01 22:55:05 +02:00
|
|
|
"dgn-web"
|
2023-07-23 21:46:53 +02:00
|
|
|
];
|
2023-05-12 03:22:09 +02:00
|
|
|
|
2023-07-23 21:46:53 +02:00
|
|
|
enabledServices = [
|
2023-10-02 13:53:20 +02:00
|
|
|
# List of services to enable
|
2023-10-27 14:16:48 +02:00
|
|
|
"castopod"
|
2024-01-23 01:06:10 +01:00
|
|
|
"crabfit"
|
2023-09-26 18:12:56 +02:00
|
|
|
"linkal"
|
2023-12-08 14:53:13 +01:00
|
|
|
"matterbridge"
|
2024-01-05 17:21:55 +01:00
|
|
|
"metis"
|
2023-10-22 20:51:18 +02:00
|
|
|
"ntfy-sh"
|
2023-12-18 23:16:07 +01:00
|
|
|
"redirections"
|
2024-01-05 17:21:40 +01:00
|
|
|
"static"
|
2023-10-07 15:48:53 +02:00
|
|
|
"wordpress"
|
2024-02-23 00:57:26 +01:00
|
|
|
"netbox"
|
2023-07-23 21:46:53 +02:00
|
|
|
];
|
2023-05-12 03:22:09 +02:00
|
|
|
|
2023-12-04 09:16:04 +01:00
|
|
|
extraConfig = {
|
|
|
|
services.netbird.enable = true;
|
|
|
|
};
|
|
|
|
|
2023-10-02 13:53:20 +02:00
|
|
|
root = ./.;
|
|
|
|
}
|