7 lines
134 B
Nix
7 lines
134 B
Nix
|
{pkgs, lib, config, ...}: {
|
||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||
|
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|