30 lines
433 B
Nix
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"
|
|
];
|
|
};
|
|
}
|