Add adguard

This commit is contained in:
Ivan R. 2023-11-19 17:00:43 +05:00
parent 4412ffaa47
commit d3b021c682
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C
3 changed files with 11 additions and 0 deletions

View file

@ -26,6 +26,7 @@
./programs/comfycamp.nix
./programs/phoenix.nix
./programs/deluge.nix
./programs/adguard.nix
];
# Enable flakes

View file

@ -11,6 +11,7 @@
enable = true;
allowedTCPPorts = [
22 # SSH
53 # adguard
80 # nginx
443 # nginx
25 # smtp inbound
@ -19,8 +20,10 @@
143 # imap
993 # imap
6881 # torrents
55010 # adguard
];
allowedUDPPorts = [
53 # adguard
1900 # jellyfin
7359 # jellyfin
6881 # torrents

View file

@ -0,0 +1,7 @@
{ config, ... }: {
services.adguardhome = {
enable = true;
mutableSettings = true;
settings.bind_port = 55010;
};
}