···65 # This is set here rather than up there so that changing it would
66 # not rebuild the manual
67 system.nixos.label = mkDefault (maybeEnv "NIXOS_LABEL"
68- (concatStringsSep "-" (sort (x: y: x < y) cfg.tags)
69- + "-" + maybeEnv "NIXOS_LABEL_VERSION" cfg.version));
70 };
7172}
···65 # This is set here rather than up there so that changing it would
66 # not rebuild the manual
67 system.nixos.label = mkDefault (maybeEnv "NIXOS_LABEL"
68+ (concatStringsSep "-" ((sort (x: y: x < y) cfg.tags)
69+ ++ [ (maybeEnv "NIXOS_LABEL_VERSION" cfg.version) ])));
70 };
7172}