forked from DGNum/lab-infra
26 lines
348 B
Nix
26 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 = ./.;
|
||
|
}
|