.dotfiles/.config/nixpkgs/graphical.nix

29 lines
892 B
Nix
Raw Normal View History

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)
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
helvum # Pipewire GUI
j4-dmenu-desktop # collects .desktop files for a menu
2022-12-22 14:05:43 +00:00
parcellite # clipboard-manager
pavucontrol # Pulseaudio GUI
polybar # desktop bar
2022-12-22 14:05:43 +00:00
solaar # Logitech tool
sxhkd # hotkey daemon
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-01-06 00:24:43 +00:00
xfce.thunar # file manager
xfce.tumbler # thumbnail tool
2022-12-22 14:05:43 +00:00
];
}