nix-config/pkgs/default.nix

13 lines
312 B
Nix
Raw Normal View History

2023-09-18 14:36:41 +02:00
[
(_self: super: {
zsh-histdb-skim = super.callPackage ./zsh-histdb-skim.nix {};
zsh-histdb = super.callPackage ./zsh-histdb.nix {};
2023-09-25 21:28:30 +02:00
deploy = super.callPackage ./deploy.nix {};
formats =
super.formats
// {
ron = import ./ron.nix {inherit (super) lib pkgs;};
};
2023-09-18 14:36:41 +02:00
})
]