ssh agent fix

This commit is contained in:
janis 2025-09-03 04:31:55 +02:00
parent 36a51bf7bc
commit 9e1a3be912
Signed by: janis
SSH key fingerprint: SHA256:bB1qbbqmDXZNT0KKD5c2Dfjg53JGhj7B3CFcLIzSqq8
3 changed files with 5 additions and 0 deletions

View file

@ -63,6 +63,7 @@ in {
shell.enableZshIntegration = true; shell.enableZshIntegration = true;
sessionVariables = { sessionVariables = {
SSH_AUTH_SOCK = "/run/user/1000/ssh-agent";
EDITOR = "nvim"; EDITOR = "nvim";
VISUAL = "nvim"; VISUAL = "nvim";
GTK_THEME = "Breeze-Dark"; GTK_THEME = "Breeze-Dark";

View file

@ -14,6 +14,7 @@ in {
enchant2 # spell checking enchant2 # spell checking
enchant2.dev # for building jinx enchant2.dev # for building jinx
pkg-config pkg-config
git
ripgrep # for Emacs' ripgrep integration ripgrep # for Emacs' ripgrep integration
libvterm-neovim # vterm support for Emacs libvterm-neovim # vterm support for Emacs
nodejs_24 nodejs_24

View file

@ -17,6 +17,9 @@ in {
programs.zsh.enable = true; programs.zsh.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
programs.ssh = {
startAgent = true;
};
services = { services = {
udisks2.enable = true; udisks2.enable = true;