nix-config/pkgs/default.nix

23 lines
699 B
Nix
Raw Normal View History

2023-09-18 14:36:41 +02:00
[
(import ./scripts)
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 {};
2023-11-08 22:37:07 +01:00
minify = super.callPackage ./minify {};
2023-11-07 21:16:39 +01:00
neovim-clean = super.neovim-unwrapped.overrideAttrs (_neovimFinal: neovimPrev: {
nativeBuildInputs = (neovimPrev.nativeBuildInputs or []) ++ [super.makeWrapper];
postInstall =
(neovimPrev.postInstall or "")
+ ''
wrapProgram $out/bin/nvim --add-flags "--clean"
'';
});
formats =
super.formats
// {
ron = import ./ron.nix {inherit (super) lib pkgs;};
};
2023-09-18 14:36:41 +02:00
})
]