Files
Olympus/home-manager/users/nathan/programs/hyprpanel/default.nix
2025-12-18 12:08:45 -06:00

15 lines
300 B
Nix

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