15 lines
370 B
Nix
15 lines
370 B
Nix
{ ... }:
|
|
{
|
|
config.dendritic.features.developer-cli.nixosModules = [
|
|
(
|
|
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [ inputs.nix-index-database.nixosModules.default ];
|
|
environment.systemPackages = with pkgs; [ git ];
|
|
|
|
programs.command-not-found.enable = false;
|
|
programs.nix-index-database.comma.enable = true;
|
|
}
|
|
)
|
|
];
|
|
}
|