mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 08:03:44 +00:00
nix-darwin's karabiner module is broken with 15.7+ - the karabiner_grabber and karabiner_observer binaries no longer exist, causing system daemons to fail with exit code 78. Moved karabiner-elements to homebrew cask which handles its own service registration correctly. Also adds macfuse cask and gromgit/fuse/sshfs-mac brew, updates agentcomputer-cli flake input, and tweaks zsh alias.
33 lines
499 B
Nix
33 lines
499 B
Nix
{...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = false;
|
|
upgrade = false;
|
|
cleanup = "uninstall";
|
|
};
|
|
|
|
taps = [
|
|
"humanlayer/humanlayer"
|
|
"gromgit/fuse"
|
|
];
|
|
|
|
brews = [
|
|
"bitwarden-cli"
|
|
"gromgit/fuse/sshfs-mac"
|
|
];
|
|
|
|
casks = [
|
|
"cap"
|
|
"codex"
|
|
"karabiner-elements"
|
|
"macfuse"
|
|
"rectangle"
|
|
"raycast"
|
|
"riptide-beta"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|