mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
hyprland: do not override existing plugins settings in config
The plugin setting in the Hyprland config is used both for defining plugin paths and configuring the plugins. This fix removes the silent override of the plugins settings converting them to the `plugin:<name> { ...settings }` syntax.
This commit is contained in:
parent
8273de29d7
commit
3b678fe158
3 changed files with 16 additions and 1 deletions
|
@ -207,7 +207,8 @@ in {
|
||||||
else
|
else
|
||||||
entry;
|
entry;
|
||||||
in map mkEntry cfg.plugins;
|
in map mkEntry cfg.plugins;
|
||||||
};
|
} // lib.mapAttrs' (n: v: lib.nameValuePair "plugin:${n}" v)
|
||||||
|
(lib.attrByPath [ "plugin" ] { } cfg.settings);
|
||||||
|
|
||||||
shouldGenerate = cfg.systemd.enable || cfg.extraConfig != ""
|
shouldGenerate = cfg.systemd.enable || cfg.extraConfig != ""
|
||||||
|| combinedSettings != { };
|
|| combinedSettings != { };
|
||||||
|
|
|
@ -26,6 +26,13 @@ input {
|
||||||
follow_mouse=1
|
follow_mouse=1
|
||||||
kb_layout=ro
|
kb_layout=ro
|
||||||
}
|
}
|
||||||
|
|
||||||
|
plugin:plugin1 {
|
||||||
|
section {
|
||||||
|
other=dummy setting
|
||||||
|
}
|
||||||
|
dummy=plugin setting
|
||||||
|
}
|
||||||
bindm=$mod, mouse:272, movewindow
|
bindm=$mod, mouse:272, movewindow
|
||||||
bindm=$mod, mouse:273, resizewindow
|
bindm=$mod, mouse:273, resizewindow
|
||||||
bindm=$mod ALT, mouse:272, resizewindow
|
bindm=$mod ALT, mouse:272, resizewindow
|
||||||
|
|
|
@ -45,6 +45,13 @@
|
||||||
"$mod, mouse:273, resizewindow"
|
"$mod, mouse:273, resizewindow"
|
||||||
"$mod ALT, mouse:272, resizewindow"
|
"$mod ALT, mouse:272, resizewindow"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
plugin = {
|
||||||
|
plugin1 = {
|
||||||
|
dummy = "plugin setting";
|
||||||
|
section = { other = "dummy setting"; };
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# window resize
|
# window resize
|
||||||
|
|
Loading…
Reference in a new issue