1
0
Fork 0
forked from autowolf/nix
flake-autowolf/modules/waybar/default.nix
2026-02-22 19:59:14 -06:00

28 lines
579 B
Nix

{ pkgs, ... }: {
programs.waybar = {
enable = true;
settings = {
mainBar = {
layer = "top";
position = "top";
height = 20;
# left
modules-left = ["privacy" "clock" "hyprland" "taskbar"];
# center
modules-center = ["mpris" "cava" "pulseaudio"];
# right
modules-right = ["network" "bluetooth" "battery" "upower"];
};
};
style = pkgs.writeTextFile {
name = "style.css";
text = builtins.readFile ./style.css;
};
};
}