Files
dotfiles/home/amneesh/pkgs.nix
Amneesh Singh 943956f119 home: amneesh: add wayvnc and more pkgs
Signed-off-by: Amneesh Singh <amneesh@ti.com>
2025-08-29 13:20:00 +05:30

28 lines
369 B
Nix

{
pkgs,
inputs,
...
}:
{
xdg.mime.enable = true;
programs = {
bash.enable = true;
};
home.packages = with pkgs; [
clang-tools
cmake
corkscrew
dtc
file
htop
llvmPackages.clang
(nattovim.override { nvimPackage = inputs.nvim-overlay.packages.${pkgs.system}.neovim; })
meson
ninja
thunderbird
wget
];
}