nixpkgs/nixos/modules/services/misc/leaps.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.6 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2016-11-06 09:33:21 +00:00
with lib;
let
cfg = config.services.leaps;
stateDir = "/var/lib/leaps/";
in
{
options = {
services.leaps = {
enable = mkEnableOption "leaps, a pair programming service";
2016-11-06 09:33:21 +00:00
port = mkOption {
2021-06-18 15:29:44 +00:00
type = types.port;
2016-11-06 09:33:21 +00:00
default = 8080;
description = "A port where leaps listens for incoming http requests";
2016-11-06 09:33:21 +00:00
};
address = mkOption {
default = "";
type = types.str;
example = "127.0.0.1";
description = "Hostname or IP-address to listen to. By default it will listen on all interfaces.";
2016-11-06 09:33:21 +00:00
};
path = mkOption {
default = "/";
type = types.path;
description = "Subdirectory used for reverse proxy setups";
2016-11-06 09:33:21 +00:00
};
};
};
config = mkIf cfg.enable {
users = {
users.leaps = {
uid = config.ids.uids.leaps;
description = "Leaps server user";
group = "leaps";
home = stateDir;
createHome = true;
};
groups.leaps = {
gid = config.ids.gids.leaps;
};
};
systemd.services.leaps = {
description = "leaps service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
User = "leaps";
Group = "leaps";
Restart = "on-failure";
WorkingDirectory = stateDir;
PrivateTmp = true;
ExecStart = "${pkgs.leaps}/bin/leaps -path ${toString cfg.path} -address ${cfg.address}:${toString cfg.port}";
2016-11-06 09:33:21 +00:00
};
};
};
}