16 lines
336 B
Nix
16 lines
336 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;
|
|
systemd.enable = false;
|
|
};
|
|
};
|
|
}
|