infrastructure/machines/geo01/_configuration.nix

23 lines
313 B
Nix
Raw Normal View History

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