setup-env #1

Merged
noah.knegt merged 28 commits from setup-env into main 2025-02-28 21:49:32 +01:00
7 changed files with 61 additions and 17 deletions
Showing only changes of commit c45866e0b0 - Show all commits

View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./vscode.nix
];
}

View File

@@ -0,0 +1,16 @@
{ 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
];
};
}

View File

@@ -14,6 +14,8 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
./IDEs
];
nixpkgs = {