waybar integration

This commit is contained in:
Odweta
2026-01-11 18:52:00 +01:00
parent 89cbe49dd7
commit ff968d4a87
5 changed files with 33 additions and 5 deletions
+27
View File
@@ -0,0 +1,27 @@
{ 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;
}
'';
};
}