configuration.nix/modules/home/programs/waybar/default.nix

30 lines
620 B
Nix
Raw Normal View History

2024-02-16 14:52:29 +01:00
{ pkgs, ... }: {
programs.waybar = {
enable = true;
settings = {
mainBar = {
layer = "top";
position = "top";
height = 30;
output = [
"eDP-1"
"HDMI-A-1"
];
modules-left = [ "sway/workspaces" ];
2024-02-16 18:31:47 +01:00
modules-right = [ "memory" "battery" "clock" ];
2024-02-16 15:52:25 +01:00
clock = {
2024-02-16 18:31:47 +01:00
format = "{:%a %Y-%m-%d %H:%M:%S}";
2024-02-16 15:52:25 +01:00
interval = 1;
timezones = [ "Europe/Sofia" "Europe/Prague" ];
};
2024-02-16 14:52:29 +01:00
"sway/workspaces" = {
disable-scroll = true;
all-outputs = true;
};
};
};
};
}