nix/home-manager/wm/waybar.nix

31 lines
510 B
Nix
Raw Normal View History

2024-07-29 10:08:16 +02:00
{
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"
];
};
};
};
}