dotfiles/.config/nix-darwin/hosts/tid27880sperrau/default.nix
2024-06-09 08:37:36 -04:00

19 lines
267 B
Nix

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