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

28 lines
473 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
unstable = import <nixos-unstable> { };
in
{
2022-02-06 23:00:20 +00:00
programs.vscode = {
2022-02-06 23:01:27 +00:00
enable = true;
package = unstable.vscodium;
2022-02-06 23:01:27 +00:00
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
2022-02-23 22:42:42 +00:00
2022-02-07 17:11:50 +00:00
# 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
}