nix-config/modules/nix-index.nix

13 lines
233 B
Nix
Raw Normal View History

2025-07-25 22:31:07 +01:00
{ inputs, ... }:
{
flake.modules.homeManager.base = {
imports = [ inputs.nix-index-database.homeModules.nix-index ];
programs = {
nix-index.enable = true;
nix-index-database.comma.enable = true;
};
};
}