ssh agent fix
This commit is contained in:
parent
36a51bf7bc
commit
9e1a3be912
|
@ -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";
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue