forked from DGNum/lab-infra
Also update dns01 config. This PR adds the configuration for a Mumble server @voice.lab.dgnum.eu Reviewed-on: DGNum/lab-infra#12 Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org> Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
25 lines
348 B
Nix
25 lines
348 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"murmur"
|
|
"nginx"
|
|
];
|
|
|
|
extraConfig = {
|
|
deployment.tags = [ "cst1" ];
|
|
networking = {
|
|
firewall.allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
};
|
|
};
|
|
|
|
root = ./.;
|
|
}
|