8 lines
184 B
Nix
Executable file
8 lines
184 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = [ pkgs.nix-index ];
|
|
programs.bash.interactiveShellInit = ''
|
|
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
|
|
'';
|
|
}
|