Getting code prepared for arrival of the new Mac system Adding the basic casks that I need
12 lines
121 B
Nix
12 lines
121 B
Nix
{ ... }:
|
|
{
|
|
homebrews = {
|
|
enable = true;
|
|
casks = [
|
|
"firefox"
|
|
"onlyoffice"
|
|
"zed"
|
|
];
|
|
};
|
|
}
|