mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
nixos/modules: Replace all nested types.either's with types.oneOf's
This commit is contained in:
parent
9a44f44d4c
commit
88bb9fa403
12 changed files with 13 additions and 13 deletions
|
@ -41,7 +41,7 @@ in
|
|||
};
|
||||
|
||||
config = mkOption {
|
||||
type = with types; attrsOf (either (either str (either int bool)) (listOf str));
|
||||
type = with types; attrsOf (oneOf [ str int bool (listOf str) ]);
|
||||
default = {};
|
||||
description = ''
|
||||
automysqlbackup configuration. Refer to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue