{pkgs, ...}: { programs.waybar = { enable = true; package = pkgs.waybar-hyprland; settings = [ { mainBar = { layer = "top"; position = "top"; output = [ "eDP-1" "DP-2" ]; }; modules-left = [ "wlr/workspaces" "hyprland/mode" "wlr/taskbar" ]; modules-center = [ "hyprland/window" ]; #modules-right = []; "wlr/workspaces" = { "format" = "{icon}"; "on-scroll-up" = "${pkgs.hyprland}/bin/hyprctl dispatch workspace e+1"; "on-scroll-down" = "${pkgs.hyprland}/bin/hyprctl dispatch workspace e-1"; "on-click" = "activate"; }; } ]; systemd = { enable = true; target = "hyprland-session.target"; }; }; }