20 lines
497 B
Nix
20 lines
497 B
Nix
{pkgs, ...}: {
|
|
# disable default command not found feature
|
|
programs.command-not-found.enable = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nix-index
|
|
];
|
|
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
# for home-manager, use programs.bash.initExtra instead
|
|
#programs.bash.interactiveShellInit = ''
|
|
# source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
|
|
#'';
|
|
}
|