9 lines
248 B
Nix
9 lines
248 B
Nix
|
# Configuration that will be added to the nixinatee node. Nixinate will deploy
|
||
|
# the combination of nixinateBase.nix + nixinateAdditional.nix
|
||
|
{
|
||
|
config = {
|
||
|
services.nginx.enable = true;
|
||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||
|
};
|
||
|
}
|