From 6c6b14e6884669fe627ffd10b3a9d24400f46654 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 17 May 2024 02:24:00 +0300 Subject: [PATCH] modules/neoformat: change pattern type to commas --- modules/plugins/style/neoformat.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/style/neoformat.nix b/modules/plugins/style/neoformat.nix index f41a08d..77181fa 100644 --- a/modules/plugins/style/neoformat.nix +++ b/modules/plugins/style/neoformat.nix @@ -26,7 +26,7 @@ let cfg = config.plugins.style.neoformat; in autoformat = { enable = mkEnableOption "Autoformat on save file"; pattern = { - type = either str commas; + type = types.commas; default = "*"; }; };