feat: new waybar config (stolen from @Ruixi-rebirth)

This commit is contained in:
Ahwx 2024-09-04 16:48:42 +02:00
parent b72c2c4483
commit dcd84b40a6
5 changed files with 1038 additions and 4 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.waybar = {
enable = true;
};
programs.waybar.package = pkgs.waybar.overrideAttrs (oa: {
mesonFlags = (oa.mesonFlags or [ ]) ++ [ "-Dexperimental=true" ];
});
}