diff --git a/dot_bash_profile b/dot_bash_profile index 796b05a..3f56aa0 100644 --- a/dot_bash_profile +++ b/dot_bash_profile @@ -1 +1 @@ -[[ -f ~/.bashrc ]] && . ~/.bashrc \ No newline at end of file +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/dot_bashrc b/dot_bashrc index 5e43ffc..11b0693 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -51,6 +51,10 @@ if hash xdg-open 2>/dev/null; then fi alias update="eget -D; . $HOME/.config/eget/post_install.sh" alias rc="source ~/.bashrc" +alias nix-shell-local="nix-user-chroot ~/.local/share/nix bash" +if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then + . ~/.nix-profile/etc/profile.d/nix.sh +fi if hash eza 2>/dev/null; then function ls { if [[ "$@" =~ "-a" || "$@" =~ "-A" || "$@" =~ "--all" || "$@" =~ "--almost-all" ]]; then diff --git a/dot_config/eget/eget.toml b/dot_config/eget/eget.toml index b451fd2..4a0fc11 100644 --- a/dot_config/eget/eget.toml +++ b/dot_config/eget/eget.toml @@ -102,3 +102,9 @@ ["kovidgoyal/kitty"] asset_filters = [ "^sig", "^kitten", "x86_64" ] +["nix-community/nix-user-chroot"] + asset_filters = [ "x86_64", "musl" ] + +["fish-shell/fish-shell"] + asset_filters = [ "x86_64", "static" ] + all = true \ No newline at end of file