mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
a0d9a58616
It should be a list to allow inclusions of additional variables.
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.lorri;
|
|
|
|
in {
|
|
meta.maintainers = [ maintainers.gerschtli ];
|
|
|
|
options.services.lorri = {
|
|
enable = mkEnableOption "lorri build daemon";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.lorri;
|
|
defaultText = literalExample "pkgs.lorri";
|
|
description = "Which lorri package to install.";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
systemd.user = {
|
|
services.lorri = {
|
|
Unit = {
|
|
Description = "lorri build daemon";
|
|
Requires = "lorri.socket";
|
|
After = "lorri.socket";
|
|
RefuseManualStart = true;
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${cfg.package}/bin/lorri daemon";
|
|
PrivateTmp = true;
|
|
ProtectSystem = "strict";
|
|
ProtectHome = "read-only";
|
|
Restart = "on-failure";
|
|
Environment = let
|
|
path = with pkgs;
|
|
makeSearchPath "bin" [ nix gitMinimal gnutar gzip ];
|
|
in [ "PATH=${path}" ];
|
|
};
|
|
};
|
|
|
|
sockets.lorri = {
|
|
Unit = { Description = "Socket for lorri build daemon"; };
|
|
|
|
Socket = {
|
|
ListenStream = "%t/lorri/daemon.socket";
|
|
RuntimeDirectory = "lorri";
|
|
};
|
|
|
|
Install = { WantedBy = [ "sockets.target" ]; };
|
|
};
|
|
};
|
|
};
|
|
}
|