From 9f34ffeb9c4d64b9d260941626ae69b9722026a8 Mon Sep 17 00:00:00 2001 From: DashieTM Date: Thu, 30 May 2024 19:39:36 +0200 Subject: [PATCH] nix: fix toml conversion --- nix/hm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/hm.nix b/nix/hm.nix index 048240e..b277f57 100644 --- a/nix/hm.nix +++ b/nix/hm.nix @@ -36,7 +36,7 @@ in plugin_config = mkOption { # TODO: define type # type = with types; nullOr (listOf toml); - default = null; + default = {}; description = mdDoc '' Toml values passed to the configuration for plugins to use. '';