fix: add /sbin and /usr/sbin to PATH (needed for pass/diskutil)
This commit is contained in:
parent
7b8682f3d9
commit
882010ce2e
1 changed files with 6 additions and 1 deletions
|
|
@ -44,6 +44,11 @@
|
|||
ll = "eza -l --icons --git";
|
||||
la = "eza -la --icons --git";
|
||||
ff = "fastfetch";
|
||||
|
||||
# pass sync (password store)
|
||||
pass-sync = "pass git push";
|
||||
pass-pull = "pass git pull";
|
||||
pass-status = "pass git status";
|
||||
};
|
||||
|
||||
# Environment setup (zshenv)
|
||||
|
|
@ -56,7 +61,7 @@
|
|||
# Init content - uses lib.mkBefore to run before home-manager generated code
|
||||
initContent = lib.mkMerge [
|
||||
(lib.mkBefore ''
|
||||
export PATH="/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:$HOME/.nix-profile/bin:/etc/profiles/per-user/michaotic/bin:$PATH"
|
||||
export PATH="/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/sbin:/usr/sbin:$HOME/.nix-profile/bin:/etc/profiles/per-user/michaotic/bin:$PATH"
|
||||
'')
|
||||
''
|
||||
# Show fastfetch on shell start
|
||||
|
|
|
|||
Loading…
Reference in a new issue