3446218455
Note: not the actual initial commit. I swear I will stop repeatedly force pushing to this single commit eventually ok.
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
home.packages = (with pkgs; [
|
|
jaq
|
|
imagemagick
|
|
ffmpeg-full
|
|
python3
|
|
ruby
|
|
lazygit
|
|
playerctl
|
|
cantata
|
|
socat
|
|
sway
|
|
imv
|
|
swayimg
|
|
gimp
|
|
inkscape
|
|
nautilus
|
|
evince
|
|
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 = "9.0";
|
|
hash = "sha256-n8BSZNyBBUGrroLfdG5vdyTufRFbM6JyXQVzh0Pc6BI=";
|
|
};
|
|
});
|
|
})
|
|
ripdrag
|
|
(vesktop.override {withSystemVencord = false;})
|
|
aseprite
|
|
qbittorrent
|
|
nicotine-plus
|
|
r2modman
|
|
]) ++ (with inputs.nix-gaming.packages.${pkgs.system}; [
|
|
wine-ge
|
|
]) ++ (with inputs.lisp-scripts.packages.${pkgs.system}; [
|
|
sync-music
|
|
time-window
|
|
]);
|
|
}
|