about summary refs log tree commit diff stats
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/modules/default.nix6
-rw-r--r--nix/package.nix4
2 files changed, 9 insertions, 1 deletions
diff --git a/nix/modules/default.nix b/nix/modules/default.nix
index b3a0211..fdd2977 100644
--- a/nix/modules/default.nix
+++ b/nix/modules/default.nix
@@ -130,6 +130,12 @@ in
                   default = "";
                 };
 
+                logRequests = mkOption {
+                  type = types.bool;
+                  description = "Whether to log HTTP requests";
+                  default = false;
+                };
+
                 contentSecurityPolicy = mkOption {
                   type = types.submodule {
                     freeformType = settingsFormat.type;
diff --git a/nix/package.nix b/nix/package.nix
index fb985a4..1e9584f 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -13,7 +13,7 @@
 , css
 }:
 let
-  version = "0.1.14";
+  version = "0.1.20";
 in
 buildGoApplication {
   pname = "searchix";
@@ -48,4 +48,6 @@ buildGoApplication {
   ];
 
   modules = ../gomod2nix.toml;
+
+  doCheck = false;
 }