Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

REMOVE: ssh-agent stuff from fish init

+7 -9
+3 -8
fish/config.fish
··· 26 26 alias r "cd ~/repos" 27 27 end 28 28 29 - # PATH stuff 29 + # We start the ssh-agent in noah-home.nix, so we'll add the socket to the environment 30 + set -Ux SSH_AUTH_SOCK /var/run/user/(id -u)/ssh-agent 30 31 31 - # Run ssh-agent 32 - if test -z "(pgrep ssh-agent)" 33 - eval (ssh-agent -c) > /dev/null # no output 34 - set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 35 - set -Ux SSH_AGENT_PID $SSH_AGENT_PID 36 - set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 37 - end 32 + # PATH stuff 38 33 39 34 if type -q "direnv" 40 35 direnv hook fish | source
+4 -1
scripts/nr
··· 3 3 flag e + 4 4 flag x + 5 5 6 - exec nix run 'nixpkgs#'^$* 6 + pkg=$1 7 + shift 8 + 9 + exec nix run 'nixpkgs#'^$pkg -- $*