forked from DGNum/infrastructure
23 lines
331 B
Nix
23 lines
331 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-backups"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
];
|
|
|
|
extraConfig = {
|
|
services.netbird.enable = true;
|
|
|
|
dgn-hardware = {
|
|
useZfs = true;
|
|
zfsPools = [ "work01" ];
|
|
};
|
|
};
|
|
|
|
root = ./.;
|
|
}
|