22 lines
337 B
Nix
22 lines
337 B
Nix
{ pkgs, ... }: {
|
|
programs.hyprpanel = {
|
|
settings = {
|
|
layout = {
|
|
"bar.layouts" = {
|
|
"0" = {
|
|
right = [ "battery" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
bar = {
|
|
customModules = {
|
|
cava = {
|
|
framerate = lib.mkForce 120;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|