Reputation: 3613
There is a default list of system packages for Nixos:
How can I exclude some of predefined packages from environment.systemPackages
(for example, texinfo
)?
Upvotes: 1
Views: 1033
Reputation: 1289
The NixOS module system does not currently support this. You can use mkForce
to override all definitions of an option value at the default priority level, but that will get rid of all predefined packages, which is not what you want.
Upvotes: 2