# Packages for the default terminal experience
{
config,
pkgs,
...
}: {
config = {
programs = {
neovim = {
enable = true;
package = pkgs.neovim-unwrapped;
defaultEditor = true;
};
};
environment = {
systemPackages = with pkgs; [
btop
duf
eza
htop
kitty
neofetch
neovide
pfetch-rs
starship
wget
];
};
};
}
Größe: 459 Bytes