Merge pull request #155963 from ncfavier/system-build-type

nixos: use `uniq` in the type of system.build
This commit is contained in:
Robert Hensing
2022-01-21 00:11:25 +01:00
committed by GitHub
@@ -148,7 +148,7 @@ in
system.build = mkOption {
internal = true;
default = {};
type = types.lazyAttrsOf types.unspecified;
type = with types; lazyAttrsOf (uniq unspecified);
description = ''
Attribute set of derivations used to setup the system.
'';