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