infrastructure/machines/storage01/_configuration.nix
2023-12-15 20:12:30 +01:00

28 lines
407 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"atticd"
"forgejo"
"garage"
"gitea-actions-runner"
"netbird"
"peertube"
];
extraConfig = {
dgn-hardware.useZfs = true;
dgn-runners.enable = true;
services.netbird.enable = true;
};
root = ./.;
}