dregil: Set zsh as default shell
This commit is contained in:
parent
9333f62fcd
commit
a42932d6f0
2 changed files with 12 additions and 2 deletions
|
|
@ -104,6 +104,7 @@ in {
|
||||||
"wheel" # Enable ‘sudo’ for the user.
|
"wheel" # Enable ‘sudo’ for the user.
|
||||||
"input"
|
"input"
|
||||||
];
|
];
|
||||||
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
|
|
@ -132,6 +133,8 @@ in {
|
||||||
|
|
||||||
programs.steam = { enable = true; };
|
programs.steam = { enable = true; };
|
||||||
|
|
||||||
|
programs.zsh = { enable = true; };
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ in {
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
autorandr.enable = true;
|
# autorandr.enable = true;
|
||||||
|
|
||||||
browserpass = {
|
browserpass = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -62,6 +62,13 @@ in {
|
||||||
rofi.enable = true;
|
rofi.enable = true;
|
||||||
rofi.pass.enable = true;
|
rofi.pass.enable = true;
|
||||||
zathura.enable = true;
|
zathura.enable = true;
|
||||||
|
|
||||||
|
zsh = {
|
||||||
|
enable = true;
|
||||||
|
loginExtra = ''
|
||||||
|
export SSH_AUTH_SOCK="$(${pkgs.gnupg}/bin/gpgconf -L agent-ssh-socket)"
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.gpg-agent = {
|
services.gpg-agent = {
|
||||||
|
|
@ -70,7 +77,7 @@ in {
|
||||||
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
|
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.autorandr = { enable = true; };
|
# services.autorandr = { enable = true; };
|
||||||
|
|
||||||
xsession.enable = true;
|
xsession.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue