Tom Hubrecht
6bdbccf9b2
Some checks failed
build configuration / build_storage01 (push) Successful in 47s
build configuration / build_compute01 (push) Successful in 1m11s
build configuration / build_vault01 (push) Successful in 42s
build configuration / build_web02 (push) Successful in 41s
build configuration / build_web01 (push) Has been cancelled
31 lines
444 B
Nix
31 lines
444 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-fail2ban"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"castopod"
|
|
"crabfit"
|
|
"eleves"
|
|
"linkal"
|
|
"matterbridge"
|
|
"metis"
|
|
"ntfy-sh"
|
|
"plausible"
|
|
"redirections"
|
|
"static"
|
|
"wordpress"
|
|
"dolibarr"
|
|
];
|
|
|
|
extraConfig = {
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|