Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

macOS 模块

modules/macos/ 目录包含 macOS 专用的配置模块。

模块结构

# modules/macos/default.nix
{ pkgs, ... }:
{
  imports = [
    ./home-manager.nix        # Home Manager 配置
    ./homebrew.nix            # Homebrew 包管理
  ];
  environment.systemPackages = with pkgs; [ zsh ];
}

注意:modules/macos/packages.nix 存在但未被 default.nix 导入。其中的包定义已通过其他方式整合到配置中。

子模块