mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2025-09-05 10:20:40 +00:00
34 lines
506 B
Nix
34 lines
506 B
Nix
{
|
|
username = "nicco";
|
|
hostName = "ordio";
|
|
platform = "aarch64-darwin";
|
|
sshKey = "ordio";
|
|
|
|
extras = {
|
|
casks = [
|
|
"tableplus"
|
|
"http-toolkit"
|
|
"phpstorm"
|
|
"notion"
|
|
];
|
|
pkgs =
|
|
pkgs: with pkgs; [
|
|
mkcert
|
|
dnsmasq
|
|
awscli2
|
|
mysql84
|
|
cocoapods
|
|
xcodes
|
|
|
|
# For projects
|
|
pixman
|
|
pkg-config
|
|
pango
|
|
libpng
|
|
giflib
|
|
librsvg
|
|
python313Packages.setuptools
|
|
];
|
|
};
|
|
}
|