Tom Hubrecht
a818917d77
All checks were successful
Check meta / check_meta (pull_request) Successful in 21s
Check workflows / check_workflows (pull_request) Successful in 27s
Check meta / check_dns (pull_request) Successful in 29s
Build all the nodes / ap01 (pull_request) Successful in 1m6s
Build all the nodes / bridge01 (pull_request) Successful in 1m48s
Build all the nodes / geo01 (pull_request) Successful in 1m52s
Build all the nodes / geo02 (pull_request) Successful in 1m48s
Build all the nodes / compute01 (pull_request) Successful in 2m37s
Build all the nodes / rescue01 (pull_request) Successful in 1m59s
Build all the nodes / storage01 (pull_request) Successful in 2m5s
Build all the nodes / vault01 (pull_request) Successful in 1m48s
Run pre-commit on all files / pre-commit (pull_request) Successful in 34s
Build all the nodes / web03 (pull_request) Successful in 1m40s
Build all the nodes / web02 (pull_request) Successful in 1m54s
Build all the nodes / web01 (pull_request) Successful in 2m18s
Check meta / check_dns (push) Successful in 31s
Check meta / check_meta (push) Successful in 30s
Build all the nodes / ap01 (push) Successful in 1m16s
Build all the nodes / bridge01 (push) Successful in 2m3s
Build all the nodes / geo01 (push) Successful in 2m2s
Build all the nodes / geo02 (push) Successful in 1m59s
Build all the nodes / compute01 (push) Successful in 2m41s
Build all the nodes / rescue01 (push) Successful in 2m39s
Build all the nodes / storage01 (push) Successful in 2m11s
Run pre-commit on all files / pre-commit (push) Successful in 45s
Build all the nodes / vault01 (push) Successful in 2m2s
Build all the nodes / web02 (push) Successful in 1m44s
Build all the nodes / web01 (push) Successful in 2m26s
Build all the nodes / web03 (push) Successful in 1m50s
34 lines
550 B
Nix
34 lines
550 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-backups"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"tvix-cache"
|
|
"forgejo"
|
|
"forgejo-runners"
|
|
"garage"
|
|
"influxdb"
|
|
"netbird"
|
|
"peertube"
|
|
"prometheus"
|
|
"redirections"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-hardware.useZfs = true;
|
|
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|