nix-config/home/hyprland/waybar/single.nix
2025-09-10 11:48:22 +02:00

31 lines
543 B
Nix

let
common = import ./common.nix;
wm = import ./wm.nix;
in
{
enable = true;
settings = {
mainBar =
{
layer = "top";
position = "top";
height = 30;
modules-left = [
"custom/nixicon"
"clock"
"group/media"
];
modules-center = [
"hyprland/workspaces"
"niri/workspaces"
];
modules-right = [
"custom/weather"
"group/hardware"
];
}
// common.widgets
// wm.widgets;
};
}