Files
nixos/darwin/work/default.nix
T
2023-08-14 09:52:44 -05:00

18 lines
175 B
Nix

{ pkgs, ... }:
{
homebrew = {
enable = true;
brews = [
"packer"
];
casks = [
"gnucash"
"onlyoffice"
"postman"
"vagrant"
"vmware-fusion"
];
};
}