37 lines
661 B
Nix
37 lines
661 B
Nix
let
|
|
common = import ./common.nix;
|
|
wm = import ./wm.nix;
|
|
in
|
|
{
|
|
enable = true;
|
|
settings = {
|
|
mainBar =
|
|
{
|
|
layer = "top";
|
|
position = "left";
|
|
#height = 30;
|
|
modules-left = [
|
|
"custom/nixicon"
|
|
"clock"
|
|
"custom/cava"
|
|
"mpris"
|
|
"wireplumber"
|
|
];
|
|
modules-center = [
|
|
"hyprland/workspaces"
|
|
"niri/workspaces"
|
|
];
|
|
modules-right = [
|
|
"custom/weather-side"
|
|
"cpu"
|
|
"network"
|
|
"memory"
|
|
"disk"
|
|
"temperature"
|
|
];
|
|
}
|
|
// common.widgets
|
|
// wm.widgets;
|
|
};
|
|
}
|