Xorg: Difference between revisions
imported>Equirosa m Add syntax highlighting to code snippets |
imported>AmnesiaAmesia Added information on how to exclude packages with and example excluding xtem |
||
Line 57: | Line 57: | ||
To get more information see <code>man configuration.nix</code>. | To get more information see <code>man configuration.nix</code>. | ||
== Exclude packages == | |||
Some packages like xterm are included when enabling Xorg. To exclude packages, edit the <code>configuration.nix</code> as the example, but be sure to have another terminal enabled in your build before doing this. | |||
<syntaxhighlight lang="nix"> | |||
services.xserver.excludePackages = with pkgs; [ | |||
xterm | |||
]; | |||
</syntaxhighlight> | |||
== See also == | == See also == |