dotfiles/.config/nix-darwin/hosts/tid27880sperrau/default.nix

19 lines
249 B
Nix
Raw Normal View History

2024-05-09 10:35:29 -04:00
{ self, pkgs, ... }:
{
nixpkgs.hostPlatform = "aarch64-darwin";
2024-05-21 12:19:42 -04:00
environment.systemPackages = with pkgs; [
httpie
];
2024-05-09 10:35:29 -04:00
homebrew = {
2024-05-21 12:19:42 -04:00
brews = [
"awscli"
];
2024-05-09 10:35:29 -04:00
casks = [
"slack"
2024-06-06 09:12:06 -04:00
"postgres-unofficial"
2024-05-09 10:35:29 -04:00
];
};
}