devShells: +vim-tw

This commit is contained in:
Primrose 2025-06-07 23:15:00 +02:00
parent a064cb7d33
commit 52a8b37a1d
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 25 additions and 0 deletions

13
nix/devShells/vim-tw.nix Normal file
View file

@ -0,0 +1,13 @@
let
sources = import ../sources.nix;
in
{pkgs ? import sources.pin-vim-tw {}}:
pkgs.mkShell {
name = "vim-tw";
packages = with pkgs; [
haskellPackages.cabal-fmt
haskellPackages.cabal-install
haskellPackages.ghc
haskellPackages.haskell-language-server
];
}