Make adguardhome settings immutable
This commit is contained in:
parent
c50ef8c1e9
commit
9dcceed7c0
|
@ -1,11 +1,14 @@
|
|||
{ ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ../traefik/adguardhome.nix ];
|
||||
services.adguardhome = {
|
||||
enable = true;
|
||||
mutableSettings = true;
|
||||
settings.bind_port = 3001;
|
||||
mutableSettings = false;
|
||||
settings = {
|
||||
bind_port = 3001;
|
||||
# schema_version = 14;
|
||||
};
|
||||
openFirewall = true;
|
||||
};
|
||||
networking.firewall = {
|
||||
|
|
Loading…
Reference in a new issue