Merge pull request #113203 from leonardp/ceph-fix
nixos/ceph: fix ceph.client.extraOptions type
This commit is contained in:
commit
6402bee9d4
|
@ -316,7 +316,7 @@ in
|
||||||
client = {
|
client = {
|
||||||
enable = mkEnableOption "Ceph client configuration";
|
enable = mkEnableOption "Ceph client configuration";
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
type = with types; attrsOf str;
|
type = with types; attrsOf (attrsOf str);
|
||||||
default = {};
|
default = {};
|
||||||
example = ''
|
example = ''
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue