nixfiles/home/gui/environments/sway/waybar-bottom.nix

13 lines
201 B
Nix
Raw Normal View History

2022-01-16 11:22:44 +00:00
{ ... }: {
programs.waybar = {
enable = true;
settings = [{
position = "bottom";
modules-left = [ ];
modules-center = [ ];
modules-right = [ "tray" ];
}];
};
}