nixos-config/home/editors/dap.nix

11 lines
224 B
Nix
Raw Normal View History

2021-03-04 14:49:43 +01:00
{ config, pkgs, ... }:
{
home.packages = with pkgs;
[
# netcoredbg # TODO https://github.com/NixOS/nixpkgs/pull/103940
# vscode-firefox-debug # TODO not packaged
haskellPackages.haskell-dap
];
}