From 6cbf441c22b2c26a1561993f5993e20612a6df1c Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 17 Sep 2024 12:29:21 -0500 Subject: [PATCH] plugins/nvim-jdtls: configuration allow raw lua --- plugins/by-name/nvim-jdtls/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/by-name/nvim-jdtls/default.nix b/plugins/by-name/nvim-jdtls/default.nix index 23872fbc..ce649763 100644 --- a/plugins/by-name/nvim-jdtls/default.nix +++ b/plugins/by-name/nvim-jdtls/default.nix @@ -64,7 +64,7 @@ in }; configuration = mkOption { - type = types.nullOr types.str; + type = helpers.nixvimTypes.maybeRaw (with types; nullOr str); default = null; example = "/home/YOUR_USERNAME/.cache/jdtls/config"; description = "Path to the configuration file.";