15 lines
376 B
Nix
Executable file
15 lines
376 B
Nix
Executable file
{...}: {
|
|
/*
|
|
environment.systemPackages = [ pkgs.nix-index ];
|
|
programs.bash.interactiveShellInit = ''
|
|
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
|
|
'';
|
|
*/
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
# I don't use zsh or fish (yet)
|
|
enableZshIntegration = false;
|
|
enableFishIntegration = false;
|
|
};
|
|
}
|