12 lines
217 B
Nix
12 lines
217 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
bbenoist.nix
|
|
ms-python.python
|
|
tal7aouy.icons
|
|
];
|
|
};
|
|
} |