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
|
|
|
|
lightlocker
|
|
|
|
vlc
|
|
|
|
|
|
|
|
# graphics
|
|
|
|
feh
|
|
|
|
okular
|
|
|
|
gimp
|
|
|
|
|
2022-12-22 12:10:46 +01:00
|
|
|
gh # github cli tool
|
|
|
|
|
2022-12-19 19:30:32 +01:00
|
|
|
# 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
|
|
|
|
minecraft
|
|
|
|
superTuxKart
|
|
|
|
extremetuxracer
|
|
|
|
|
|
|
|
# yubikey and password stuff
|
|
|
|
yubikey-manager
|
|
|
|
yubikey-manager-qt
|
|
|
|
yubioath-desktop
|
|
|
|
pass
|
|
|
|
|
|
|
|
# misc
|
|
|
|
neofetch
|
|
|
|
trash-cli
|
|
|
|
spotify
|
|
|
|
nixpkgs-fmt
|
|
|
|
virt-manager
|
2022-12-27 13:23:06 +01:00
|
|
|
remmina
|
2023-01-01 17:31:10 +01:00
|
|
|
powerline-fonts
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# libs
|
|
|
|
libyubikey
|
|
|
|
libfido2
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|