about summary refs log tree commit diff stats
path: root/pkgs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-14 15:55:01 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-14 15:55:01 +0200
commit9a630b738669698f7f87dd0970b857addde1298c (patch)
treec0a5d8d9cccf7ed6fb0526b7dba371f7abb7c95b /pkgs
parentpkgs/fupdate-flake: Keep it's path (diff)
downloadnixos-config-9a630b738669698f7f87dd0970b857addde1298c.zip
pkgs/{lm,ll}: Don't leak bash options in shell context
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/ll/ll/package.nix2
-rw-r--r--pkgs/by-name/lm/lm/package.nix1
2 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/by-name/ll/ll/package.nix b/pkgs/by-name/ll/ll/package.nix
index 1516c51c..caca5b4e 100644
--- a/pkgs/by-name/ll/ll/package.nix
+++ b/pkgs/by-name/ll/ll/package.nix
@@ -3,5 +3,7 @@ writeShellApplication {
   name = "ll";
   text = builtins.readFile ./ll.sh;
 
+  # This is sourced in the shell
   inheritPath = true;
+  bashOptions = [];
 }
diff --git a/pkgs/by-name/lm/lm/package.nix b/pkgs/by-name/lm/lm/package.nix
index e3ebe962..a80c473e 100644
--- a/pkgs/by-name/lm/lm/package.nix
+++ b/pkgs/by-name/lm/lm/package.nix
@@ -5,4 +5,5 @@ writeShellApplication {
 
   # This is sourced in the shell
   inheritPath = true;
+  bashOptions = [];
 }