f6253021d7
Some checks failed
build configuration / build_web02 (push) Successful in 1m15s
build configuration / build_vault01 (push) Successful in 1m22s
build configuration / build_compute01 (push) Successful in 1m24s
build configuration / build_storage01 (push) Successful in 1m37s
lint / check (push) Successful in 22s
build configuration / build_web01 (push) Successful in 2m9s
build configuration / build_geo01 (push) Successful in 1m5s
build configuration / build_rescue01 (push) Successful in 1m9s
build configuration / build_bridge01 (push) Successful in 1m2s
build configuration / build_geo02 (push) Successful in 1m5s
build configuration / push_to_cache_web02 (push) Failing after 2m57s
build configuration / push_to_cache_storage01 (push) Successful in 2m39s
build configuration / push_to_cache_geo01 (push) Successful in 2m36s
build configuration / push_to_cache_compute01 (push) Successful in 2m53s
build configuration / push_to_cache_rescue01 (push) Successful in 2m33s
build configuration / push_to_cache_web01 (push) Successful in 2m38s
build configuration / push_to_cache_geo02 (push) Successful in 1m6s
build configuration / push_to_cache_bridge01 (push) Successful in 1m16s
31 lines
456 B
Nix
31 lines
456 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-backups"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"atticd"
|
|
"tvix-cache"
|
|
"forgejo"
|
|
"forgejo-runners"
|
|
"garage"
|
|
"influxdb"
|
|
"netbird"
|
|
"peertube"
|
|
"prometheus"
|
|
"redirections"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-hardware.useZfs = true;
|
|
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|