13 lines
257 B
Nix
13 lines
257 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# MacBook Air-specific configuration
|
|
networking.computerName = "MacBook-Air";
|
|
networking.hostName = "MacBook-Air";
|
|
|
|
# Import common Darwin configuration
|
|
imports = [
|
|
../../../system
|
|
../../../system/darwin
|
|
];
|
|
}
|