Some checks failed
Check meta / check_dns (push) Successful in 16s
Check meta / check_meta (push) Successful in 19s
Build all the nodes / netcore02 (push) Successful in 40s
Build all the nodes / ap01 (push) Successful in 45s
Build the shell / build-shell (push) Successful in 22s
Run pre-commit on all files / pre-commit (push) Successful in 22s
Build all the nodes / bridge01 (push) Successful in 3m15s
Build all the nodes / tower01 (push) Successful in 3m15s
Build all the nodes / build01 (push) Successful in 3m15s
Build all the nodes / hypervisor03 (push) Successful in 3m16s
Build all the nodes / hypervisor01 (push) Successful in 3m17s
Build all the nodes / vault01 (push) Successful in 3m15s
Build all the nodes / web03 (push) Successful in 2m35s
Build all the nodes / hypervisor02 (push) Successful in 3m17s
Build all the nodes / web01 (push) Successful in 3m1s
Build all the nodes / geo02 (push) Successful in 3m24s
Build all the nodes / geo01 (push) Successful in 4m5s
Build all the nodes / web02 (push) Successful in 3m45s
Build all the nodes / rescue01 (push) Successful in 4m9s
Build all the nodes / storage01 (push) Successful in 4m15s
Build all the nodes / compute01 (push) Failing after 19m53s
52 lines
905 B
Nix
52 lines
905 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
# List of modules to enable
|
|
enabledModules = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
"dgn-backups"
|
|
"dgn-chatops"
|
|
"dgn-web"
|
|
];
|
|
|
|
# List of services to enable
|
|
enabledServices = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
"arkheon"
|
|
"dgsi"
|
|
"ds-fr"
|
|
"extranix"
|
|
"grafana"
|
|
"hedgedoc"
|
|
"kanidm"
|
|
"librenms"
|
|
"mastodon"
|
|
"nextcloud"
|
|
"ollama-proxy"
|
|
"outline"
|
|
"plausible"
|
|
"postgresql"
|
|
"pretix"
|
|
"rstudio-server"
|
|
# "satosa"
|
|
"signal-irc-bridge"
|
|
"signald"
|
|
"stirling-pdf"
|
|
"takumi"
|
|
"telegraf"
|
|
"vaultwarden"
|
|
"zammad"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-hardware.useZfs = true;
|
|
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|