summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2016-09-01 20:44:32 +0200
committerGitHub <noreply@github.com>2016-09-01 20:44:32 +0200
commitd163882770c7ec84c59f0dcc13e5eb28b6281e4b (patch)
tree8e9f8f42907b29a246e5ef923b4d21ab97872e9c /nixos
parentb9b5fcccc5161926b19b82f59bf28ff7a669db00 (diff)
parent488f0d9cb362342081ece69e6ef52cd4adf4fa5a (diff)
downloadnixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar.gz
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar.bz2
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar.lz
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar.xz
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.tar.zst
nixlib-d163882770c7ec84c59f0dcc13e5eb28b6281e4b.zip
Merge pull request #18172 from Profpatsch/startAt-type
systemd-unit-options: startAt can be a list
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/systemd-unit-options.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix
index f2a22e4ada8a..f4892244de47 100644
--- a/nixos/modules/system/boot/systemd-unit-options.nix
+++ b/nixos/modules/system/boot/systemd-unit-options.nix
@@ -309,7 +309,7 @@ in rec {
     };
 
     startAt = mkOption {
-      type = types.str;
+      type = with types; either str (listOf str);
       default = "";
       example = "Sun 14:00:00";
       description = ''