dotfiles/.config/nix/modules/apps.nix
2023-12-27 10:44:52 +01:00

47 lines
780 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"
];
start_service = true;
}
"imagemagick"
"libvterm"
"trippy"
"wget"
];
taps = [
"d12frosted/emacs-plus"
];
casks = [
"amethyst"
"anki"
"caffeine"
"docker"
"firefox"
"logseq"
"iglance"
"karabiner-elements"
"nextcloud"
"protonmail-bridge"
"protonvpn"
"temurin17"
"thunderbird"
"vlc"
];
};
}