dotfiles/.config/nix/modules/apps.nix
Tobias Ostner 39918db3ff Add vlc
2023-12-02 10:29:21 +01:00

20 lines
260 B
Nix

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