- Added `goose-cli` package definition and metadata in `unstable` overlay. - Updated `default.nix` under `aarch64-darwin` to include `goose-cli` in system packages. - Removed commented out packages and cleaned up unused lines for better clarity and maintainability.
12 lines
212 B
Nix
12 lines
212 B
Nix
{ channels, ... }:
|
|
final: prev: {
|
|
inherit (channels.unstable)
|
|
jetbrains-toolbox
|
|
ollama
|
|
open-webui
|
|
claude-code
|
|
aider-chat
|
|
;
|
|
goose-cli = channels.unstable.callPackage ./goose.nix { };
|
|
}
|