feat(editors): add dap module (unused)

This commit is contained in:
Felix Schröter 2021-03-04 14:49:43 +01:00
parent 969ba6477f
commit dde68e0957
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

10
home/editors/dap.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;
[
# netcoredbg # TODO https://github.com/NixOS/nixpkgs/pull/103940
# vscode-firefox-debug # TODO not packaged
haskellPackages.haskell-dap
];
}