.dotfiles/.config/home-manager/x11.nix
Tobias Reisinger ccb5e6660e
Improve configs
fixes, replace exa with eza, update home-manager version
2023-09-10 21:41:00 +02:00

18 lines
492 B
Nix

{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
bc # calculator (bsp-layout dependency)
bsp-layout # automatic layouts for bpswm
conky # shows stuff on the wallpaper
parcellite # clipboard-manager
polybar # desktop bar
sxhkd # hotkey daemon
unclutter-xfixes # hides the cursor
xclip # clipboard CLI for X
xcompmgr # compositor for X
xorg.xsetroot # tool to set x background stuff
];
}