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

33 lines
424 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-06 17:54:06 +01:00
eza
fzf
lazygit
nix-prefetch-github
python39
ripgrep
rnix-lsp
rustup
xfce.thunar
2023-11-11 18:03:54 +01:00
yazi
2023-11-05 11:40:44 +01:00
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
}