nixos-config/users/rouven/modules/packages.nix
2023-01-27 00:24:24 +01:00

57 lines
742 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# essentials
wpa_supplicant_gui
pcmanfm
xsel
# graphics
evince
gimp
mpv
# sound
pavucontrol
# bluetooth
blueman
# internet
google-chrome
nextcloud-client
transmission-gtk
# messaging
discord
tdesktop
element-desktop
# games
prismlauncher # minecraft, but it actually works
superTuxKart
# yubikey and password stuff
yubikey-manager
yubikey-manager-qt
yubioath-flutter
bitwarden
bitwarden-cli
pass
# misc
neofetch
trash-cli
spotify
virt-manager
powerline-fonts
ventoy-bin
ripgrep
# libs
libyubikey
libfido2
];
}