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

41 lines
514 B
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-11-11 19:05:07 +01:00
discord
2023-11-06 17:54:06 +01:00
eza
fzf
lazygit
2023-11-13 23:56:16 +01:00
libreoffice
2023-11-06 17:54:06 +01:00
nix-prefetch-github
python39
ripgrep
rnix-lsp
rustup
2023-11-11 20:04:30 +01:00
spotify
2023-11-06 17:54:06 +01:00
xfce.thunar
2023-11-11 18:03:54 +01:00
yazi
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-11-06 17:54:06 +01:00
bleachbit
bore-cli
gparted
ffmpeg
imv
libnotify
mpv
openssl
pamixer
pavucontrol
playerctl
qalculate-gtk
unzip
wget
xdg-utils
inputs.alejandra.defaultPackage.${system}
2023-11-06 17:55:50 +01:00
]);
2023-11-05 11:40:44 +01:00
}