about summary refs log tree commit diff
path: root/nixos/modules/services/development/lorri.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-04-14 15:18:56 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2023-04-14 15:19:34 +0200
commit1c5ca89f42e6cc17815f8e10585c8f862172158e (patch)
tree5b25d4d2ddc4aca270793d08f04359bd820d96c2 /nixos/modules/services/development/lorri.nix
parent18541010761f331499b20c9477326e51e486b050 (diff)
nixos/lorri: install direnv
direnv is required to allow files to be run by lorri, so it should be installed, too.
Diffstat (limited to 'nixos/modules/services/development/lorri.nix')
-rw-r--r--nixos/modules/services/development/lorri.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/development/lorri.nix b/nixos/modules/services/development/lorri.nix
index 8c64e3d9a5605..74f56f5890fce 100644
--- a/nixos/modules/services/development/lorri.nix
+++ b/nixos/modules/services/development/lorri.nix
@@ -50,6 +50,6 @@ in {
       };
     };
 
-    environment.systemPackages = [ cfg.package ];
+    environment.systemPackages = [ cfg.package pkgs.direnv ];
   };
 }