mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-06 00:51:04 +01:00
hyprland: load plugins using exec-once (#6789)
Should eliminate crashes / plugin version mismatches when updating hyprland.
This commit is contained in:
parent
542efdf2df
commit
7946193670
3 changed files with 7 additions and 6 deletions
|
|
@ -287,12 +287,13 @@ in
|
|||
plugins:
|
||||
lib.hm.generators.toHyprconf {
|
||||
attrs = {
|
||||
plugin =
|
||||
"exec-once" =
|
||||
let
|
||||
mkEntry =
|
||||
entry: if lib.types.package.check entry then "${entry}/lib/lib${entry.pname}.so" else entry;
|
||||
hyprctl = "${cfg.finalPackage}/bin/hyprctl";
|
||||
in
|
||||
map mkEntry cfg.plugins;
|
||||
map (p: "${hyprctl} plugin load ${mkEntry p}") cfg.plugins;
|
||||
};
|
||||
inherit (cfg) importantPrefixes;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue