infrastructure/machines/web01/_configuration.nix

29 lines
394 B
Nix
Raw Normal View History

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