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

14 lines
216 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"];
}
];
2022-01-16 11:22:44 +00:00
};
}