2022-12-22 14:05:43 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Packages that should be installed to the user profile.
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
#alacritty # terminal emulator
|
|
|
|
bc # calculator (bsp-layout dependency)
|
2022-12-23 00:12:17 +00:00
|
|
|
bemenu # tool to display menus
|
2022-12-22 14:05:43 +00:00
|
|
|
bsp-layout # automatic layouts for bpswm
|
|
|
|
ckb-next # corsair hardware control
|
|
|
|
conky # shows stuff on the wallpaper
|
|
|
|
dunst # notification-daemon
|
|
|
|
feh # image viewer and wallpaper-tool
|
|
|
|
flameshot # screenshot tool
|
2023-02-02 22:26:51 +00:00
|
|
|
gspell # spell highlighting for gtk applications
|
2022-12-22 14:05:43 +00:00
|
|
|
helvum # Pipewire GUI
|
2022-12-23 00:12:17 +00:00
|
|
|
j4-dmenu-desktop # collects .desktop files for a menu
|
2023-02-02 22:26:51 +00:00
|
|
|
keepassxc # password manager
|
|
|
|
libsForQt5.kdeconnect-kde # tool to connect a phone to the computer
|
2022-12-22 14:05:43 +00:00
|
|
|
parcellite # clipboard-manager
|
|
|
|
pavucontrol # Pulseaudio GUI
|
2022-12-23 00:12:17 +00:00
|
|
|
polybar # desktop bar
|
2023-02-02 22:26:51 +00:00
|
|
|
#python310Packages.adblock # pylib for adblocking in qutebrowser
|
|
|
|
#python310Packages.pynacl # pylib for qutebrowser-keepassxc support
|
|
|
|
#(qutebrowser.override { enableWideVine = true; }) # vim-like browser
|
2022-12-22 14:05:43 +00:00
|
|
|
solaar # Logitech tool
|
2022-12-23 00:12:17 +00:00
|
|
|
sxhkd # hotkey daemon
|
2023-02-28 00:01:24 +00:00
|
|
|
unclutter-xfixes # hides the cursor
|
2022-12-22 14:05:43 +00:00
|
|
|
#vagrant # tool for automated virtual machines
|
|
|
|
#virtualbox # tool for virtual machines
|
|
|
|
xclip # clipboard CLI for X
|
2023-02-02 22:26:51 +00:00
|
|
|
xcompmgr # compositor for X
|
2023-01-06 00:24:43 +00:00
|
|
|
xfce.thunar # file manager
|
|
|
|
xfce.tumbler # thumbnail tool
|
2023-02-02 22:26:51 +00:00
|
|
|
xorg.xsetroot # tool to set x background stuff
|
2022-12-22 14:05:43 +00:00
|
|
|
];
|
|
|
|
}
|