17 lines
492 B
Nix
17 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
|
|
];
|
|
}
|