flakes/users/rin/packages.nix

66 lines
1.4 KiB
Nix
Raw Normal View History

2021-12-18 19:47:09 +07:00
{ config, enableGUI, inputs, pkgs, ... }:
let
discord = pkgs.discord-plugged.override {
plugins = [
inputs.better-status-indicators
inputs.channel-typing
inputs.discord-tweaks
inputs.fix-user-popouts
inputs.no-double-back-pc
inputs.powercord-popout-fix
inputs.rolecolor-everywhere
inputs.theme-toggler
inputs.twemoji-but-good
inputs.view-raw
inputs.who-reacted
];
themes = [
pkgs.me.discord-tokyonight
inputs.radialstatus
inputs.tokyonight
inputs.zelk
];
};
in {
2021-07-15 20:57:51 +07:00
home.packages = with pkgs; [
2021-10-09 11:58:26 +07:00
dconf
2021-07-15 20:57:51 +07:00
ffmpeg
gnupg
kitty
2021-07-15 20:57:51 +07:00
nodejs-16_x
pamixer
rnix-lsp
unrar
2021-08-06 16:26:46 +07:00
weechat
2021-07-15 20:57:51 +07:00
youtube-dl
nodePackages_latest.pnpm
] ++ lib.optionals enableGUI [
2021-09-20 11:17:32 +07:00
adoptopenjdk-hotspot-bin-16
2021-07-15 20:57:51 +07:00
brave
2021-12-18 19:47:09 +07:00
discord
2021-07-15 20:57:51 +07:00
element-desktop
feh
gnome.file-roller
gimp
kotatogram-desktop
2021-07-17 05:45:38 +07:00
insomnia
2021-07-15 20:57:51 +07:00
maim
2021-09-26 00:12:58 +07:00
((multimc.override {
jdk8 = adoptopenjdk-hotspot-bin-8;
jdk = adoptopenjdk-hotspot-bin-16;
}).overrideAttrs(o: {
postPatch = lib.strings.replaceStrings ["/lib/openjdk"] [""] o.postPatch;
}))
2021-07-17 13:32:56 +07:00
obs-studio
2021-07-15 20:57:51 +07:00
pavucontrol
2021-07-17 14:09:11 +07:00
screenkey
2021-07-15 20:57:51 +07:00
tor-browser-bundle-bin
transmission-remote-gtk
inputs.nix-gaming.packages.x86_64-linux.wine-tkg
inputs.nix-gaming.packages.x86_64-linux.wowtricks
2021-07-15 20:57:51 +07:00
xclip
xorg.xgamma
];
}