37 lines
470 B
Nix
Executable file
37 lines
470 B
Nix
Executable file
{ inputs, pkgs, ... }:
|
|
{
|
|
home.packages = (with pkgs; [
|
|
aseprite
|
|
bat
|
|
btop
|
|
discord
|
|
eza
|
|
fzf
|
|
lazygit
|
|
nix-prefetch-github
|
|
python39
|
|
ripgrep
|
|
rnix-lsp
|
|
rustup
|
|
# vscode
|
|
xfce.thunar
|
|
|
|
bleachbit
|
|
bore-cli
|
|
gparted
|
|
ffmpeg
|
|
imv
|
|
libnotify
|
|
mpv
|
|
openssl
|
|
pamixer
|
|
pavucontrol
|
|
playerctl
|
|
qalculate-gtk
|
|
unzip
|
|
wget
|
|
xdg-utils
|
|
inputs.alejandra.defaultPackage.${system}
|
|
]);
|
|
}
|