mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #113203 from leonardp/ceph-fix
nixos/ceph: fix ceph.client.extraOptions type
This commit is contained in:
commit
6402bee9d4
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ in
|
|||
client = {
|
||||
enable = mkEnableOption "Ceph client configuration";
|
||||
extraConfig = mkOption {
|
||||
type = with types; attrsOf str;
|
||||
type = with types; attrsOf (attrsOf str);
|
||||
default = {};
|
||||
example = ''
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue