infrastructure/machines/storage01/_configuration.nix

32 lines
456 B
Nix
Raw Normal View History

{ lib, ... }:
2023-07-18 17:00:31 +02:00
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
2024-02-21 17:18:14 +01:00
"dgn-backups"
"dgn-web"
];
enabledServices = [
# List of services to enable
"atticd"
2024-07-23 20:47:25 +02:00
"tvix-cache"
"forgejo"
"forgejo-runners"
2023-09-11 11:17:52 +02:00
"garage"
"influxdb"
"netbird"
"peertube"
"prometheus"
2024-09-18 14:21:13 +02:00
"redirections"
];
extraConfig = {
dgn-hardware.useZfs = true;
2023-12-04 09:16:04 +01:00
services.netbird.enable = true;
};
root = ./.;
}