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.
23 lines
495 B
Nix
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"
|
|
];
|
|
};
|
|
}
|