nixpkgs/nixos/modules/services/development/lorri.nix

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

55 lines
1.4 KiB
Nix
Raw Normal View History

2019-11-08 17:18:03 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.services.lorri;
socketPath = "lorri/daemon.socket";
in {
options = {
services.lorri = {
enable = lib.mkOption {
default = false;
type = lib.types.bool;
description = lib.mdDoc ''
Enables the daemon for `lorri`, a nix-shell replacement for project
development. The socket-activated daemon starts on the first request
issued by the `lorri` command.
'';
};
2020-09-06 16:04:31 +00:00
package = lib.mkOption {
default = pkgs.lorri;
type = lib.types.package;
description = lib.mdDoc ''
The lorri package to use.
'';
defaultText = lib.literalExpression "pkgs.lorri";
2020-09-06 16:04:31 +00:00
};
2019-11-08 17:18:03 +00:00
};
};
config = lib.mkIf cfg.enable {
systemd.user.sockets.lorri = {
description = "Socket for Lorri Daemon";
wantedBy = [ "sockets.target" ];
socketConfig = {
ListenStream = "%t/${socketPath}";
RuntimeDirectory = "lorri";
};
};
systemd.user.services.lorri = {
description = "Lorri Daemon";
requires = [ "lorri.socket" ];
after = [ "lorri.socket" ];
path = with pkgs; [ config.nix.package git gnutar gzip ];
2019-11-08 17:18:03 +00:00
serviceConfig = {
2020-09-06 16:04:31 +00:00
ExecStart = "${cfg.package}/bin/lorri daemon";
2019-11-08 17:18:03 +00:00
PrivateTmp = true;
ProtectSystem = "full";
2019-11-08 17:18:03 +00:00
Restart = "on-failure";
};
};
environment.systemPackages = [ cfg.package pkgs.direnv ];
2019-11-08 17:18:03 +00:00
};
}