NixToSee/modules/software/nix-helper/index.nix
2024-09-21 17:10:45 +02:00

11 lines
311 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
'';
}