nix/hosts/darwin/MacBook-Air/default.nix
2025-08-29 21:59:11 +02:00

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
];
}