this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More nix fixes and brew completions

+17 -10
+4 -1
.bashrc
··· 104 104 source $HOME/bin/git-prompt.sh 105 105 PS1=${DOCKER_NAME:+(${DOCKER_NAME})}'[\u@\h \W$(__git_ps1 " (%s)")]\$ ' 106 106 fi 107 - source "$HOME/.cargo/env" 107 + 108 + if test -f "$HOME/.cargo/env"; then 109 + source "$HOME/.cargo/env" 110 + fi
+1 -1
.bashrc.completions
··· 1 - if which brew &>/dev/null; then 1 + if which -a brew | grep -qv '\.local'; then 2 2 # homebrew bash-completion@2 3 3 if [ -r $(brew --prefix)/etc/profile.d/bash_completion.sh ]; then 4 4 source $(brew --prefix)/etc/profile.d/bash_completion.sh
+4
.config/fish/completions/brew.fish
··· 1 + if not command -sa brew | grep -v '\.local' 2 + return 3 + end 4 + 1 5 set -l vendor_completions (brew --prefix)/share/fish/vendor_completions.d/brew.fish 2 6 if test -f $vendor_completions 3 7 source $vendor_completions
+4 -6
.config/fish/conf.d/10-curl.fish
··· 1 1 # Use latest curl version from brew for updated SSL support 2 - if command -qs brew 3 - set -Ux fish_user_paths \ 4 - /usr/local/opt/curl/bin \ 5 - /opt/homebrew/opt/curl/bin \ 6 - $fish_user_paths 7 - end 2 + set -Ux fish_user_paths \ 3 + /usr/local/opt/curl/bin \ 4 + /opt/homebrew/opt/curl/bin \ 5 + $fish_user_paths
+2 -1
.config/fish/conf.d/51-envs.fish
··· 36 36 end 37 37 38 38 # NOTE: Modified to use glob instead of hardcoded version 39 - if command -qs brew 39 + # also checking for stuff besides custom .local/bin 40 + if command -sa brew | grep -qv '\.local' 40 41 set -gx PATH (brew --cellar)/pyenv-virtualenv/*/shims $PATH 41 42 end 42 43 set -gx PYENV_VIRTUALENV_INIT 1
+1
.config/home-manager/home.nix
··· 39 39 keepassxc 40 40 neovim 41 41 pinentry-curses 42 + ripgrep 42 43 shellcheck 43 44 thefuck 44 45 tree
+1 -1
.config/nixos/prismo/configuration.nix
··· 77 77 # Prevent lid sleep when plugged in 78 78 services.logind.lidSwitchExternalPower = "ignore"; 79 79 80 - # /* Uncomment these to enable graphical desktop 80 + /* Uncomment these to enable graphical desktop 81 81 services.xserver = { 82 82 # Enable the X11 windowing system. 83 83 enable = true;