nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer 64ed5ca881 feat(nix): enable WezTerm support on Darwin systems
- Added a module to configure WezTerm with an enable option and system package inclusion.
- Enabled WezTerm for aarch64-darwin systems and updated base system packages.
- Improves terminal experience by integrating WezTerm into the Darwin configurations.
2026-02-13 19:44:31 +01:00

54 lines
827 B
Nix

{ lib, pkgs, ... }:
with lib.metacfg;
{
system.defaults.dock.autohide = true;
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 = true;
};
build.enable = true;
};
environment.systemPackages = with pkgs; [
attic-client
claude-code
dnsmasq
gh
imagemagick
libvirt
nodejs
qemu
virt-manager
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}