12 lines
233 B
Nix
12 lines
233 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
flake.modules.homeManager.base = {
|
|
imports = [ inputs.nix-index-database.homeModules.nix-index ];
|
|
|
|
programs = {
|
|
nix-index.enable = true;
|
|
nix-index-database.comma.enable = true;
|
|
};
|
|
};
|
|
}
|