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

70 lines
855 B
Nix
Raw Normal View History

2022-12-19 19:30:32 +01:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# essentials
networkmanagerapplet
pcmanfm
xsel
lightlocker
vlc
# graphics
lxappearance
feh
flameshot
picom
okular
gimp
# editing
fzf
powerline-fonts
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
thunderbird
discord
google-chrome
nextcloud-client
zoom-us
# messaging
tdesktop
element-desktop
whatsapp-for-linux
# games
minecraft
superTuxKart
extremetuxracer
wine
# yubikey and password stuff
yubikey-manager
yubikey-manager-qt
yubioath-desktop
pass
# misc
fzf
neofetch
trash-cli
spotify
nixpkgs-fmt
virt-manager
2022-12-27 13:23:06 +01:00
remmina
2022-12-19 19:30:32 +01:00
# libs
libyubikey
libfido2
];
}