nixos-config/home/waybar.nix
2025-08-06 01:04:33 -06:00

26 lines
675 B
Nix

{ pkgs, ... }:
{
programs.waybar = {
enable = true;
settings = [
{
main.modules-right = ["clock"];
layer = "top";
position = "top";
modules-left = [ "hyprland/workspaces" "clock" ];
modules-center = [ "window" ];
modules-right = [ "battery" "pulseaudio" "network" ];
}
];
style = ''
* {
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12px;
}
#workspaces button.active {
background-color: #ff5555;
}
'';
};
}