flake/nixos/nvim/plugins/dap.nix
2025-02-06 23:23:02 -06:00

13 lines
173 B
Nix

{ pkgs, lib, ... }:
{
programs.nixvim = {
plugins = {
dap = {
enable = true;
};
dap-python = {
enable = true;
};
};
};
}