mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 06:21:30 +03:00
docs: improve docs for groups
This commit is contained in:
parent
3b42e5a8e4
commit
9f507c9341
@ -10,6 +10,7 @@ in {
|
||||
spagoYamlFile = l.mkOption {
|
||||
type = t.path;
|
||||
default = "${config.mkDerivation.src}/spago.yaml";
|
||||
defaultText = "\${config.mkDerivation.src}/spago.yaml";
|
||||
};
|
||||
|
||||
sources = l.mkOption {
|
||||
|
@ -27,9 +27,13 @@ in {
|
||||
overrideAll = lib.mkOption {
|
||||
type = t.deferredModule;
|
||||
description = ''
|
||||
Common configuration for all packages in all groups
|
||||
Common overrides for all packages.
|
||||
Gets applied on all groups.
|
||||
'';
|
||||
default = {};
|
||||
example = {
|
||||
mkDerivation.doCheck = false;
|
||||
};
|
||||
};
|
||||
overrides = lib.mkOption {
|
||||
type = t.lazyAttrsOf (t.deferredModuleWith {
|
||||
@ -38,7 +42,8 @@ in {
|
||||
];
|
||||
});
|
||||
description = ''
|
||||
Holds overrides for all packages in all groups
|
||||
Overrides for specific package names.
|
||||
Gets applied on all groups.
|
||||
'';
|
||||
default = {};
|
||||
example = {
|
||||
|
Loading…
Reference in New Issue
Block a user