forked from DGNum/infrastructure
26 lines
411 B
Nix
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 = ./.;
|
|
}
|