mirror of
https://github.com/danth/stylix
synced 2024-11-22 12:13:08 +00:00
27 lines
691 B
XML
27 lines
691 B
XML
<para>
|
|
The following options can only be set in a Home Manager configuration.
|
|
</para>
|
|
<para>
|
|
If you combined Home Manager with your NixOS configuration, write these
|
|
options within a Home Manager section, either for all users:
|
|
|
|
<programlisting language="nix"><![CDATA[
|
|
home-manager.sharedModules = [{
|
|
stylix.targets.xyz.enable = false;
|
|
}];
|
|
]]></programlisting>
|
|
|
|
Or for a specific user:
|
|
|
|
<programlisting language="nix"><![CDATA[
|
|
home-manager.users.«name» = {
|
|
stylix.targets.xyz.enable = false;
|
|
};
|
|
]]></programlisting>
|
|
|
|
<link
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xlink:href="https://danth.github.io/stylix#multi-userconfigurations">
|
|
Read more about per-user themes.
|
|
</link>
|
|
</para>
|