nix-config/hosts/rockhole64/adguard.nix

15 lines
164 B
Nix
Raw Normal View History

{
config,
pkgs,
inputs,
configLib,
lib,
...
}: {
2024-07-29 15:02:40 -05:00
services.adguardhome = {
enable = true;
mutableSettings = true;
allowDHCP = true;
};
}