3.0.0 (2025-04-07)
Follow the version guide in FAQ: When should I upgrade?
BREAKING CHANGES
- template flake requires new nix-index db import
comma and nix-index db is a great default and highlights one of the main benefits of using nix
run any package from nixpkgs without installing on your system
add the below to your flake.nix
inputs
# Nix-index-database - for comma and command-not-found
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
then simply import the module in configuration.nix
home-manager
home-manager = {
# other options...
users."hydenix" =
{ ... }:
{
imports = [
hydenix-inputs.lib.homeModules
./home.nix
# Nix-index-database - for comma and command-not-found
hydenix-inputs.nix-index-database.hmModules.nix-index
];
};
};
rebuild and try it out with , globe -snc2 -g10