forked from DGNum/infrastructure
22 lines
296 B
Nix
22 lines
296 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-dns"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"ds-fr"
|
|
"kanidm"
|
|
"mastodon"
|
|
"nextcloud"
|
|
"outline"
|
|
"satosa"
|
|
"zammad"
|
|
];
|
|
|
|
root = ./.;
|
|
}
|