Merge pull request #18172 from Profpatsch/startAt-type

systemd-unit-options: startAt can be a list

Changed files
+1 -1
nixos
modules
+1 -1
nixos/modules/system/boot/systemd-unit-options.nix
···
};
startAt = mkOption {
-
type = types.str;
+
type = with types; either str (listOf str);
default = "";
example = "Sun 14:00:00";
description = ''