16 lines
294 B
Nix
16 lines
294 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
catppuccin.catppuccin-vsc
|
|
catppuccin.catppuccin-vsc-icons
|
|
|
|
jnoortheen.nix-ide
|
|
mhutchie.git-graph
|
|
donjayamanne.githistory
|
|
eamodio.gitlens
|
|
];
|
|
};
|
|
} |