38 lines
584 B
Nix
38 lines
584 B
Nix
|
{ pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = (with pkgs; [
|
||
|
jaq
|
||
|
imagemagick
|
||
|
ffmpeg-full
|
||
|
python3
|
||
|
ruby
|
||
|
lazygit
|
||
|
playerctl
|
||
|
cantata
|
||
|
socat
|
||
|
sway
|
||
|
imv
|
||
|
gimp
|
||
|
inkscape
|
||
|
xfce.thunar
|
||
|
yt-dlp
|
||
|
libqalculate
|
||
|
qalculate-gtk
|
||
|
libreoffice
|
||
|
(hunspellWithDicts [ hunspellDicts.en-us ])
|
||
|
zoom-us
|
||
|
slack
|
||
|
remmina
|
||
|
winetricks
|
||
|
ripdrag
|
||
|
(vesktop.override {withSystemVencord = false;})
|
||
|
aseprite
|
||
|
qbittorrent
|
||
|
nicotine-plus
|
||
|
r2modman
|
||
|
]) ++ (with inputs.nix-gaming.packages.${pkgs.system}; [
|
||
|
wine-ge
|
||
|
]);
|
||
|
}
|