add imac to host

This commit is contained in:
Yan Lin 2025-12-08 17:51:02 +01:00
parent 456c1a7672
commit eb751843e0
3 changed files with 35 additions and 0 deletions

View file

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