31 lines
510 B
Nix
31 lines
510 B
Nix
|
|
{
|
||
|
|
programs.waybar = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
mainBar = {
|
||
|
|
layer = "top";
|
||
|
|
position = "top";
|
||
|
|
height = 16;
|
||
|
|
output = [
|
||
|
|
"eDP-1"
|
||
|
|
];
|
||
|
|
modules-left = [
|
||
|
|
"river/tags"
|
||
|
|
];
|
||
|
|
modules-center = [
|
||
|
|
"clock"
|
||
|
|
];
|
||
|
|
modules-right = [
|
||
|
|
"pulseaudio"
|
||
|
|
"network"
|
||
|
|
"memory"
|
||
|
|
"cpu"
|
||
|
|
"temperature"
|
||
|
|
"battery"
|
||
|
|
"tray"
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|