mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2025-09-05 18:30:39 +00:00
- Convert SSH config to template with @SSH_KEY@ placeholder - Add sshKey field to host configurations (mac14, ordio) - Update home.nix to dynamically substitute SSH keys per host - Change docker cask to docker-desktop in cask.nix - Add development packages to ordio host (mkcert, dnsmasq, etc.) - Disable nix in darwin.nix configuration
15 lines
184 B
Nix
15 lines
184 B
Nix
{
|
|
username = "nicco";
|
|
hostName = "ordio";
|
|
platform = "aarch64-darwin";
|
|
sshKey = "ordio";
|
|
|
|
extras = {
|
|
casks = [
|
|
];
|
|
pkgs =
|
|
pkgs: with pkgs; [
|
|
];
|
|
};
|
|
}
|