Files
nixos-config/home/common/programs/hyprland/hyprpanel.nix
T
Miguel Palhas d026c0c4fa hyprpanel fixed
2025-09-25 09:57:55 +01:00

47 lines
786 B
Nix

{
inputs,
pkgs,
...
}:
{
home.packages = with pkgs; [ upower ];
programs.hyprpanel = {
enable = true;
settings = {
bar.layouts = {
"0" = {
left = [
"dashboard"
"workspaces"
];
middle = [ "media" ];
right = [
"volume"
"network"
"bluetooth"
"systray"
"clock"
"notifications"
];
};
"*" = {
left = [ ];
middle = [ ];
right = [ ];
};
};
theme.bar.transparent = true;
theme.font.size = "18px";
menus = {
dashboard = {
directories.enable = false;
stats.enable_gpu = true;
};
};
};
};
}