mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
22 lines
788 B
Nix
22 lines
788 B
Nix
_inputs: [
|
|
(import ./scripts)
|
|
(_final: prev: {
|
|
deploy = prev.callPackage ./deploy.nix { };
|
|
git-fuzzy = prev.callPackage ./git-fuzzy { };
|
|
segoe-ui-ttf = prev.callPackage ./segoe-ui-ttf.nix { };
|
|
zsh-histdb-skim = prev.callPackage ./zsh-skim-histdb.nix { };
|
|
nix-plugins = prev.callPackage ./nix-plugins.nix { };
|
|
neovim-clean = prev.neovim-unwrapped.overrideAttrs (old: {
|
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ prev.makeWrapper ];
|
|
postInstall = ''
|
|
${old.postInstall or ""}
|
|
wrapProgram $out/bin/nvim --add-flags "--clean"
|
|
'';
|
|
});
|
|
# pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
|
|
# (_pythonFinal: pythonPrev: {
|
|
# xy = pythonPrev.xy.overrideAttrs { };
|
|
# })
|
|
# ];
|
|
})
|
|
]
|