Update main branch #1

Merged
jakalx merged 120 commits from develop into main 2024-02-05 21:51:32 +01:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit a42932d6f0 - Show all commits

View file

@ -104,6 +104,7 @@ in {
"wheel" # Enable sudo for the user.
"input"
];
shell = pkgs.zsh;
};
# List packages installed in system profile. To search, run:
@ -132,6 +133,8 @@ in {
programs.steam = { enable = true; };
programs.zsh = { enable = true; };
# List services that you want to enable:
# Enable the OpenSSH daemon.

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;
}