General cleanup and flake update

This commit is contained in:
Filippo Berto 2024-01-04 19:55:13 +01:00
parent b26292662f
commit a5bc8abaec
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
13 changed files with 126 additions and 112 deletions

View file

@ -14,6 +14,22 @@ let
strPalette = pkgs.lib.nix-rice.palette.toRGBHex pkgs.rice.colorPalette;
in
{
imports = [
./picom.nix
./polybar.nix
./sxhkd.nix
./update_background.nix
];
home.packages = builtins.attrValues {
inherit (pkgs)
arandr
blueman
dmenu
keyboard-switch
;
};
xsession.windowManager.bspwm = {
enable = true;
settings = {
@ -46,5 +62,4 @@ in
network-manager-applet.enable = true;
blueman-applet.enable = true;
};
home.packages = [ pkgs.blueman ];
}