NixToSee/modules/software/nix-helper/index.nix
2024-10-06 02:44:35 +02:00

11 lines
296 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
nix-index
];
programs.command-not-found.enable = false;
# for home-manager, use programs.bash.initExtra instead
programs.bash.interactiveShellInit = ''
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
'';
}