grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / misc / leaps.nix
blob10d332fb74ad69e12864a0210c7012a4c8040193
1 { config, pkgs, lib, ... }:
2 let
3   cfg = config.services.leaps;
4   stateDir = "/var/lib/leaps/";
5 in
7   options = {
8     services.leaps = {
9       enable = lib.mkEnableOption "leaps, a pair programming service";
10       port = lib.mkOption {
11         type = lib.types.port;
12         default = 8080;
13         description = "A port where leaps listens for incoming http requests";
14       };
15       address = lib.mkOption {
16         default = "";
17         type = lib.types.str;
18         example = "127.0.0.1";
19         description = "Hostname or IP-address to listen to. By default it will listen on all interfaces.";
20       };
21       path = lib.mkOption {
22         default = "/";
23         type = lib.types.path;
24         description = "Subdirectory used for reverse proxy setups";
25       };
26     };
27   };
29   config = lib.mkIf cfg.enable {
30     users = {
31       users.leaps = {
32         uid             = config.ids.uids.leaps;
33         description     = "Leaps server user";
34         group           = "leaps";
35         home            = stateDir;
36         createHome      = true;
37       };
39       groups.leaps = {
40         gid = config.ids.gids.leaps;
41       };
42     };
44     systemd.services.leaps = {
45       description   = "leaps service";
46       wantedBy      = [ "multi-user.target" ];
47       after         = [ "network.target" ];
49       serviceConfig = {
50         User = "leaps";
51         Group = "leaps";
52         Restart = "on-failure";
53         WorkingDirectory = stateDir;
54         PrivateTmp = true;
55         ExecStart = "${pkgs.leaps}/bin/leaps -path ${toString cfg.path} -address ${cfg.address}:${toString cfg.port}";
56       };
57     };
58   };