Files
nix-macos/hosts/mac14.nix
Niccolo Borgioli a4d815202e Refactor SSH config to use host-specific keys and disable nix
- 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
2025-07-02 00:11:31 +02:00

28 lines
426 B
Nix

{
username = "cupcakearmy";
hostName = "mac14";
platform = "aarch64-darwin";
sshKey = "legba";
extras = {
casks = [
"surfshark"
"raspberry-pi-imager"
"visual-studio-code"
"signal"
"discord"
"vlc"
"handbrake"
"daisydisk"
"blender"
"bambu-studio"
];
pkgs =
pkgs: with pkgs; [
biome
infisical
ffmpeg
];
};
}