summary refs log tree commit diff
path: root/nixos/modules/services/development
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-11-15 16:41:00 +0100
committerFlorian Klink <flokli@flokli.de>2019-11-15 16:59:24 +0100
commitfd7d88f6035bdec48d34beee1a46228eb4dda1b6 (patch)
tree5e9da6b91343e543e8991ff4fadfc2559426fc57 /nixos/modules/services/development
parent50d06185cafa6232dd3a317bbf87f2f7d1b2b453 (diff)
downloadnixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar.gz
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar.bz2
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar.lz
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar.xz
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.tar.zst
nixpkgs-fd7d88f6035bdec48d34beee1a46228eb4dda1b6.zip
nixos/lorri: add to environment.systemPackages
most likely, people enabling the lorri module also want to use it,
without explicitly having to add it to users.users.<username>.packages.

cc @curiousleo @Profpatsch
Diffstat (limited to 'nixos/modules/services/development')
-rw-r--r--nixos/modules/services/development/lorri.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/development/lorri.nix b/nixos/modules/services/development/lorri.nix
index 618785ee53c..68264ee869d 100644
--- a/nixos/modules/services/development/lorri.nix
+++ b/nixos/modules/services/development/lorri.nix
@@ -41,5 +41,7 @@ in {
         Restart = "on-failure";
       };
     };
+
+    environment.systemPackages = [ pkgs.lorri ];
   };
 }