Add waybar config

This commit is contained in:
2026-01-17 23:07:49 +01:00
parent 230b58fcf1
commit a75bc98846
3 changed files with 32 additions and 2 deletions

31
wm/waybar.nix Normal file
View File

@@ -0,0 +1,31 @@
{ pkgs, ... }:
{
programs.waybar = {
enable = true;
settings.mainBar = {
layer = "top";
position = "top";
height = 30;
modules-left = [
"hyprland/workspaces"
];
modules-right = [
"cpu"
"clock"
];
cpu = {
format = "{usage}% ";
tooltip = false;
};
clock = {
tooltip = false;
};
};
};
}