- 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.
52 lines
732 B
Nix
52 lines
732 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
with lib.metacfg;
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
brews = [
|
|
"libusb"
|
|
"mas"
|
|
];
|
|
masApps = { };
|
|
onActivation = {
|
|
cleanup = "zap";
|
|
autoUpdate = true;
|
|
upgrade = true;
|
|
};
|
|
};
|
|
|
|
metacfg = {
|
|
system.homebrew = enabled;
|
|
suites = {
|
|
common = enabled;
|
|
};
|
|
tools = {
|
|
direnv.enable = true;
|
|
alacritty.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
kubectl
|
|
kubectx
|
|
k9s
|
|
attic-client
|
|
ollama
|
|
imagemagick
|
|
gh
|
|
libvirt
|
|
dnsmasq
|
|
virt-manager
|
|
qemu
|
|
claude-code
|
|
nodejs
|
|
goose-cli
|
|
aider-chat
|
|
];
|
|
|
|
users.users.harald.shell = pkgs.fish;
|
|
|
|
system.stateVersion = 4;
|
|
}
|