nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer ecee6bd93a feat(m4): disable dock autohide on aarch64-darwin
- Set `system.defaults.dock.autohide` to `false` in `m4/default.nix`.
- Ensures the dock remains visible by default for better user accessibility.
2025-10-02 08:38:00 +02:00

57 lines
844 B
Nix

{ lib, pkgs, ... }:
with lib.metacfg;
{
system.defaults.dock.autohide = false;
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; [
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;
}