Rename macbook-air to mba

This commit is contained in:
Yan Lin 2025-09-03 22:34:44 +02:00
parent 80e59d2755
commit fc0e5e8c97
4 changed files with 12 additions and 12 deletions

11
hosts/darwin/mba/home.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
imports = [
../home-default.nix
];
# MacBook Air-specific home configuration
# Example: Laptop-specific tools, power management, etc.
}

View file

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