summaryrefslogtreecommitdiff
path: root/pkgs/default.nix
blob: 3c884874896e0813d1c79f779643fdbce3940963 (plain)
1
2
3
4
5
6
7
8
9
10
{
  pkgs,
  inputs,
  ...
}: {
  custom-hello = pkgs.callPackage ./custom-hello.nix {};
  custom-neovim = pkgs.callPackage ./custom-neovim {inherit inputs;};
  setup-manager = pkgs.callPackage ./setup-manager {};
  neovide-git = pkgs.callPackage ./neovide-git.nix {};
}