homemanager: Move vscode to own module
This commit is contained in:
parent
dfd35d579b
commit
40bbb757a1
2 changed files with 14 additions and 4 deletions
13
home-manager/modules/vscode.nix
Normal file
13
home-manager/modules/vscode.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }: {
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium; # You can skip this if you want to use the unfree version
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
dracula-theme.theme-dracula
|
||||
vscodevim.vim
|
||||
yzhang.markdown-all-in-one
|
||||
ms-python.python
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue