15 lines
211 B
Nix
15 lines
211 B
Nix
|
{pkgs, ...}: {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
ffmpeg
|
||
|
ripgrep
|
||
|
reaper
|
||
|
];
|
||
|
shared.darwin = {
|
||
|
macAppStoreApps = [
|
||
|
"final-cut-pro"
|
||
|
"logic-pro"
|
||
|
"motion"
|
||
|
];
|
||
|
};
|
||
|
}
|