nixos-config/nixos/programs/adguard.nix

8 lines
132 B
Nix
Raw Normal View History

2023-11-19 17:00:43 +05:00
{ config, ... }: {
services.adguardhome = {
enable = true;
mutableSettings = true;
settings.bind_port = 55010;
};
}