52 lines
1 KiB
Nix
52 lines
1 KiB
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
|
||
|
(prismlauncher.override {
|
||
|
prismlauncher-unwrapped = prismlauncher-unwrapped.overrideAttrs (prev: {
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Diegiwg";
|
||
|
repo = "PrismLauncher-Cracked";
|
||
|
rev = "v8.4.1";
|
||
|
hash = "sha256-ffx3MgvKj9VsRIK9DT5Cxr+3WSrvMglzLE+kFU/cni4=";
|
||
|
};
|
||
|
buildInputs = prev.buildInputs ++ [
|
||
|
kdePackages.qtnetworkauth
|
||
|
];
|
||
|
});
|
||
|
})
|
||
|
ripdrag
|
||
|
(vesktop.override {withSystemVencord = false;})
|
||
|
aseprite
|
||
|
qbittorrent
|
||
|
nicotine-plus
|
||
|
r2modman
|
||
|
jetbrains.clion
|
||
|
]) ++ (with inputs.nix-gaming.packages.${pkgs.system}; [
|
||
|
wine-ge
|
||
|
]);
|
||
|
}
|