summaryrefslogtreecommitdiff
path: root/pkgs/default.nix
blob: 9808154438a2a07c08234df803288897738ef801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  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;};
  dfmodsync = pkgs.callPackage ./dfmodsync.nix {};
  inbox-review = pkgs.callPackage ./inbox-review.nix {};
}