nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer ba70ee7f59 feat(aarch64-darwin): add azure-cli to system packages
- Included `azure-cli` in `environment.systemPackages` for aarch64-darwin.
- Provides support for managing Azure resources directly from the system.
2025-07-29 15:56:52 +02:00

53 lines
774 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
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}