Daily updated, multi-channel, multi-platform prebuilt nix-index
indices.
Channels | All platform indices | Host platform only |
---|---|---|
master |
releases/master |
standalone/master |
nixpkgs-unstable |
releases/nixpkgs-unstable |
standalone/nixpkgs-unstable |
This installs the index to ~/.cache/nix-index/files
.
nix run github:usertam/nix-index-db/standalone/master
To install nixpkgs-unstable
standalone using flakes in home-manager:
{
inputs = {
nix-index-db.url = "github:usertam/nix-index-db/standalone/nixpkgs-unstable";
nix-index-db.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: {
homeConfigurations."user" = home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = { inherit inputs; };
modules = [
({ pkgs, inputs, ... }: {
home.file.".cache/nix-index/files" = {
source = inputs.nix-index-db.packages.${pkgs.system}.default;
};
})
];
};
};
}