10 lines
132 B
Nix
10 lines
132 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.nixvim.plugins.lsp.servers = {
|
|
hls = {
|
|
enable = true;
|
|
installGhc = true;
|
|
};
|
|
};
|
|
}
|