Committed after home build
diff --git a/users/minion/home.nix b/users/minion/home.nix
index 478413a..4cbd40f 100644
--- a/users/minion/home.nix
+++ b/users/minion/home.nix
@@ -75,12 +75,14 @@
           local p='/nix/store/ycclzpk99snlrk8sg9n4j8pm1927gavw-command-not-found/bin/command-not-found';
           if [ -x "$p" ] && [ -f '/nix/var/nix/profiles/per-user/root/channels/nixos/programs.sqlite' ]; then
                , "$@";
-      #        "$p" "$@";
-      #        if [ $? = 126 ]; then
-      #            "$@";
-      #        else
-      #            return 127;
-      #        fi;
+              echo "$p"
+              echo "$@"
+              "$p" "$@";
+              if [ $? = 126 ]; then
+                  "$@";
+              else
+                  return 127;
+              fi;
           else
               echo "$1: command not found" 1>&2;
               return 127;