hyprpanel: more granularly split configElements (#1931)
Fixes: 3f70c58555 ("hyprpanel: init (#1916)")
Link: https://github.com/nix-community/stylix/pull/1931
Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
parent
503d989626
commit
09022804b2
1 changed files with 10 additions and 6 deletions
|
|
@ -5,14 +5,18 @@ mkTarget {
|
|||
|
||||
configElements = [
|
||||
(
|
||||
{ colors, fonts }:
|
||||
{ fonts }:
|
||||
{
|
||||
programs.hyprpanel.settings.theme.fonts = {
|
||||
inherit (fonts.monospace) name;
|
||||
size = fonts.sizes.desktop;
|
||||
};
|
||||
}
|
||||
)
|
||||
(
|
||||
{ colors }:
|
||||
{
|
||||
programs.hyprpanel.settings.theme = with colors.withHashtag; {
|
||||
fonts = {
|
||||
inherit (fonts.monospace) name;
|
||||
size = fonts.sizes.desktop;
|
||||
};
|
||||
|
||||
bar = {
|
||||
menus = {
|
||||
menu = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue