infrastructure/machines/nixos/geo02/_configuration.nix
Tom Hubrecht ecbad0a638
chore: Abstract machines and modules
This adds subdirectories for the different types of systems, for the
modules and the machines
2024-12-08 13:39:10 +01:00

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 = ./.;
}