dotfiles/nixos/msi/modules/ghci/default.nix
2024-07-22 23:55:51 +02:00

11 lines
124 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
ghc
haskell-language-server
];
home.file.".ghci".source = ./.ghci;
}