30 lines
510 B
Nix
30 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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|