diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 13:10:08 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:50 -0700 |
| commit | 9fc3fa747782ae4d0d4875616a20f38580afb2a7 (patch) | |
| tree | 88c0e606a5b521fc6f7dcade5df7484857804088 | |
| parent | 1679fced2ecd5d2d2a78e5ccfe747273dbf3f5cb (diff) | |
migration: enable local bin in path
| -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 = { |