diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-14 15:55:01 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-14 15:55:01 +0200 |
commit | 9a630b738669698f7f87dd0970b857addde1298c (patch) | |
tree | c0a5d8d9cccf7ed6fb0526b7dba371f7abb7c95b /pkgs | |
parent | pkgs/fupdate-flake: Keep it's path (diff) | |
download | nixos-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.nix | 2 | ||||
-rw-r--r-- | pkgs/by-name/lm/lm/package.nix | 1 |
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 = []; } |