diff --git a/README.md b/README.md
index ecea7508e96adb80cf5cdb1e04e826de902ccc28..0dbefd7dd3f8c700f3a317ab811338c8ff7c055f 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ In the `devenv.nix` file, you must then add bob under packages.
 
 ```nix
 packages = [
-   inputs.bob.defaultPackage."${builtins.currentSystem}"
+   inputs.bob.packages."${builtins.currentSystem}".default
 ];
 ```
 
diff --git a/flake.nix b/flake.nix
index 37f0b620177b804958d8951e8735346e053c0493..ad6b8519f8f7d6fcf600cd6780393fbc7c44fa59 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,6 +8,7 @@
     flake-root.url = "github:srid/flake-root";
     treefmt-nix.url = "github:numtide/treefmt-nix";
     versionsTool.url = "git+https://gitlab.schukai.com/oss/utilities/version.git";
+    git-commit.url = "git+https://gitlab.schukai.com/schukai/entwicklung/nix-flakes#git-commit";
   };
 
   nixConfig = {
@@ -26,6 +27,7 @@
         inputs.devenv.flakeModule
         inputs.flake-root.flakeModule
         inputs.treefmt-nix.flakeModule
+        inputs.git-commit.flakeModule
       ];
 
       systems = (import ./project.nix).supportedSystems;