13 lines
233 B
Nix
13 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;
|
||
|
};
|
||
|
};
|
||
|
}
|