lab-infra/machines/dns01/_configuration.nix
Constantin Gierczak--Galle 6d09d3a0b3
Some checks failed
Check meta / check_meta (push) Failing after 14s
lint / check (push) Successful in 17s
build configuration / build_krz01 (push) Failing after 15s
feat(voice01): init (#12)
Also update dns01 config.

This PR adds the configuration for a Mumble server @voice.lab.dgnum.eu

Reviewed-on: #12
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2025-01-13 12:34:03 +01:00

20 lines
341 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";
deployment.tags = [ "cst1" ];
};
root = ./.;
}