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

7 lines
No EOL
133 B
Nix

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