Files
home-manager/wm/waybar.nix
2026-01-21 09:53:34 +01:00

33 lines
438 B
Nix

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