From ccd042b9695d0afbe62a5f9f8bd484b0eb2556d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 26 Jun 2024 22:48:10 +0200 Subject: [PATCH] nixos/hound: set reasonable default for dbpath --- nixos/modules/services/search/hound.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/search/hound.nix b/nixos/modules/services/search/hound.nix index 9715e478e53a..7aca1adc19b0 100644 --- a/nixos/modules/services/search/hound.nix +++ b/nixos/modules/services/search/hound.nix @@ -92,6 +92,10 @@ in { ''; }; + services.hound.settings = { + dbpath = "${config.services.hound.home}/data"; + }; + systemd.services.hound = { description = "Hound Code Search"; wantedBy = [ "multi-user.target" ];