Configure VScode
This commit is contained in:
parent
0d75a7f199
commit
f280f88d3e
@ -129,7 +129,6 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
wget
|
||||
vscode
|
||||
gparted
|
||||
nh
|
||||
dxvk_2
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
../../modules/home-manager/git.nix
|
||||
# ../../modules/home-manager/zsh.nix
|
||||
../../modules/home-manager/themes/basic-gtk.nix
|
||||
../../modules/home-manager/vscode.nix
|
||||
];
|
||||
|
||||
# Allow Unfree
|
||||
|
||||
12
modules/home-manager/vscode.nix
Normal file
12
modules/home-manager/vscode.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.programs.vscode = {
|
||||
enable = true;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
bbenoist.nix
|
||||
ms-python.python
|
||||
ms-python.debugpy
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user