mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
Merge pull request #1880 from VTimofeenko/nix-flake-extraConfig
nix: add extraConfig option
This commit is contained in:
commit
cc665e4aaa
@ -58,6 +58,16 @@ in
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
inherit full-text-search;
|
inherit full-text-search;
|
||||||
|
extraConfig = {
|
||||||
|
files = {
|
||||||
|
default-store = "database";
|
||||||
|
stores = {
|
||||||
|
minio = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
|
@ -3,10 +3,12 @@ overlay: { config, lib, pkgs, ... }:
|
|||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.services.docspell-joex;
|
cfg = config.services.docspell-joex;
|
||||||
|
# Extract the config without the extraConfig attribute. It will be merged later
|
||||||
|
declared_config = attrsets.filterAttrs (n: v: n != "extraConfig") cfg;
|
||||||
user = if cfg.runAs == null then "docspell" else cfg.runAs;
|
user = if cfg.runAs == null then "docspell" else cfg.runAs;
|
||||||
configFile = pkgs.writeText "docspell-joex.conf" ''
|
configFile = pkgs.writeText "docspell-joex.conf" ''
|
||||||
{"docspell": { "joex":
|
{"docspell": { "joex":
|
||||||
${builtins.toJSON cfg}
|
${builtins.toJSON (lib.recursiveUpdate declared_config cfg.extraConfig)}
|
||||||
}}
|
}}
|
||||||
'';
|
'';
|
||||||
defaults = {
|
defaults = {
|
||||||
@ -1670,6 +1672,23 @@ in
|
|||||||
default = defaults.addons;
|
default = defaults.addons;
|
||||||
description = "Addon executor config";
|
description = "Addon executor config";
|
||||||
};
|
};
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.attrs;
|
||||||
|
description = "Extra configuration for docspell server. Overwrites values in case of a conflict.";
|
||||||
|
default = { };
|
||||||
|
example = ''
|
||||||
|
{
|
||||||
|
files = {
|
||||||
|
default-store = "minio";
|
||||||
|
stores = {
|
||||||
|
minio = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,10 +3,12 @@ overlay: { config, lib, pkgs, ... }:
|
|||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.services.docspell-restserver;
|
cfg = config.services.docspell-restserver;
|
||||||
|
# Extract the config without the extraConfig attribute. It will be merged later
|
||||||
|
declared_config = attrsets.filterAttrs (n: v: n != "extraConfig") cfg;
|
||||||
user = if cfg.runAs == null then "docspell" else cfg.runAs;
|
user = if cfg.runAs == null then "docspell" else cfg.runAs;
|
||||||
configFile = pkgs.writeText "docspell-server.conf" ''
|
configFile = pkgs.writeText "docspell-server.conf" ''
|
||||||
{"docspell": {"server":
|
{"docspell": {"server":
|
||||||
${builtins.toJSON cfg}
|
${builtins.toJSON (lib.recursiveUpdate declared_config cfg.extraConfig)}
|
||||||
}}
|
}}
|
||||||
'';
|
'';
|
||||||
defaults = {
|
defaults = {
|
||||||
@ -839,6 +841,23 @@ in
|
|||||||
default = defaults.backend;
|
default = defaults.backend;
|
||||||
description = "Configuration for the backend";
|
description = "Configuration for the backend";
|
||||||
};
|
};
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.attrs;
|
||||||
|
description = "Extra configuration for docspell server. Overwrites values in case of a conflict.";
|
||||||
|
default = { };
|
||||||
|
example = ''
|
||||||
|
{
|
||||||
|
files = {
|
||||||
|
default-store = "minio";
|
||||||
|
stores = {
|
||||||
|
minio = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user