diff --git a/misc/programs.sqlite b/misc/programs.sqlite deleted file mode 100644 index eaebc1e..0000000 Binary files a/misc/programs.sqlite and /dev/null differ diff --git a/profiles/workspace/autoRun.nix b/profiles/workspace/autoRun.nix index e17caf8..65631d1 100644 --- a/profiles/workspace/autoRun.nix +++ b/profiles/workspace/autoRun.nix @@ -1,11 +1,6 @@ { config, pkgs, lib, ... }: { home-manager.users.balsoft = { - - programs.command-not-found = { - enable = true; - dbPath = ../../misc/programs.sqlite; - }; - + programs.nix-index.enable = true; }; environment.sessionVariables = { diff --git a/profiles/workspace/zsh.nix b/profiles/workspace/zsh.nix index 8bc76b7..6e5aa50 100755 --- a/profiles/workspace/zsh.nix +++ b/profiles/workspace/zsh.nix @@ -8,7 +8,7 @@ home-manager.users.balsoft.programs.zsh = { enable = true; - enableAutosuggestions = true; + # enableAutosuggestions = true; enableCompletion = true; oh-my-zsh = { enable = true; @@ -121,10 +121,6 @@ function is() { nix search "self#$1" } function rs() { repl self } - source ${pkgs.nix-zsh-completions}/share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh - fpath=(${pkgs.nix-zsh-completions}/share/zsh/site-functions $fpath) - autoload -U compinit && compinit - PS1="$PS1 $ " '';