mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
33 lines
395 B
Nix
33 lines
395 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
jq
|
|
tmux
|
|
htop
|
|
eza
|
|
file
|
|
fzf
|
|
lazygit
|
|
ripgrep
|
|
yt-dlp
|
|
neofetch
|
|
yarn
|
|
|
|
# C / C++
|
|
gcc
|
|
gnumake
|
|
|
|
# Python
|
|
python3
|
|
|
|
ffmpeg
|
|
killall
|
|
libnotify
|
|
man-pages # extra man pages
|
|
openssl
|
|
unzip
|
|
wget
|
|
xxd
|
|
inputs.alejandra.defaultPackage.${system}
|
|
];
|
|
}
|