set zsh shell to default

This commit is contained in:
xbazzi 2025-01-31 21:26:49 -07:00
parent a3a2abf944
commit 20623932bc
2 changed files with 15 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
nvf-stuff nvf-stuff
config-nixvim config-nixvim
result result
hardware-configuration.nix

View File

@ -62,6 +62,18 @@
dina-font dina-font
proggyfonts proggyfonts
]; ];
# Zsh enable for all users
programs.zsh = {
enable = true;
#promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
#initExtra = ''
# [[ ! -f ${./.p10k.zsh} ]] || source ${./.p10k.zsh}
# '';
};
# Zsh default for all users
users.defaultUserShell = pkgs.zsh;
# Enable sound with pipewire. # Enable sound with pipewire.
services.pulseaudio.enable = false; services.pulseaudio.enable = false;
@ -87,9 +99,8 @@
isNormalUser = true; isNormalUser = true;
description = "Xander Bazzi"; description = "Xander Bazzi";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ # packages = with pkgs; [
# thunderbird # ];
];
}; };
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are