infrastructure/machines/krz01/_configuration.nix
2024-10-08 12:35:59 +02:00

26 lines
411 B
Nix

{ 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"
];
};
#services.netbird.enable = true;
};
root = ./.;
}