❄️ Dotfiles for our NixOS system configuration.

chore(services:adguardhome): use host and port properties

Chloe 901b4d87 a5060100

Changed files
+3 -2
services
adguardhome
+3 -2
services/adguardhome/default.nix
···
{
services.adguardhome = {
enable = true;
+
host = "0.0.0.0";
+
port = 80;
settings = {
-
bind_port = 80;
-
bind_host = "0.0.0.0";
dns = {
port = 53;
port_tls = 853;
port_https = 443;
port_quic = 784;
};
+
web_port = 3000;
};
};