1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/voice01/_configuration.nix

26 lines
348 B
Nix
Raw Normal View History

{ 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 = ./.;
}