nixos/home/desktop/waybar/vertical.nix

21 lines
454 B
Nix
Raw Normal View History

2023-07-10 11:24:42 +01:00
{...}: let
modules = import ./modules.nix;
in {
imports = [./default.nix];
programs.waybar.settings = {
vertical = {
layer = "top";
position = "top";
spacing = 10;
margin-top = 10;
margin-left = 20;
margin-right = 20;
margin-bottom = 5;
"modules-left" = [];
"modules-center" = ["wlr/workspaces"];
"modules-right" = [];
"wlr/workspaces" = modules."wlr/workspaces";
};
};
}