26 lines
675 B
Nix
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;
|
|
}
|
|
'';
|
|
};
|
|
} |