This file is indexed.

/usr/share/lyx/layouts/theorems-chap.module is in lyx-common 2.2.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#\DeclareLyXModule{Theorems (Numbered by Chapter)}
#DescriptionBegin
#Numbers theorems and the like by chapter (i.e., the counter is reset at
#each chapter start). Use this module only with document classes that provide a chapter
#environment.
#DescriptionEnd
#Requires: theorems-std | theorems-ams
#Excludes: theorems-sec
#Category: theorems

# Author: Richard Heck <rgheck@comcast.net>

Format 60

Counter theorem
	Within         chapter
End

Style Theorem
	Preamble
		\theoremstyle{plain}
		\ifx\thechapter\undefined
			\newtheorem{thm}{\protect\theoremname}
		\else
			\newtheorem{thm}{\protect\theoremname}[chapter]
		\fi
	EndPreamble
End