From bab16aba6cdf57d842898a8d04ec90e357f776c1 Mon Sep 17 00:00:00 2001 From: Alex Stan <90788596+Ultra980@users.noreply.github.com> Date: Sun, 7 May 2023 16:13:19 +0000 Subject: [PATCH] idk Signed-off-by: Alex S --- hosts/ultrapi/configuration.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/hosts/ultrapi/configuration.nix b/hosts/ultrapi/configuration.nix index c33b2b0..28eac24 100644 --- a/hosts/ultrapi/configuration.nix +++ b/hosts/ultrapi/configuration.nix @@ -42,9 +42,19 @@ vim helix docker + git ]; - services.openssh.enable = true; + services = { + openssh.enable = true; + adguardhome = { + enable = true; + settings = { + bind_host = "192.168.1.221"; + bootstrap_dns = "8.8.8.8, 8.8.4.4"; + }; + }; + }; users = { mutableUsers = false; @@ -88,6 +98,6 @@ }; system = { - stateVersion = 23.05; # Do NOT change. + stateVersion = "23.05"; # Do NOT change. }; }