mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-30 22:21:02 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
139 lines
3.4 KiB
Nix
139 lines
3.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.lorri;
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [
|
|
lib.maintainers.gerschtli
|
|
lib.maintainers.nyarly
|
|
];
|
|
|
|
options.services.lorri = {
|
|
enable = lib.mkEnableOption "lorri build daemon";
|
|
|
|
enableNotifications = lib.mkEnableOption "lorri build notifications";
|
|
|
|
package = lib.mkPackageOption pkgs "lorri" { };
|
|
|
|
nixPackage = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = pkgs.nix;
|
|
defaultText = lib.literalExpression "pkgs.nix";
|
|
example = lib.literalExpression "pkgs.nixVersions.unstable";
|
|
description = "Which nix package to use.";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.lorri" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
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";
|
|
ReadWritePaths = [
|
|
# /run/user/1000 for the socket
|
|
"%t"
|
|
# Needs to update own cache
|
|
"%C/lorri"
|
|
# Needs %C/nix/fetcher-cache-v1.sqlite
|
|
"%C/nix"
|
|
];
|
|
CacheDirectory = [ "lorri" ];
|
|
Restart = "on-failure";
|
|
Environment =
|
|
let
|
|
path =
|
|
with pkgs;
|
|
lib.makeSearchPath "bin" [
|
|
cfg.nixPackage
|
|
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" ];
|
|
};
|
|
};
|
|
|
|
services.lorri-notify = lib.mkIf cfg.enableNotifications {
|
|
Unit = {
|
|
Description = "lorri build notifications";
|
|
After = "lorri.service";
|
|
Requires = "lorri.service";
|
|
};
|
|
|
|
Service = {
|
|
ExecStart =
|
|
let
|
|
jqFile = ''
|
|
(
|
|
(.Started? | values | "Build starting in \(.nix_file)"),
|
|
(.Completed? | values | "Build complete in \(.nix_file)"),
|
|
(.Failure? | values | "Build failed in \(.nix_file)")
|
|
)
|
|
'';
|
|
|
|
notifyScript = pkgs.writeShellScript "lorri-notify" ''
|
|
lorri internal stream-events --kind live \
|
|
| jq --unbuffered '${jqFile}' \
|
|
| xargs -n 1 notify-send "Lorri Build"
|
|
'';
|
|
in
|
|
toString notifyScript;
|
|
Restart = "on-failure";
|
|
Environment =
|
|
let
|
|
path = lib.makeSearchPath "bin" (
|
|
with pkgs;
|
|
[
|
|
bash
|
|
jq
|
|
findutils
|
|
libnotify
|
|
cfg.package
|
|
]
|
|
);
|
|
in
|
|
"PATH=${path}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|