aicommit2 2.4.5 → 2.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +6 -5
  2. package/dist/cli.mjs +77 -79
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -129,14 +129,15 @@ Add aicommit2 to your flake inputs:
129
129
  };
130
130
  # Rest of your flake.nix file
131
131
  }
132
+ ```
132
133
 
133
- # Somewhere where you define your packages
134
- {pkgs, inputs, ...}:{
135
-
134
+ ```nix
135
+ # Somewhere where you define your packages
136
+ {pkgs, inputs, ...}:{
136
137
  environment.systemPackages = [inputs.aicommit2.packages.x86_64-linux.default];
137
138
  # Or home packages
138
139
  home.packages = [inputs.aicommit2.packages.x86_64-linux.default];
139
- }
140
+ }
140
141
  ```
141
142
 
142
143
  ##### Development Environment
@@ -165,7 +166,7 @@ your `devcontainer.json` file:
165
166
 
166
167
  ```json
167
168
  "features": {
168
- "ghcr.io/kvokka/features/aicommit2:1": {}
169
+ "ghcr.io/kvokka/features/aicommit2:1": {}
169
170
  }
170
171
  ```
171
172