20 lines
260 B
Nix
20 lines
260 B
Nix
{ pkgs, ...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
brews = [
|
|
"imagemagick"
|
|
"trippy"
|
|
];
|
|
|
|
casks = [
|
|
"amethyst"
|
|
"firefox"
|
|
"logseq"
|
|
"protonmail-bridge"
|
|
"protonvpn"
|
|
"thunderbird"
|
|
"vlc"
|
|
];
|
|
};
|
|
}
|