.dotfiles/.config/home-manager/x11.nix

18 lines
492 B
Nix
Raw Normal View History

{ 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
];
}