infrastructure/machines/web01/_configuration.nix
2023-12-11 15:54:00 +01:00

26 lines
364 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"castopod"
"eleves"
"metis"
"linkal"
"matterbridge"
"ntfy-sh"
"plausible"
"wordpress"
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}