lab-infra/machines/dns01/_configuration.nix

19 lines
305 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"nsd"
];
extraConfig = {
# TODO: retrieve this address from meta/network.nix
deployment.targetHost = "45.13.104.26";
};
root = ./.;
}