Better org

This commit is contained in:
2026-01-22 14:30:48 -07:00
parent cf40ef6794
commit b44db14a17
4 changed files with 58 additions and 18 deletions

View File

@@ -5,4 +5,18 @@
BROWSER = "librewolf";
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
};
programs.bash = {
enable = true;
initExtra = ''
export SSH_AUTH_SOCK="${config.home.homeDirectory}/.bitwarden-ssh-agent.sock"
'';
};
programs.zsh = {
enable = true;
initContent = ''
export SSH_AUTH_SOCK="${config.home.homeDirectory}/.bitwarden-ssh-agent.sock"
'';
};
}