MyNixOS website logo
option

programs.claude-code.outputStyles

Custom output styles for Claude Code. The attribute name becomes the base of the output style filename. The value is either:

  • Inline content as a string
  • A path to a file In both cases, the contents will be written to .claude/output-styles/<name>.md.
Declarations
Type
attribute set of (strings concatenated with "\n" or absolute path)
Default
{ }
Example
{
  concise = ./output-styles/concise.md;
  detailed = ''
    # Detailed Output Style

    Contents will be used verbatim for the detailed output format.
  '';
}