35 lines
607 B
Nix
35 lines
607 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.waybar = {
|
|
enable = true;
|
|
|
|
settings = [{
|
|
layer = "top";
|
|
position = "top";
|
|
|
|
output = [ "HDMI-A-2" ];
|
|
|
|
modules-left = [ "hyprland/workspaces" ];
|
|
modules-center = [ "hyprland/window" ];
|
|
modules-right = [ "pulseaudio" "battery" "clock" "tray" ];
|
|
|
|
clock = {
|
|
format = "{:%Y-%m-%d %H:%M}";
|
|
};
|
|
|
|
"hyprland/workspaces" = {
|
|
all-outputs = false;
|
|
disable-scroll = true;
|
|
};
|
|
}];
|
|
|
|
style = ''
|
|
* {
|
|
font-family: Hurmit Nerd Font Mono;
|
|
font-size: 16px;
|
|
}
|
|
'';
|
|
};
|
|
}
|