systems/profiles/desktop.darwin.nix

23 lines
344 B
Nix

{ ... }:
{
homebrew = {
enable = true;
casks = [
"1password"
"1password-cli"
"adguard"
];
};
programs.zsh = {
enable = true;
enableGlobalCompInit = false;
shellInit = ''
if [ -e "/opt/homebrew/bin/brew" ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
'';
};
}