16 lines
261 B
Nix
16 lines
261 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.comma =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ inputs.nix-index-database.homeModules.nix-index ];
|
|
|
|
programs.nix-index-database.comma.enable = true;
|
|
};
|
|
}
|