github richen604/hydenix v3.0.0

latest releases: v4.10.0, v4.9.0, v4.8.0...
5 months ago

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

Bug Fixes

  • init cava for theming (663433b)
  • reverted lib.mkdefault, causes too many issues (7608811)

Features

  • added nix-index db for full comma support (12f4354)
  • demo and iso vm, state version addition (aeb97a5)

Don't miss a new hydenix release

NewReleases is sending notifications on new releases.