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

24 lines
467 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" ];
modules-right = [ "battery" "temperature" "clock" ];
"sway/workspaces" = {
disable-scroll = true;
all-outputs = true;
};
};
};
};
}