blob: 16e43d6a72e291c527beb35c21a9f86ccc51dc9c (
plain)
1
2
3
4
5
6
7
8
9
|
{
pkgs,
inputs,
...
}: {
custom-hello = pkgs.callPackage ./custom-hello.nix {};
setup-manager = pkgs.callPackage ./setup-manager {};
custom-neovim = pkgs.callPackage ./custom-neovim {inherit inputs;};
}
|