nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer cb53d49ec3 feat(m4): add opencode to default packages
- Included `opencode` to the default package list for `aarch64-darwin`.
- Ensures availability of the `opencode` tool for users by default.
2025-09-11 09:08:47 +02:00

55 lines
802 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; [
azure-cli
kubectl
kubectx
k9s
attic-client
imagemagick
gh
libvirt
dnsmasq
virt-manager
qemu
claude-code
nodejs
goose-cli
aider-chat
fabric-ai
gemini-cli
opencode
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}