19 lines
267 B
Nix
19 lines
267 B
Nix
{ self, pkgs, ... }:
|
|
{
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
httpie
|
|
];
|
|
|
|
homebrew = {
|
|
brews = [
|
|
"awscli"
|
|
];
|
|
casks = [
|
|
"slack"
|
|
"postgres-unofficial"
|
|
"omnifocus"
|
|
];
|
|
};
|
|
}
|