infrastructure/machines/krz01/_configuration.nix

27 lines
410 B
Nix
Raw Normal View History

2024-10-08 12:18:26 +02:00
{ 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"
];
};
2024-10-08 12:51:57 +02:00
services.netbird.enable = true;
2024-10-08 12:18:26 +02:00
};
root = ./.;
}