mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
61 lines
760 B
Nix
61 lines
760 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# essentials
|
|
wpa_supplicant_gui
|
|
pcmanfm
|
|
xsel
|
|
lightlocker
|
|
vlc
|
|
|
|
# graphics
|
|
feh
|
|
okular
|
|
gimp
|
|
|
|
gh # github cli tool
|
|
|
|
# sound
|
|
pavucontrol
|
|
|
|
# bluetooth
|
|
blueman
|
|
|
|
# internet
|
|
google-chrome
|
|
nextcloud-client
|
|
qbittorrent
|
|
|
|
# messaging
|
|
discord
|
|
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
|
|
remmina
|
|
powerline-fonts
|
|
|
|
# libs
|
|
libyubikey
|
|
libfido2
|
|
];
|
|
}
|
|
|