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

29 lines
471 B
Nix
Raw Permalink 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
2024-04-24 10:11:46 -04:00
stripe-cli
2024-03-29 20:49:45 -04:00
];
homebrew = {
2024-04-12 09:23:17 -04:00
brews = [
"flyctl"
];
2024-03-29 20:49:45 -04:00
casks = [
"discord"
"postgres-unofficial"
"postico"
"syncthing"
"tailscale"
2024-04-12 09:23:17 -04:00
"obs"
"superduper"
2024-05-08 14:04:28 -04:00
"ableton-live-suite@11"
2024-04-30 08:43:41 -04:00
"vuescan"
2024-06-09 08:37:36 -04:00
"fujitsu-scansnap-home"
2024-03-29 20:49:45 -04:00
];
};
}