From 11413f94b2d5eb97756edcec6c7a7b4f9a46ae73 Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Tue, 12 May 2020 19:20:29 +0200 Subject: [PATCH] Adds lorri service. --- modules/module-list.nix | 1 + modules/services/lorri.nix | 59 ++++++++++++++++++++++++++++++++++++++ release.nix | 1 + tests/services-lorri.nix | 18 ++++++++++++ 4 files changed, 79 insertions(+) create mode 100644 modules/services/lorri.nix create mode 100644 tests/services-lorri.nix diff --git a/modules/module-list.nix b/modules/module-list.nix index 52b987d6..6375ea38 100644 --- a/modules/module-list.nix +++ b/modules/module-list.nix @@ -43,6 +43,7 @@ ./services/emacs.nix ./services/khd ./services/kwm + ./services/lorri.nix ./services/mail/offlineimap.nix ./services/mopidy.nix ./services/nix-daemon.nix diff --git a/modules/services/lorri.nix b/modules/services/lorri.nix new file mode 100644 index 00000000..142f5748 --- /dev/null +++ b/modules/services/lorri.nix @@ -0,0 +1,59 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.lorri; +in +{ + options = { + services.lorri.enable = mkOption { + type = types.bool; + default = false; + description = "Whether to enable the lorri service."; + }; + + services.lorri.package = mkOption { + type = types.path; + default = pkgs.lorri; + defaultText = "pkgs.lorri"; + description = "This option specifies the lorri package to use."; + }; + + services.lorri.logFile = mkOption { + type = types.nullOr types.path; + default = "/var/tmp/lorri.log"; + example = "/var/tmp/lorri.log"; + description = '' + The logfile to use for the lorri service. Alternatively + sudo launchctl debug system/org.nixos.lorri --stderr + can be used to stream the logs to a shell after restarting the service with + sudo launchctl kickstart -k system/org.nixos.lorri. + ''; + }; + + services.lorri.tempDir = mkOption { + type = types.nullOr types.path; + default = null; + description = "The TMPDIR to use for lorri."; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ cfg.package ]; + launchd.user.agents.lorri = { + serviceConfig = { + KeepAlive = true; + ProcessType = "Background"; + LowPriorityIO = false; + StandardOutPath = cfg.logFile; + StandardErrorPath = cfg.logFile; + EnvironmentVariables = mkMerge [ + config.nix.envVars + { TMPDIR = mkIf (cfg.tempDir != null) cfg.tempDir; } + ]; + }; + command = "${cfg.package}/bin/lorri daemon"; + }; + }; +} \ No newline at end of file diff --git a/release.nix b/release.nix index 77eff196..750510dc 100644 --- a/release.nix +++ b/release.nix @@ -113,6 +113,7 @@ let tests.services-activate-system = makeTest ./tests/services-activate-system.nix; tests.services-activate-system-changed-label-prefix = makeTest ./tests/services-activate-system-changed-label-prefix.nix; tests.services-buildkite-agent = makeTest ./tests/services-buildkite-agent.nix; + tests.services-lorri = makeTest ./tests/services-lorri.nix; tests.services-nix-daemon = makeTest ./tests/services-nix-daemon.nix; tests.sockets-nix-daemon = makeTest ./tests/sockets-nix-daemon.nix; tests.services-dnsmasq = makeTest ./tests/services-dnsmasq.nix; diff --git a/tests/services-lorri.nix b/tests/services-lorri.nix new file mode 100644 index 00000000..e70eef5d --- /dev/null +++ b/tests/services-lorri.nix @@ -0,0 +1,18 @@ +{ config, pkgs, ... }: + +let + nix = pkgs.runCommand "nix-0.0.0" { version = "1.11.6"; } "mkdir -p $out"; + plistPath = "${config.out}/user/Library/LaunchAgents/org.nixos.lorri.plist"; +in +{ + services.lorri.enable = true; + nix.package = nix; + + test = '' + echo checking lorri service in /Library/LaunchAgents >&2 + cat ${plistPath} + grep -o "KeepAlive" ${plistPath} + grep -o "org.nixos.lorri" ${plistPath} + grep -o "exec ${pkgs.lorri}/bin/lorri daemon" ${plistPath} + ''; +}