nixcfg/overlays/unstable/default.nix
Harald Hoyer 9f6e703c9e feat(goose-cli): add package and update configurations
- 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.
2025-03-29 10:26:42 +01:00

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 { };
}