nixcfg/systems/aarch64-darwin/rialo/default.nix
2026-03-27 11:28:19 +01:00

52 lines
765 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;
};
build.enable = true;
};
environment.systemPackages = with pkgs; [
attic-client
claude-code
dnsmasq
gh
imagemagick
libvirt
nodejs
qemu
virt-manager
sox
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}