mirror of https://git.jolheiser.com/dotnix.git
12 lines
240 B
Nix
12 lines
240 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
gopls # Go
|
||
|
nil # Nix
|
||
|
jsonnet-language-server # Jsonnet
|
||
|
marksman # Markdown
|
||
|
nodePackages.yaml-language-server # YAML
|
||
|
vscode-langservers-extracted # HTML/CSS/JSON
|
||
|
];
|
||
|
}
|