nix-config/modules/features/developer-cli.nix
2026-04-15 18:26:05 -04:00

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;
}
)
];
}