nixfiles/home/gui/environments/sway/waybar-bottom.nix
2022-01-16 11:22:44 +00:00

13 lines
201 B
Nix

{ ... }: {
programs.waybar = {
enable = true;
settings = [{
position = "bottom";
modules-left = [ ];
modules-center = [ ];
modules-right = [ "tray" ];
}];
};
}