2025-09-08 16:29:01 +02:00
|
|
|
let
|
|
|
|
common = import ./common.nix;
|
2025-09-10 11:48:22 +02:00
|
|
|
wm = import ./wm.nix;
|
2025-09-08 16:29:01 +02:00
|
|
|
in
|
2025-09-05 01:03:12 +02:00
|
|
|
{
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2025-09-08 16:29:01 +02:00
|
|
|
mainBar =
|
|
|
|
{
|
|
|
|
layer = "top";
|
|
|
|
position = "top";
|
|
|
|
height = 30;
|
|
|
|
output = [ "DP-1" ];
|
|
|
|
modules-left = [
|
|
|
|
"custom/nixicon"
|
|
|
|
"clock"
|
2025-09-05 01:03:12 +02:00
|
|
|
];
|
2025-09-08 16:29:01 +02:00
|
|
|
modules-center = [
|
|
|
|
"hyprland/workspaces"
|
2025-09-10 11:48:22 +02:00
|
|
|
"niri/workspaces"
|
2025-09-05 01:03:12 +02:00
|
|
|
];
|
2025-09-08 16:29:01 +02:00
|
|
|
modules-right = [
|
|
|
|
"group/hardware"
|
2025-09-05 01:03:12 +02:00
|
|
|
];
|
2025-09-08 16:29:01 +02:00
|
|
|
}
|
|
|
|
// common.widgets
|
2025-09-10 11:48:22 +02:00
|
|
|
// wm.widgets;
|
2025-09-08 16:29:01 +02:00
|
|
|
|
|
|
|
secondBar =
|
|
|
|
{
|
|
|
|
layer = "top";
|
|
|
|
position = "top";
|
|
|
|
height = 30;
|
|
|
|
output = [ "HDMI-A-2" ];
|
|
|
|
modules-left = [ "group/media" ];
|
2025-09-10 11:48:22 +02:00
|
|
|
modules-center = [
|
|
|
|
"hyprland/workspaces"
|
|
|
|
"niri/workspaces"
|
|
|
|
];
|
2025-09-08 16:29:01 +02:00
|
|
|
modules-right = [ "custom/weather" ];
|
|
|
|
}
|
|
|
|
// common.widgets
|
2025-09-10 11:48:22 +02:00
|
|
|
// wm.widgets;
|
2025-09-05 01:03:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|