nix/nixos/hosts/nixos-rpi4-03/temp.nix
2023-10-07 22:18:18 +09:00

7 lines
No EOL
137 B
Nix

{pkgs, lib, config, ...}: {
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.nginx = {
enable = true;
};
}