nixos-config/modules/home/package/default.nix

46 lines
1.6 KiB
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ inputs, pkgs, ... }:
{
2023-11-05 22:10:05 +01:00
home.packages = (with pkgs; [
2023-12-22 22:46:54 +01:00
aichat # Chat with gpt-3.5/chatgpt in terminal.
2023-12-14 14:59:57 +01:00
bitwise # cli tool for bit / hex manipulation
2023-12-14 17:17:45 +01:00
# discord
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
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
2023-12-13 22:22:10 +01:00
prismlauncher # minecraft launcher
ripgrep # grep replacement
2023-11-06 17:54:06 +01:00
rnix-lsp
2023-11-11 20:04:30 +01:00
spotify
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-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
2023-12-13 22:22:10 +01:00
bleachbit # cache cleaner
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
2023-12-13 22:22:10 +01:00
mpv # video player
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
}