Files
nixos-haus/modules/common/utils.nix
2025-09-28 16:32:08 +03:00

29 lines
350 B
Nix

{
config,
pkgs,
...
}: {
programs.neovim = {defaultEditor = true;};
environment.systemPackages = with pkgs; [
vimPlugins.LazyVim
pciutils
btop
nload
htop
nethogs
uutils-coreutils-noprefix
neovim
git
curl
bat
eza
dua
ripgrep
dig
fd
proxychains-ng
unzip
wget
];
}