summary refs log tree commit diff
path: root/nixos/modules/services/development
diff options
context:
space:
mode:
authorEvan Stoll <evanjsx@gmail.com>2020-09-06 12:04:31 -0400
committerProfpatsch <mail@profpatsch.de>2020-09-07 15:46:15 +0200
commita31736120c5de6e632f5a0ba1ed34e53fc1c1b00 (patch)
tree2817253a654a1c496d54ade3df2b610e28c2c695 /nixos/modules/services/development
parent85afe9cbe9c8e2eb02ae8c5e0b31fb7d7a3614ff (diff)
downloadnixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar.gz
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar.bz2
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar.lz
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar.xz
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.tar.zst
nixpkgs-a31736120c5de6e632f5a0ba1ed34e53fc1c1b00.zip
nixos/lorri: add package option
Diffstat (limited to 'nixos/modules/services/development')
-rw-r--r--nixos/modules/services/development/lorri.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/nixos/modules/services/development/lorri.nix b/nixos/modules/services/development/lorri.nix
index c843aa56d13..fc576e4c18b 100644
--- a/nixos/modules/services/development/lorri.nix
+++ b/nixos/modules/services/development/lorri.nix
@@ -15,6 +15,15 @@ in {
           issued by the `lorri` command.
         '';
       };
+      package = lib.mkOption {
+        default = pkgs.lorri;
+        type = lib.types.package;
+        description = ''
+          The lorri package to use.
+        '';
+        defaultText = lib.literalExample "pkgs.lorri";
+        example = lib.literalExample "pkgs.lorri";
+      };
     };
   };
 
@@ -34,7 +43,7 @@ in {
       after = [ "lorri.socket" ];
       path = with pkgs; [ config.nix.package git gnutar gzip ];
       serviceConfig = {
-        ExecStart = "${pkgs.lorri}/bin/lorri daemon";
+        ExecStart = "${cfg.package}/bin/lorri daemon";
         PrivateTmp = true;
         ProtectSystem = "strict";
         ProtectHome = "read-only";
@@ -42,6 +51,6 @@ in {
       };
     };
 
-    environment.systemPackages = [ pkgs.lorri ];
+    environment.systemPackages = [ cfg.package ];
   };
 }