infrastructure/machines/web01/_configuration.nix
2023-12-08 14:53:17 +01:00

25 lines
351 B
Nix

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