chore: update flake.lock
This commit is contained in:
parent
117162cd5d
commit
11c2b185b6
2 changed files with 13 additions and 3 deletions
|
@ -1,22 +1,32 @@
|
|||
{pihole, ...}: {
|
||||
imports = [pihole.nixosModules.default];
|
||||
|
||||
#TODO: set the whole thing up
|
||||
services.pihole = {
|
||||
enable = true;
|
||||
|
||||
dnsPort = 5335;
|
||||
dnsPort = 5353;
|
||||
webPort = 8080;
|
||||
|
||||
piholeConfig = {
|
||||
ftl = {
|
||||
LOCAL_IPV4 = "127.0.0.1";
|
||||
# Defaults
|
||||
PRIVACYLEVEL = "0";
|
||||
RATE_LIMIT = "1000/60";
|
||||
};
|
||||
|
||||
interface = "tailscale0";
|
||||
|
||||
web = {
|
||||
theme = "default-darker";
|
||||
virtualHost = "pi.hole";
|
||||
password = "password";
|
||||
};
|
||||
|
||||
# Handle it with unbound
|
||||
dns.upstreamServers = [
|
||||
"127.0.0.1#5335"
|
||||
"127.0.0.1#5335"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
Loading…
Reference in a new issue