12 lines
215 B
Nix
12 lines
215 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# iMac-specific configuration
|
|
networking.computerName = "iMac";
|
|
networking.hostName = "iMac";
|
|
|
|
# Import common Darwin configuration
|
|
imports = [
|
|
../system-default.nix
|
|
];
|
|
}
|