dregil: Set zsh as default shell

This commit is contained in:
Alexander Kobjolke 2023-09-03 22:44:05 +02:00
parent 9333f62fcd
commit a42932d6f0
2 changed files with 12 additions and 2 deletions

View file

@ -40,7 +40,7 @@ in {
programs = {
alacritty.enable = true;
autorandr.enable = true;
# autorandr.enable = true;
browserpass = {
enable = true;
@ -62,6 +62,13 @@ in {
rofi.enable = true;
rofi.pass.enable = true;
zathura.enable = true;
zsh = {
enable = true;
loginExtra = ''
export SSH_AUTH_SOCK="$(${pkgs.gnupg}/bin/gpgconf -L agent-ssh-socket)"
'';
};
};
services.gpg-agent = {
@ -70,7 +77,7 @@ in {
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
};
services.autorandr = { enable = true; };
# services.autorandr = { enable = true; };
xsession.enable = true;
}