This commit is contained in:
DeveloperDurp 2025-05-17 14:44:10 -05:00
parent b2f841ada7
commit 60e3f0c5f8
2 changed files with 2 additions and 1 deletions

11
.nixpkgs/config.nix Normal file
View file

@ -0,0 +1,11 @@
{
packageOverrides = pkgs: with pkgs; {
myPackages = pkgs.buildEnv {
name = "tools";
paths = [
neovim
go
];
};
};
}