infrastructure/machines/storage01/_configuration.nix

27 lines
375 B
Nix
Raw Normal View History

{ lib, ... }:
2023-07-18 17:00:31 +02:00
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"atticd"
"forgejo"
2023-09-11 11:17:52 +02:00
"garage"
"gitea-actions-runner"
"netbird"
"peertube"
];
extraConfig = {
dgn-hardware.useZfs = true;
2023-12-04 09:16:04 +01:00
services.netbird.enable = true;
};
root = ./.;
}