15 lines
360 B
Nix
Executable file
15 lines
360 B
Nix
Executable file
{ config, ... }:
|
|
|
|
{
|
|
/* 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;
|
|
};
|
|
}
|