diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2018-01-01 23:03:11 +0100 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2018-01-01 23:03:11 +0100 |
| commit | 403e43274698e6583403d4327a1a45ffa66f45f9 (patch) | |
| tree | 22e56f91c0f1164981f595ad4f6cbf7353a8ceef /modules/launchd | |
| parent | 7aadb77aaa9aad68b5d196f492619eb23a9933f9 (diff) | |
launchd: fix type of inetdCompatibility
Diffstat (limited to 'modules/launchd')
| -rw-r--r-- | modules/launchd/launchd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launchd/launchd.nix b/modules/launchd/launchd.nix index 30162e8..d8ae175 100644 --- a/modules/launchd/launchd.nix +++ b/modules/launchd/launchd.nix @@ -60,7 +60,7 @@ with lib; type = types.nullOr (types.submodule { options = { Wait = mkOption { - type = types.nullOr types.str; + type = types.nullOr (types.either types.bool types.str); default = null; description = '' This flag corresponds to the "wait" or "nowait" option of inetd. If true, then the listening |
