hyprpanel fixed

This commit is contained in:
Miguel Palhas
2025-09-25 09:57:55 +01:00
parent a0052892c8
commit d026c0c4fa
7 changed files with 59 additions and 174 deletions
@@ -5,7 +5,6 @@ in
{
imports = [
./rofi.nix
./dunst.nix
./cursor.nix
./hyprpanel.nix
];
+30 -9
View File
@@ -5,20 +5,41 @@
}:
{
# imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
home.packages = with pkgs; [ upower ];
programs.hyprpanel = {
# enable = true;
# overlay.enable = true;
# overwrite.enable = true;
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 = {
name = "Fira Code Nerd Font";
size = "14px";
theme.font.size = "18px";
menus = {
dashboard = {
directories.enable = false;
stats.enable_gpu = true;
};
};
};
};