Files
home-manager/wm/waybar.nix
2026-01-18 19:45:18 +01:00

32 lines
423 B
Nix

{ 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;
};
};
};
}