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

@ -3,6 +3,7 @@
config,
lib,
pkgs,
inputs,
...
}:
with lib; let
@ -15,6 +16,7 @@ in {
config = mkIf cfg.enable {
aa.apps.bat.enable = true;
environment.systemPackages = with pkgs; [
inputs.agenix.packages.x86_64-linux.default
alejandra
curl
deploy-rs
@ -28,6 +30,9 @@ in {
ripgrep
usbutils
wget
lsof
bind # for dig
tcpdump
];
};
}