Use nix-index for command-not-found

This commit is contained in:
Charlotte Van Petegem 2020-05-08 13:44:37 +02:00
parent 7e1ef25ec6
commit 771ffc489a
2 changed files with 25 additions and 3 deletions

View file

@ -1,8 +1,6 @@
{ ... }:
{
programs.command-not-found.enable = true;
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.autojump ];
programs.zsh = {
@ -15,13 +13,13 @@
path = "\$HOME/.config/zsh/zsh_history";
};
initExtra = ''
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right | source /dev/stdin
'';
oh-my-zsh = {
enable = true;
plugins = [
"autojump"
"command-not-found"
"common-aliases"
"extract"
"history-substring-search"