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