chore: update flake.lock

This commit is contained in:
matt1432 2023-12-06 01:55:59 -05:00
parent 117162cd5d
commit 11c2b185b6
2 changed files with 13 additions and 3 deletions

View file

@ -1,22 +1,32 @@
{pihole, ...}: { {pihole, ...}: {
imports = [pihole.nixosModules.default]; imports = [pihole.nixosModules.default];
#TODO: set the whole thing up
services.pihole = { services.pihole = {
enable = true; enable = true;
dnsPort = 5335; dnsPort = 5353;
webPort = 8080; webPort = 8080;
piholeConfig = { piholeConfig = {
ftl = { ftl = {
LOCAL_IPV4 = "127.0.0.1"; # Defaults
PRIVACYLEVEL = "0";
RATE_LIMIT = "1000/60";
}; };
interface = "tailscale0";
web = { web = {
theme = "default-darker";
virtualHost = "pi.hole"; virtualHost = "pi.hole";
password = "password"; password = "password";
}; };
# Handle it with unbound
dns.upstreamServers = [
"127.0.0.1#5335"
"127.0.0.1#5335"
];
}; };
}; };
} }

Binary file not shown.