Set zsh as the shell and symlink zshrc

This commit is contained in:
Martin Larsson 2025-01-16 23:27:18 +00:00
parent d4e1e4b891
commit 8aecd29d58
2 changed files with 8 additions and 1 deletions

View file

@ -1,13 +1,17 @@
{ pkgs, ... }: {
home = {
stateVersion = "24.05";
programs = {
zsh = {
enable = true;
};
};
packages = with pkgs; [
neovim
fzf
bat
git
yazi
zsh
tmux
eza
curl
@ -17,5 +21,8 @@
jq
starship
];
file = {
".zshrc".source = zsh/.zshrc;
};
};
}