dotfiles/.config/nix/modules/apps.nix
2023-12-15 08:39:12 +01:00

30 lines
433 B
Nix

{ pkgs, ...}: {
homebrew = {
enable = true;
onActivation.autoUpdate = false;
brews = [
"curl"
"imagemagick"
"trippy"
"wget"
];
casks = [
"amethyst"
"anki"
"caffeine"
"firefox"
"logseq"
"iglance"
"karabiner-elements"
"nextcloud"
"protonmail-bridge"
"protonvpn"
"temurin17"
"thunderbird"
"vlc"
];
};
}