48 lines
805 B
Nix
48 lines
805 B
Nix
{ pkgs, ...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation.autoUpdate = false;
|
|
|
|
brews = [
|
|
"cmake"
|
|
"curl"
|
|
{
|
|
name = "emacs-plus";
|
|
args = [
|
|
" --with-no-frame-refocus"
|
|
"--with-native-comp"
|
|
"--with-imagemagick"
|
|
"--with-savchenkovaleriy-big-sur-icon"
|
|
];
|
|
}
|
|
"imagemagick"
|
|
"libvterm"
|
|
"trippy"
|
|
"wget"
|
|
];
|
|
|
|
taps = [
|
|
"d12frosted/emacs-plus"
|
|
"homebrew/cask-fonts"
|
|
];
|
|
|
|
casks = [
|
|
"amethyst"
|
|
"anki"
|
|
"caffeine"
|
|
"docker"
|
|
"firefox"
|
|
"logseq"
|
|
"iglance"
|
|
"karabiner-elements"
|
|
"nextcloud"
|
|
"protonmail-bridge"
|
|
"protonvpn"
|
|
"temurin17"
|
|
"thunderbird"
|
|
"font-iosevka-comfy"
|
|
"vlc"
|
|
];
|
|
};
|
|
}
|