This commit is contained in:
2025-08-31 13:27:12 -05:00
parent 9698873c0b
commit 85c96cd78b
15 changed files with 219 additions and 190 deletions

View File

@@ -0,0 +1,15 @@
{ config, lib, ... }: {
options.homeconfig.hyprpanel.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
config = lib.mkIf config.homeconfig.hyprpanel.enable {
programs.hyprpanel = {
enable = true;
};
};
}