about summary refs log tree commit diff
path: root/configs/.profile
AgeCommit message (Collapse)AuthorFilesLines
2020-06-16 Don't start ssh-agent in .profileWilliam Carroll1-6/+0
Problem: My SSH is behaving strangely. Reason: I'm not sure. What I do know, however, is that Google handles SSH differently. So I think that's enough for me to know I should keep my hands off and not wrestle with it.
2020-03-13 Restore ssh-agent initialize in ~/.profileWilliam Carroll1-0/+6
For two days I tried using gpg-agent to emulate ssh-agent, but it did not work the same way as ssh-agent. For example, gcert stopped working. Also, when I tried adding keys to ~/.gnupg/sshcontrol using `ssh-add ~/.ssh/id_rsa`, the command failed. While the concept of reusing gpg-agent for ssh-agent appeals to me... - Fewer agent processes - pinentry support ...in practice, it fell short of my expectations. Some or all of this may be because I tried running this on a gLinux machine.
2020-03-10 Remove dockerd startup from .profileWilliam Carroll1-3/+0
1. I haven't used docker in awhile. 2. If I need to restore the docker daemon, I will reach for a home-manager solution.
2020-03-10 Remove PATH additions from .profileWilliam Carroll1-11/+0
I'd like to remove this and prefer using Nix-based solutions for PATH maintenance.
2020-03-10 Remove RUST_SRC_PATH from .profileWilliam Carroll1-3/+0
I'm not doing enough Rust development to justify supporting this. I'm also in the midst of a cleaning frenzy, so it's possible that this is just collateral damage. I don't think it is because I can always use lorri to set this value when I'm writing Rust (hopefully the second 1/2 of this year).
2020-03-10 Manage session variables with home-managerWilliam Carroll1-7/+0
If you haven't noticed, home-manager is managing increasingly more of my configuration. - Migrate session variables to home.nix - Drop support for unused session variables like TERMINAL, VISUAL
2020-03-10 Remove ssh-agent code from .profileWilliam Carroll1-3/+0
TIL: gpg-agent sets the SSH_AUTH_SOCK and other values. Since I already use home-manager to start gpg-agent and SSH has been functioning without issues, I'm removing the obsolete ssh-agent code.
2020-03-07 Temporarily disable docker and rust from .profileWilliam Carroll1-2/+2
Attempting to debug nginx.
2020-03-06 Splice configs/shared directoryWilliam Carroll1-0/+49
- Move all children from configs/shared into configs. - Delete "shared" directory.