nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer f464e19fec fix: include fabric-ai in aarch64-darwin CLI apps
- Added fabric-ai to the list of installed CLI applications for aarch64-darwin.
- Ensures consistency across tools available for users.
2025-06-01 08:35:39 +02:00

52 lines
760 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
imagemagick
gh
libvirt
dnsmasq
virt-manager
qemu
claude-code
nodejs
goose-cli
aider-chat
fabric-ai
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}