mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-04 13:02:01 +02:00
nix: add plugin_path
This commit is contained in:
parent
3a31a4ce3b
commit
1df2c3a369
10
nix/hm.nix
10
nix/hm.nix
|
@ -36,7 +36,7 @@ in
|
|||
plugin_config = mkOption {
|
||||
# TODO: define type
|
||||
# type = with types; nullOr (listOf toml);
|
||||
default = {};
|
||||
default = { };
|
||||
description = mdDoc ''
|
||||
Toml values passed to the configuration for plugins to use.
|
||||
'';
|
||||
|
@ -56,6 +56,11 @@ in
|
|||
then "${entry}/lib/lib${entry.pname}.so"
|
||||
else "")
|
||||
cfg.config.plugins;
|
||||
path =
|
||||
if cfg.config.plugins == null
|
||||
then ""
|
||||
else
|
||||
"${lib.lists.last cfg.config.plugins}/lib";
|
||||
in
|
||||
lib.mkIf cfg.enable {
|
||||
home.packages = lib.optional (cfg.package != null) cfg.package;
|
||||
|
@ -63,6 +68,7 @@ in
|
|||
xdg.configFile."reset/ReSet.toml".source = (pkgs.formats.toml { }).generate "reset"
|
||||
{
|
||||
plugins = fetchedPlugins;
|
||||
} ;#++ (pkgs.formats.toml cfg.config.plugin_config);
|
||||
plugin_path = path;
|
||||
}; #++ (pkgs.formats.toml cfg.config.plugin_config);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue