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