about summary refs log tree commit diff
path: root/nixos/tests/adguardhome.nix
diff options
context:
space:
mode:
authorFlorian Engel <engelflorian@posteo.de>2023-09-09 08:19:22 +0200
committerFlorian Engel <engelflorian@posteo.de>2023-09-09 08:19:22 +0200
commit20acd199f4202da863f290b50345d30c85db913c (patch)
treebffdc89f7df68fcfbfdc01960f65a7ba52745072 /nixos/tests/adguardhome.nix
parent364ab12942df06290234d0335156e8281fae3c21 (diff)
nixos/adguardhome: Fix openFirewall
When not setting `settings` and setting `openFirewall = true`
evaluation would fail because it tries to access `settings.bind_port`
while `settings == null`
Diffstat (limited to 'nixos/tests/adguardhome.nix')
-rw-r--r--nixos/tests/adguardhome.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/tests/adguardhome.nix b/nixos/tests/adguardhome.nix
index 9f8ddc33f57e9..a6f790b83f5fc 100644
--- a/nixos/tests/adguardhome.nix
+++ b/nixos/tests/adguardhome.nix
@@ -7,7 +7,6 @@
     emptyConf = { lib, ... }: {
       services.adguardhome = {
         enable = true;
-        settings = {};
       };
     };