From a50f28dbe6bc796fcb20a7226fac805cad9a31fc Mon Sep 17 00:00:00 2001 From: DashieTM Date: Thu, 6 Jun 2024 15:39:21 +0200 Subject: [PATCH] nix: merge attr sets --- nix/hm.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nix/hm.nix b/nix/hm.nix index 8f0cd43..9f6e50e 100644 --- a/nix/hm.nix +++ b/nix/hm.nix @@ -69,10 +69,12 @@ in }) cfg.config.plugins); - xdg.configFile."reset/ReSet.toml".source = (pkgs.formats.toml {}).generate "reset" + xdg.configFile."reset/ReSet.toml".source = (pkgs.formats.toml { }).generate "reset" + lib.mkMerge { plugins = fetchedPlugins; - - } ++ cfg.config.plugin_config; + + } + cfg.config.plugin_config; }; }