nix/hosts/darwin/MacBook-Air/system.nix
2025-09-02 23:26:46 +02:00

12 lines
236 B
Nix

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