diff options
author | Alan Pearce | 2024-05-20 18:12:23 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-20 18:12:23 +0200 |
commit | d0c2de9e762fb476b5cb53bb5129bf8af8cb9b45 (patch) | |
tree | b33480bc71bf1417b252b63a5c7d62590da32110 /nix/modules/default.nix | |
parent | 60a15699657cef86d1a644c0d13b0d117a818633 (diff) | |
download | searchix-d0c2de9e762fb476b5cb53bb5129bf8af8cb9b45.tar.lz searchix-d0c2de9e762fb476b5cb53bb5129bf8af8cb9b45.tar.zst searchix-d0c2de9e762fb476b5cb53bb5129bf8af8cb9b45.zip |
build: store default configuration in repo and ensure freshness
Diffstat (limited to 'nix/modules/default.nix')
-rw-r--r-- | nix/modules/default.nix | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/nix/modules/default.nix b/nix/modules/default.nix index 7d06957..093840b 100644 --- a/nix/modules/default.nix +++ b/nix/modules/default.nix @@ -6,10 +6,13 @@ flake: }: let + inherit (builtins) fromTOML readFile; cfg = config.services.searchix; package = flake.packages.${pkgs.system}.default; + defaults = fromTOML (readFile ../../defaults.toml); + settingsFormat = pkgs.formats.toml { }; defaultServiceConfig = { @@ -120,6 +123,20 @@ in description = "Optionally enable sentry to track errors."; default = ""; }; + + contentSecurityPolicy = mkOption { + type = types.submodule { + freeformType = settingsFormat.type; + }; + description = "Control resources a browser should be allowed to load."; + default = defaults.Web.ContentSecurityPolicy; + }; + + headers = mkOption { + type = with types; attrsOf str; + description = "HTTP Headers to send with every request. Case-insensitive."; + default = defaults.Web.Headers; + }; }; }; }; @@ -140,7 +157,7 @@ in updateAt = mkOption { type = types.strMatching "[[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2}"; - default = "04:00:00"; + default = defaults.Importer.UpdateAt; example = "02:00:00"; description = "Time of day to fetch and import new options."; }; @@ -150,15 +167,9 @@ in attrsOf (submodule (import ./source-options.nix { inherit cfg settingsFormat; })); - default = { - nixos.enable = true; - nixpkgs.enable = true; - darwin.enable = false; - home-manager.enable = false; - }; + default = defaults.Importer.Sources; description = "Declarative specification of options sources for searchix."; }; - }; }; }; |