dotfiles/.config/nix-darwin/hosts/Sloanes-MacBook-Air/default.nix
2024-04-12 11:06:19 -04:00

28 lines
460 B
Nix

{ pkgs, ... }:
{
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
environment.systemPackages = with pkgs; [
rustup
];
homebrew = {
brews = [
"flyctl"
];
taps = [
"homebrew/cask-versions"
];
casks = [
"discord"
"postgres-unofficial"
"postico"
"syncthing"
"tailscale"
"obs"
"superduper"
"ableton-live-suite11"
];
};
}