Set zsh as the shell and symlink zshrc
This commit is contained in:
parent
d4e1e4b891
commit
8aecd29d58
2 changed files with 8 additions and 1 deletions
|
|
@ -1,13 +1,17 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "24.05";
|
stateVersion = "24.05";
|
||||||
|
programs = {
|
||||||
|
zsh = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
neovim
|
neovim
|
||||||
fzf
|
fzf
|
||||||
bat
|
bat
|
||||||
git
|
git
|
||||||
yazi
|
yazi
|
||||||
zsh
|
|
||||||
tmux
|
tmux
|
||||||
eza
|
eza
|
||||||
curl
|
curl
|
||||||
|
|
@ -17,5 +21,8 @@
|
||||||
jq
|
jq
|
||||||
starship
|
starship
|
||||||
];
|
];
|
||||||
|
file = {
|
||||||
|
".zshrc".source = zsh/.zshrc;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue