nixos-config/users/rouven/modules/packages.nix

57 lines
748 B
Nix
Raw Normal View History

2022-12-19 19:30:32 +01:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# essentials
2022-12-29 15:11:01 +01:00
wpa_supplicant_gui
2022-12-19 19:30:32 +01:00
pcmanfm
xsel
vlc
# graphics
okular
gimp
# sound
pavucontrol
# bluetooth
blueman
# internet
google-chrome
nextcloud-client
2023-01-03 22:35:07 +01:00
qbittorrent
2022-12-19 19:30:32 +01:00
# messaging
2023-01-01 21:30:41 +01:00
discord
2022-12-19 19:30:32 +01:00
tdesktop
element-desktop
whatsapp-for-linux
# games
2023-01-10 11:31:33 +01:00
prismlauncher # minecraft, but it actually works
2022-12-19 19:30:32 +01:00
superTuxKart
extremetuxracer
# yubikey and password stuff
yubikey-manager
yubikey-manager-qt
2023-01-18 23:10:09 +01:00
yubioath-flutter
2022-12-19 19:30:32 +01:00
pass
# misc
neofetch
trash-cli
spotify
virt-manager
2023-01-01 17:31:10 +01:00
powerline-fonts
2023-01-14 22:55:06 +01:00
ventoy-bin
2023-01-21 23:42:49 +01:00
ripgrep
2022-12-19 19:30:32 +01:00
# libs
libyubikey
libfido2
];
}