MyNixOS website logo
option

programs.macos-terminal.profiles

Configuration settings for profiles within the Terminal.app application.

Each attribute name is used as the name of the profile, and the value defines the plist-compatible settings for that profile.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
''
  {
    Basic.settings = {
      FontAntialias = true;
      ShowActiveProcessInTitle = true;
    };
  
    "Red Sands".settings = {
      BackgroundAlphaInactive = 0.5;
      CommandString = "ssh compute";
    };
  }
''