dotfiles/.config/nix/modules/apps.nix
2023-12-01 08:06:48 +01:00

19 lines
248 B
Nix

{ pkgs, ...}: {
homebrew = {
enable = true;
brews = [
"imagemagick"
"trippy"
];
casks = [
"amethyst"
"firefox"
"logseq"
"thunderbird"
"protonvpn"
"protonmail-bridge"
];
};
}