23 lines
391 B
Nix
23 lines
391 B
Nix
{ pkgs, ... }: {
|
|
|
|
programs.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
# Dark Theme
|
|
dracula-theme.theme-dracula
|
|
|
|
# Terraform and HCL support
|
|
hashicorp.terraform
|
|
|
|
# Python
|
|
ms-python.python
|
|
|
|
# Vim
|
|
vscodevim.vim
|
|
|
|
# Markdown highlighting/formatting/preview
|
|
yzhang.markdown-all-in-one
|
|
];
|
|
};
|
|
}
|