Rearrange the config structure

This commit is contained in:
Yan Lin 2025-08-28 20:25:28 +02:00
parent 61db648993
commit 4689a4f69c
10 changed files with 114 additions and 33 deletions

View file

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