aicommit2 2.4.4 → 2.4.6
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.
- package/README.md +6 -5
- package/dist/cli.mjs +78 -78
- package/package.json +1 -1
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
|
-
|
|
134
|
-
|
|
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
|
|