Files
nixos/darwin/work/default.nix
T

17 lines
156 B
Nix
Raw Normal View History

2022-09-06 11:41:09 -05:00
{ pkgs, ... }:
{
2023-08-14 09:52:44 -05:00
homebrew = {
enable = true;
brews = [
"packer"
];
casks = [
"gnucash"
"onlyoffice"
"postman"
"vagrant"
];
};
2022-09-06 11:41:09 -05:00
}