nix-dotfiles/nix-darwin/hosts/tid27880sperrau/default.nix
sloane be3150c1dd
updates for work machine, uses older version of fish
there is some sort of weird incompatibility with newer versions of fish,
tmux, vim-tmux-navigator, and my work machine. downgrading fish fixed
the issue.
2025-02-18 09:31:55 -05:00

23 lines
495 B
Nix

{ ... }: {
system.defaults = {
dock.persistent-apps = [
"/Applications/Firefox.app"
"/Applications/Things3.app"
"/System/Applications/Mail.app"
"/Applications/Fantastical.app"
"/Applications/Microsoft Outlook.app"
"/Applications/Microsoft Teams.app"
"/Applications/Slack.app"
"/Applications/Obsidian.app"
"/Applications/Ghostty.app"
];
};
homebrew = {
casks = [
"discord"
"postico"
"slack"
];
};
}