nixos-config/home-manager/modules/vscode.nix

24 lines
484 B
Nix
Raw Normal View History

2022-02-06 23:00:20 +00:00
{ pkgs, ... }: {
programs.vscode = {
2022-02-06 23:01:27 +00:00
enable = true;
package = pkgs.vscodium; # You can skip this if you want to use the unfree version
extensions = with pkgs.vscode-extensions; [
2022-02-07 17:11:50 +00:00
# Dark Theme
2022-02-06 23:01:27 +00:00
dracula-theme.theme-dracula
2022-02-07 17:11:50 +00:00
# Terraform and HCL support
hashicorp.terraform
# Python
ms-python.python
# Vim
2022-02-06 23:01:27 +00:00
vscodevim.vim
2022-02-07 17:11:50 +00:00
# Markdown highlighting/formatting/preview
2022-02-06 23:01:27 +00:00
yzhang.markdown-all-in-one
];
};
2022-02-06 23:00:20 +00:00
}