mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
70 lines
857 B
Nix
70 lines
857 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# essentials
|
|
alacritty
|
|
networkmanagerapplet
|
|
pcmanfm
|
|
xsel
|
|
lightlocker
|
|
vlc
|
|
|
|
# graphics
|
|
lxappearance
|
|
feh
|
|
flameshot
|
|
picom
|
|
okular
|
|
gimp
|
|
|
|
# editing
|
|
fzf
|
|
powerline-fonts
|
|
|
|
gh # github cli tool
|
|
|
|
# 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
|
|
|
|
# libs
|
|
libyubikey
|
|
libfido2
|
|
];
|
|
}
|
|
|