dotfiles/.config/nix-darwin/hosts/Sloanes-MacBook-Air/default.nix

20 lines
313 B
Nix
Raw Normal View History

2024-03-29 20:49:45 -04:00
{ pkgs, ... }:
{
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
environment.systemPackages = with pkgs; [
rustup
];
homebrew = {
casks = [
"discord"
"postgres-unofficial"
"postico"
"syncthing"
"tailscale"
];
};
}