This commit is contained in:
Miguel Palhas
2025-01-06 22:24:25 +00:00
parent 7b59a7866a
commit e3afed33ab
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,25 @@
{
inputs,
config,
pkgs,
...
}:
{
imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
programs.hyprpanel = {
enable = true;
systemd.enable = true;
overwrite.enable = true;
settings = {
theme.bar.transparent = true;
theme.font = {
name = "Fira Code Nerd Font";
size = "14px";
};
};
};
}
+32
View File
@@ -52,6 +52,38 @@
];
};
programs.hyprpanel.layout = {
"bar.layouts" = {
"0" = {
"left" = [
"dashboard"
"workspaces"
"windowtitle"
];
"middle" = [ "media" ];
"right" = [
"volume"
"network"
"bluetooth"
"systray"
"clock"
"notifications"
];
};
"1" = {
"left" = [ ];
"middle" = [ ];
"right" = [ ];
};
"2" = {
"left" = [ ];
"middle" = [ ];
"right" = [ ];
};
};
};
programs.kitty.settings.font_size = 12;
home = {