nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer adf8d0d860 fix(macos): enable dock autohide by default
- Changed `system.defaults.dock.autohide` to `true` for better user experience.
- Aligns with macOS usability improvements and recent configuration updates.
2025-12-13 01:15:18 +01:00

62 lines
915 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;
};
build.enable = true;
};
environment.systemPackages = with pkgs; [
azure-cli
kubectl
kubectx
k9s
attic-client
imagemagick
gh
libvirt
dnsmasq
virt-manager
qemu
claude-code
nodejs
goose-cli
aider-chat
fabric-ai
gemini-cli
opencode
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}