configuration.nix/modules/home/programs/waybar/default.nix
2024-02-16 15:52:29 +02:00

24 lines
467 B
Nix

{ 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;
};
};
};
};
}