diff options
| -rw-r--r-- | core/env.nix | 7 | ||||
| -rw-r--r-- | snowfall/modules/nixos/tools/bash/default.nix | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/core/env.nix b/core/env.nix deleted file mode 100644 index 5d8679e..0000000 --- a/core/env.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - environment = { - localBinInPath = true; - }; -} diff --git a/snowfall/modules/nixos/tools/bash/default.nix b/snowfall/modules/nixos/tools/bash/default.nix index d3ec4bc..7d5499c 100644 --- a/snowfall/modules/nixos/tools/bash/default.nix +++ b/snowfall/modules/nixos/tools/bash/default.nix @@ -8,6 +8,8 @@ in { }; config = mkIf cfg.enable { + environment.localBinInPath = true; + #TODO: add c="codium ." alias programs.bash = { shellAliases = { |