- 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.
54 lines
827 B
Nix
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;
|
|
}
|