a194da9662
All checks were successful
Check meta / check_meta (push) Successful in 20s
Check meta / check_dns (push) Successful in 19s
build configuration / build_storage01 (push) Successful in 1m12s
build configuration / build_vault01 (push) Successful in 1m15s
build configuration / build_compute01 (push) Successful in 1m19s
build configuration / build_web02 (push) Successful in 1m5s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m37s
build configuration / build_geo01 (push) Successful in 1m5s
build configuration / build_bridge01 (push) Successful in 1m3s
build configuration / build_rescue01 (push) Successful in 1m12s
build configuration / build_geo02 (push) Successful in 1m11s
build configuration / push_to_cache_storage01 (push) Successful in 1m20s
build configuration / push_to_cache_vault01 (push) Successful in 1m26s
build configuration / push_to_cache_geo01 (push) Successful in 1m18s
build configuration / push_to_cache_web02 (push) Successful in 1m23s
build configuration / push_to_cache_compute01 (push) Successful in 1m46s
build configuration / push_to_cache_bridge01 (push) Successful in 1m12s
build configuration / push_to_cache_web01 (push) Successful in 1m59s
build configuration / push_to_cache_rescue01 (push) Successful in 1m17s
build configuration / push_to_cache_geo02 (push) Successful in 1m9s
26 lines
410 B
Nix
26 lines
410 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
];
|
|
|
|
enabledServices = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
# "proxmox"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-hardware = {
|
|
useZfs = true;
|
|
zfsPools = [
|
|
"dpool"
|
|
"ppool0"
|
|
];
|
|
};
|
|
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|