.dotfiles/nix/home.nix

28 lines
484 B
Nix

{ pkgs, ... }: {
programs = {
zsh = {
enable = true;
};
};
home = {
stateVersion = "24.05";
packages = with pkgs; [
neovim
fzf
bat
git
yazi
tmux
eza
curl
wget
ripgrep
fd
jq
starship
];
file = {
".zshrc".source = ../zsh/.zshrc;
};
};
}