From b1184bab47a59506f7ff5d90ea0c86efb480167c Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 11 Aug 2023 10:04:56 +0300 Subject: [PATCH] fix: warns due to types.string deprecation --- modules/debugger/nvim-dap/nvim-dap.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/debugger/nvim-dap/nvim-dap.nix b/modules/debugger/nvim-dap/nvim-dap.nix index b0fcb5e..8348d05 100644 --- a/modules/debugger/nvim-dap/nvim-dap.nix +++ b/modules/debugger/nvim-dap/nvim-dap.nix @@ -15,7 +15,7 @@ with lib; { sources = mkOption { default = {}; description = "List of debuggers to install"; - type = with types; attrsOf string; + type = with types; attrsOf str; }; mappings = {