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-09-25 00:40:47 +02:00
|
|
|
"metis"
|
2023-09-26 18:12:56 +02:00
|
|
|
"linkal"
|
2023-07-23 21:46:53 +02:00
|
|
|
"plausible"
|
2023-10-07 15:48:53 +02:00
|
|
|
"wordpress"
|
2023-07-23 21:46:53 +02:00
|
|
|
];
|
2023-05-12 03:22:09 +02:00
|
|
|
|
2023-10-02 13:53:20 +02:00
|
|
|
root = ./.;
|
|
|
|
}
|