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