Add more descriptions

This commit is contained in:
Robert Hensing 2021-11-21 14:30:12 +01:00
parent 0405415b90
commit 06ebe54ddb
4 changed files with 26 additions and 0 deletions

View file

@ -15,6 +15,10 @@ in
packages = mkOption {
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
default = { };
description = ''
Per system an attribute set of packages.
nix build .#<name> will build packages.<system>.<name>.
'';
};
};
};
@ -38,6 +42,10 @@ in
packages = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
description = ''
An attribute set of packages to be built by nix build .#<name>.
nix build .#<name> will build packages.<name>.
'';
};
};
};