nixcfg/systems/aarch64-darwin/rialo/default.nix
Harald Hoyer 301d0f7807 refactor(rialo): remove unused packages from systemPackages
- Removed `dnsmasq`, `libvirt`, and `virt-manager` for cleanup.
2026-04-07 09:53:50 +02:00

50 lines
754 B
Nix

{ lib, pkgs, ... }:
with lib.metacfg;
{
imports = [
# ./../../nixbuild.nix
];
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;
wezterm.enable = false;
};
build.enable = true;
};
environment.systemPackages = with pkgs; [
attic-client
claude-code
gh
imagemagick
nodejs
qemu
sox
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}