dotfiles.nix/pkgs/default.nix

33 lines
896 B
Nix
Raw Normal View History

2022-12-20 02:45:46 +00:00
{ inputs }:
_: prev: {
inherit (inputs) kitty-icon kitty-themes;
fishPlugins = prev.fishPlugins // {
fisher = {
name = "fisher";
src = inputs.fisher-src;
};
};
2023-04-14 06:40:01 +00:00
helix = inputs.helix.packages.${prev.stdenv.system}.default;
starship = prev.starship.overrideDerivation (drv: {
patches = (drv.patches or [ ]) ++ [
(builtins.fetchurl {
name = "nushell.patch";
url = "https://github.com/starship/starship/commit/041a51835371d3738cc7b597b4a506a5dc4341c9.diff";
sha256 = "sha256:0az1jjb24mngzybgv7kavdj1bhfdm0cqnci3gz6zkgpaxqvw7vnz";
})
];
});
2022-12-20 02:45:46 +00:00
} // builtins.mapAttrs
(name: extras:
prev.callPackage
(./. + "/${name}.nix")
({ "${name}-src" = inputs."${name}-src"; } // extras))
{
2023-03-11 17:53:23 +00:00
cinny = { };
2022-12-20 02:45:46 +00:00
dark-mode-notify = {
2023-04-08 19:16:35 +00:00
sdkVersion = "14.*";
2022-12-20 02:45:46 +00:00
};
ia-writer-family = { };
yubiswitch = { };
}