wayfire: remove illegal config.stylix access (#1609)
Link: https://github.com/nix-community/stylix/pull/1609
Fixes: aa5e3c0333 ("treewide: use mkTarget (batch 3) (#1371)")
Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
parent
bba3152bd2
commit
5cd1e4ffd9
1 changed files with 7 additions and 4 deletions
|
|
@ -48,10 +48,13 @@ mkTarget {
|
|||
};
|
||||
}
|
||||
)
|
||||
(lib.mkIf config.stylix.targets.nixos-icons.enable {
|
||||
wayland.windowManager.wayfire.wf-shell.settings.panel.menu_icon =
|
||||
"${pkgs.nixos-icons}/share/icons/hicolor/256x256/apps/nix-snowflake.png";
|
||||
})
|
||||
(
|
||||
{ targets }:
|
||||
{
|
||||
wayland.windowManager.wayfire.wf-shell.settings.panel.menu_icon =
|
||||
lib.mkIf targets.nixos-icons.enable "${pkgs.nixos-icons}/share/icons/hicolor/256x256/apps/nix-snowflake.png";
|
||||
}
|
||||
)
|
||||
(
|
||||
{ colors }:
|
||||
let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue