2023-11-05 17:56:55 +01:00
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
|
{
|
2023-11-05 22:10:05 +01:00
|
|
|
home.packages = (with pkgs; [
|
2023-12-14 14:59:57 +01:00
|
|
|
bitwise # cli tool for bit / hex manipulation
|
2023-12-13 22:22:10 +01:00
|
|
|
eza # ls replacement
|
|
|
|
|
entr # perform action when file change
|
2023-12-23 19:59:03 +01:00
|
|
|
file # Show file information
|
2023-12-13 22:22:10 +01:00
|
|
|
fzf # fuzzy finder
|
2024-01-19 21:40:15 +01:00
|
|
|
jdk17 # java
|
2023-11-06 17:54:06 +01:00
|
|
|
lazygit
|
2023-11-13 23:56:16 +01:00
|
|
|
libreoffice
|
2023-12-13 22:22:10 +01:00
|
|
|
nitch # systhem fetch util
|
2023-11-06 17:54:06 +01:00
|
|
|
nix-prefetch-github
|
2024-01-25 16:02:46 +01:00
|
|
|
pipx # Install Python applications in isolated environments
|
2023-12-13 22:22:10 +01:00
|
|
|
prismlauncher # minecraft launcher
|
|
|
|
|
ripgrep # grep replacement
|
2023-12-25 14:17:31 +01:00
|
|
|
soundwireserver # pass audio to android phone
|
2023-12-14 17:09:12 +01:00
|
|
|
todo # cli todo list
|
2023-12-15 21:50:05 +01:00
|
|
|
toipe # typing test in the terminal
|
2023-12-13 22:22:10 +01:00
|
|
|
cinnamon.nemo-with-extensions # file manager
|
|
|
|
|
yazi # terminal file manager
|
2023-11-13 22:37:57 +01:00
|
|
|
youtube-dl
|
2023-12-29 18:59:45 +01:00
|
|
|
gnome.zenity
|
2023-11-05 11:40:44 +01:00
|
|
|
|
2023-11-13 23:05:05 +01:00
|
|
|
# C / C++
|
2023-11-13 23:04:33 +01:00
|
|
|
gcc
|
2023-11-13 22:51:35 +01:00
|
|
|
gnumake
|
|
|
|
|
|
2024-03-15 18:16:48 +01:00
|
|
|
# Python
|
|
|
|
|
python3
|
|
|
|
|
|
2023-12-13 22:22:10 +01:00
|
|
|
bleachbit # cache cleaner
|
2024-01-14 18:05:58 +01:00
|
|
|
cmatrix
|
2023-12-13 22:22:10 +01:00
|
|
|
gparted # partition manager
|
2023-11-06 17:54:06 +01:00
|
|
|
ffmpeg
|
2023-12-13 22:22:10 +01:00
|
|
|
imv # image viewer
|
2023-11-06 17:54:06 +01:00
|
|
|
libnotify
|
2024-01-02 19:03:48 +01:00
|
|
|
man-pages # extra man pages
|
2023-12-13 22:22:10 +01:00
|
|
|
mpv # video player
|
2024-01-02 18:55:15 +01:00
|
|
|
ncdu # disk space
|
2023-11-06 17:54:06 +01:00
|
|
|
openssl
|
2023-12-13 22:22:10 +01:00
|
|
|
pamixer # pulseaudio command line mixer
|
|
|
|
|
pavucontrol # pulseaudio volume controle (GUI)
|
|
|
|
|
playerctl # controller for media players
|
|
|
|
|
qalculate-gtk # calculator
|
2023-11-06 17:54:06 +01:00
|
|
|
unzip
|
|
|
|
|
wget
|
|
|
|
|
xdg-utils
|
|
|
|
|
inputs.alejandra.defaultPackage.${system}
|
2023-11-06 17:55:50 +01:00
|
|
|
]);
|
2023-11-05 11:40:44 +01:00
|
|
|
}
|