32 lines
426 B
Nix
32 lines
426 B
Nix
{
|
|
programs.waybar = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
mainBar = {
|
|
layer = "top";
|
|
position = "top";
|
|
height = 20;
|
|
|
|
output = [
|
|
"DVI-I-1"
|
|
"HDMI-0"
|
|
];
|
|
};
|
|
|
|
modules-left = ["niri/workspaces"];
|
|
modules-right = ["clock"];
|
|
|
|
"niri/workspaces" = {
|
|
disable-scroll = true;
|
|
all-outputs = true;
|
|
};
|
|
|
|
"clock" = {
|
|
interval = 1;
|
|
format = "{:%H:%M} ";
|
|
}
|
|
};
|
|
};
|
|
}
|