nix-dotfiles/nix-darwin/hosts/Sloanes-MacBook-Air/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

21 lines
423 B
Nix

{ ... }:
{
system.defaults = {
dock.persistent-apps = [
"/Applications/Firefox.app"
"/Applications/Things3.app"
"/System/Applications/Mail.app"
"/Applications/Fantastical.app"
"/System/Applications/Messages.app"
"/Applications/Discord.app"
"/Applications/Obsidian.app"
"/Applications/Ghostty.app"
];
};
homebrew = {
casks = [
"discord"
];
};
}