feat: add option for debugger configs

This commit is contained in:
Ching Pei Yang 2023-05-08 13:01:42 +02:00
commit 624782e196
2 changed files with 13 additions and 3 deletions

View file

@ -11,5 +11,11 @@ with lib; {
description = "Automatically Opens and Closes DAP-UI upon starting/closing a debugging session";
};
};
sources = mkOption {
default = {};
description = "List of debuggers to install";
type = with types; attrsOf string;
};
};
}