Files
nixos-flake/waybar.nix
T
2026-01-11 18:52:00 +01:00

28 lines
455 B
Nix

{ pkgs, ... }:
{
programs.waybar = {
enable = true;
settings = [{
layer = "top";
position = "top";
modules-left = [ "hyprland/workspaces" ];
modules-center = [ "clock" ];
modules-right = [ "pulseaudio" "battery" "tray" ];
clock = {
format = "{:%Y-%m-%d %H:%M}";
};
}];
style = ''
* {
font-family: Hurmit Nerd Font Mono;
font-size: 16px;
}
'';
};
}