dotfiles/.config/nix-darwin/hosts/tid27880sperrau/default.nix
2024-05-21 12:19:42 -04:00

17 lines
221 B
Nix

{ self, pkgs, ... }:
{
nixpkgs.hostPlatform = "aarch64-darwin";
environment.systemPackages = with pkgs; [
httpie
];
homebrew = {
brews = [
"awscli"
];
casks = [
"slack"
];
};
}