Add imac host

This commit is contained in:
Yan Lin 2025-10-13 17:07:15 +02:00
parent 3c5c317389
commit 6567787880
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
# MacBook Air-specific configuration
networking.computerName = "imac";
networking.hostName = "imac";
# Import common Darwin configuration
imports = [
../system-default.nix
];
}