Added adguardhome service

This commit is contained in:
Alejandro Angulo 2023-07-09 08:24:54 -07:00
parent 52138eecee
commit af82d2ea59
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
10 changed files with 186 additions and 21 deletions

View file

@ -51,7 +51,7 @@
hostName = "gospel";
useDHCP = false;
defaultGateway = "192.168.113.1";
nameservers = ["1.1.1.1"];
nameservers = ["192.168.113.13"];
interfaces.eno1.ipv4.addresses = [
{
address = "192.168.113.69"; # nice

View file

@ -9,10 +9,17 @@
];
aa = {
nix.enable = true;
nix.enable = true;
nix.useSelfhostedCache = true;
services.tailscale = {
enable = true;
configureClientRouting = true;
configureServerRouting = true;
};
services.openssh.enable = true;
services.adguardhome.enable = true;
system.zfs.enable = true;
system.monitoring.enable = true;
@ -33,6 +40,19 @@
execWheelOnly = true;
};
networking = {
hostName = "node";
useDHCP = false;
defaultGateway = "192.168.113.1";
nameservers = ["127.0.0.1" "1.1.1.1"];
interfaces.enp7s0.ipv4.addresses = [
{
address = "192.168.113.13";
prefixLength = 24;
}
];
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [