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";
};
};
};
}