1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00
home-manager/modules/services/hound.nix

82 lines
2.0 KiB
Nix
Raw Normal View History

2019-08-02 10:45:28 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.hound;
jsonFormat = pkgs.formats.json { };
configFile = jsonFormat.generate "hound-config.json" {
2020-02-02 00:39:17 +01:00
max-concurrent-indexers = cfg.maxConcurrentIndexers;
dbpath = cfg.databasePath;
repos = cfg.repositories;
health-check-url = "/healthz";
};
2019-08-02 10:45:28 +02:00
2020-02-02 00:39:17 +01:00
houndOptions = [ "--addr ${cfg.listenAddress}" "--conf ${configFile}" ];
2019-08-02 10:45:28 +02:00
2020-02-02 00:39:17 +01:00
in {
2019-08-02 10:45:28 +02:00
meta.maintainers = [ maintainers.adisbladis ];
options.services.hound = {
enable = mkEnableOption "hound";
maxConcurrentIndexers = mkOption {
type = types.ints.positive;
default = 2;
description = "Limit the amount of concurrent indexers.";
};
databasePath = mkOption {
type = types.path;
default = "${config.xdg.dataHome}/hound";
2020-02-02 00:39:17 +01:00
defaultText = "$XDG_DATA_HOME/hound";
2019-08-02 10:45:28 +02:00
description = "The Hound database path.";
};
listenAddress = mkOption {
type = types.str;
default = "localhost:6080";
description = "Listen address of the Hound daemon.";
};
repositories = mkOption {
type = types.attrsOf jsonFormat.type;
2020-02-02 00:39:17 +01:00
default = { };
example = literalExpression ''
2019-08-02 10:45:28 +02:00
{
SomeGitRepo = {
url = "https://www.github.com/YourOrganization/RepoOne.git";
ms-between-poll = 10000;
exclude-dot-files = true;
};
}
'';
description = "The repository configuration.";
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.hound" pkgs
lib.platforms.linux)
];
2019-08-02 10:45:28 +02:00
home.packages = [ pkgs.hound ];
systemd.user.services.hound = {
2020-02-02 00:39:17 +01:00
Unit = { Description = "Hound source code search engine"; };
2019-08-02 10:45:28 +02:00
2020-02-02 00:39:17 +01:00
Install = { WantedBy = [ "default.target" ]; };
2019-08-02 10:45:28 +02:00
Service = {
Environment = "PATH=${makeBinPath [ pkgs.mercurial pkgs.git ]}";
2020-02-02 00:39:17 +01:00
ExecStart =
"${pkgs.hound}/bin/houndd ${concatStringsSep " " houndOptions}";
2019-08-02 10:45:28 +02:00
};
};
};
}