Improve hyprland and home-manger configs

This commit is contained in:
Tobias Reisinger 2023-07-01 16:36:44 +02:00
parent cf24c298e1
commit adc39bd74d
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 58 additions and 53 deletions

View file

@ -0,0 +1,16 @@
{ 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
];
}