2024-02-20 17:47:50 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
lib.extra.mkConfig {
|
|
|
|
enabledModules = [
|
|
|
|
# List of modules to enable
|
2024-02-21 17:18:14 +01:00
|
|
|
"dgn-backups"
|
2024-02-20 17:47:50 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
enabledServices = [
|
|
|
|
# List of services to enable
|
|
|
|
];
|
|
|
|
|
|
|
|
extraConfig = {
|
|
|
|
services.netbird.enable = true;
|
2024-02-20 21:25:04 +01:00
|
|
|
|
2024-02-21 17:16:49 +01:00
|
|
|
dgn-hardware = {
|
|
|
|
useZfs = true;
|
|
|
|
zfsPools = [ "work01" ];
|
|
|
|
};
|
2024-02-20 17:47:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
root = ./.;
|
|
|
|
}
|