Hyprbars file uses "plugin:hyprbars" syntax to add hyprbars configuration to the Hyprland configuration file: https://github.com/Misterio77/nix-config/blob/4e012261fac4a1a5106037743a8fcda7802bd181/home/misterio/features/desktop/hyprland/hyprbars.nix#L15 However, valid syntax is to use two nested sections, see https://github.com/hyprwm/hyprland-plugins/tree/main/hyprbars: ``` plugin { hyprbars { ... } } ``` Using `plugin:hyprbars` syntax makes Hyprland incorrectly parse the section which may follow after `plugin:hyprbars` in the configuration file (in my case `xwayland`), and skip the values defined there, because of this section parsing code: https://github.com/hyprwm/Hyprland/blob/ea7569d7e0941d19f5f469a5fbb79bc0fa62b935/src/config/ConfigManager.cpp#L1550
Hyprbars file uses "plugin:hyprbars" syntax to add hyprbars configuration to the Hyprland configuration file:
https://github.com/Misterio77/nix-config/blob/4e012261fac4a1a5106037743a8fcda7802bd181/home/misterio/features/desktop/hyprland/hyprbars.nix#L15
However, valid syntax is to use two nested sections, see https://github.com/hyprwm/hyprland-plugins/tree/main/hyprbars:
Using
plugin:hyprbarssyntax makes Hyprland incorrectly parse the section which may follow afterplugin:hyprbarsin the configuration file (in my casexwayland), and skip the values defined there, because of this section parsing code:https://github.com/hyprwm/Hyprland/blob/ea7569d7e0941d19f5f469a5fbb79bc0fa62b935/src/config/ConfigManager.cpp#L1550