modules/vscode: Switch to proprietary build
This commit is contained in:
parent
e1777a93e1
commit
d1b6d1de00
|
@ -1,27 +1,12 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
|
||||||
unstable = import <nixos-unstable> { };
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = unstable.vscodium;
|
|
||||||
extensions = with pkgs.vscode-extensions; [
|
|
||||||
# Dark Theme
|
|
||||||
dracula-theme.theme-dracula
|
|
||||||
|
|
||||||
# Terraform and HCL support
|
# Use the proprietary VSCode build from Microsft
|
||||||
hashicorp.terraform
|
# This way we get the "Settings Sync" feature
|
||||||
|
package = pkgs.vscode;
|
||||||
# Python
|
extensions = [];
|
||||||
ms-python.python
|
|
||||||
|
|
||||||
# Vim
|
|
||||||
vscodevim.vim
|
|
||||||
|
|
||||||
# Markdown highlighting/formatting/preview
|
|
||||||
yzhang.markdown-all-in-one
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue