nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer 96e09ef294 Enable Alacritty and iTerm2 in the configuration.
This commit adds Alacritty and iTerm2 to the system configuration for aarch64-darwin. These changes enhance terminal options, improving flexibility and usability for developers.
2024-12-13 09:20:29 +01:00

45 lines
631 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; [
iterm2
# azure-cli
kubectl
kubectx
k9s
attic-client
ollama
];
users.users.harald.shell = pkgs.fish;
system.stateVersion = 4;
}