lab-infra/machines/dns01/_configuration.nix
Constantin Gierczak--Galle 3e39ba8862
All checks were successful
lint / check (push) Successful in 22s
fixup! fix(dns01): override deployment target to ipv4
2024-12-07 10:45:52 +01:00

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