Fix whoogle options not being strings
This commit is contained in:
parent
ed3e05dc96
commit
2237322c33
|
@ -15,10 +15,10 @@ in
|
|||
virtualisation.oci-containers.whoogle-search = {
|
||||
image = "benbusby/whoogle-search";
|
||||
autoStart = true;
|
||||
ports = "${port}:5000"; # server:docker
|
||||
ports = "${toString port}:5000"; # server:docker
|
||||
environment = {
|
||||
WHOOGLE_UPDATE_CHECK = 0;
|
||||
WHOOGLE_CONFIG_DISABLE = 0;
|
||||
WHOOGLE_UPDATE_CHECK = "0";
|
||||
WHOOGLE_CONFIG_DISABLE = "0";
|
||||
WHOOGLE_CONFIG_BLOCK = lib.concatStringsSep websiteBlocklist;
|
||||
WHOOGLE_CONFIG_THEME = "system";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue