define base packages in another module

This commit is contained in:
2024-09-24 01:01:54 +00:00
parent a39878e91c
commit d0ed46d044
3 changed files with 23 additions and 12 deletions

10
base-packages/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{ lib, pkgs }:
{
mkBasePackages = {
inherit pkgs;
packages = [
pkgs.vim
pkgs.haxe
];
};
}