Configure VScode

This commit is contained in:
Isshi0417 2024-07-03 20:32:49 +09:00
parent 0d75a7f199
commit f280f88d3e
3 changed files with 13 additions and 1 deletions

View File

@ -129,7 +129,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
vscode
gparted gparted
nh nh
dxvk_2 dxvk_2

View File

@ -6,6 +6,7 @@
../../modules/home-manager/git.nix ../../modules/home-manager/git.nix
# ../../modules/home-manager/zsh.nix # ../../modules/home-manager/zsh.nix
../../modules/home-manager/themes/basic-gtk.nix ../../modules/home-manager/themes/basic-gtk.nix
../../modules/home-manager/vscode.nix
]; ];
# Allow Unfree # Allow Unfree

View File

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home.programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
bbenoist.nix
ms-python.python
ms-python.debugpy
];
};
}