33 lines
546 B
Nix
33 lines
546 B
Nix
|
|
{ config, enableGUI, pkgs, ... }: {
|
||
|
|
home.packages = with pkgs; [
|
||
|
|
ffmpeg
|
||
|
|
gnupg
|
||
|
|
neofetch
|
||
|
|
nodejs-16_x
|
||
|
|
pamixer
|
||
|
|
rnix-lsp
|
||
|
|
transcrypt
|
||
|
|
unrar
|
||
|
|
wine-osu
|
||
|
|
(winetricks.override { wine = wine-osu; })
|
||
|
|
youtube-dl
|
||
|
|
|
||
|
|
nodePackages_latest.pnpm
|
||
|
|
] ++ lib.optionals enableGUI [
|
||
|
|
brave
|
||
|
|
discord-canary
|
||
|
|
element-desktop
|
||
|
|
feh
|
||
|
|
gnome.file-roller
|
||
|
|
gimp
|
||
|
|
kotatogram-desktop
|
||
|
|
lxappearance
|
||
|
|
maim
|
||
|
|
pavucontrol
|
||
|
|
tor-browser-bundle-bin
|
||
|
|
transmission-remote-gtk
|
||
|
|
xclip
|
||
|
|
xorg.xgamma
|
||
|
|
];
|
||
|
|
}
|