Add nix-index-database and comma.

This commit is contained in:
CronyAkatsuki 2025-02-22 23:35:37 +01:00
parent c49157f889
commit 294ea37058
3 changed files with 40 additions and 1 deletions

View file

@ -3,7 +3,10 @@
inputs,
...
}: {
imports = [inputs.nvf.homeManagerModules.default];
imports = [
inputs.nvf.homeManagerModules.default
inputs.nix-index-database.hmModules.nix-index
];
# Some info
home.username = "crony";
@ -87,6 +90,15 @@
];
};
# Enable nix-index
programs.nix-index = {
enable = true;
enableZshIntegration = true;
};
# Enable comma
programs.nix-index-database.comma.enable = true;
# Enable git
programs.git = {
enable = true;