16 lines
No EOL
305 B
Nix
16 lines
No EOL
305 B
Nix
{ username, pkgs, ... }:
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
theme = "nanotech";
|
|
};
|
|
initContent = ''
|
|
${pkgs.pfetch}/bin/pfetch
|
|
'';
|
|
sessionVariables = {
|
|
SSH_AUTH_SOCK = "/home/${username}/.bitwarden-ssh-agent.sock";
|
|
};
|
|
};
|
|
} |