Files
2026-07-18 16:17:19 -06:00

19 lines
229 B
Nix

{ config, pkgs, ... }:
{
imports = [
./pi-hole.nix
];
networking = {
networkmanager.enable = true;
firewall = {
enable = true;
allowedTCPPorts = [];
allowedUDPPorts = [];
};
};
}