Files
nixos/darwin/work/default.nix
T
2023-08-17 13:54:50 -05:00

17 lines
156 B
Nix

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