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>
20 lines
341 B
Nix
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 = ./.;
|
|
}
|