Remove semicolon

pull/19/head
Inex Code 2022-07-15 15:27:32 +03:00
parent ea383780b6
commit b22bc3d6c3
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ in
ensurePermissions = { ensurePermissions = {
"DATABASE pleroma" = "ALL PRIVILEGES"; "DATABASE pleroma" = "ALL PRIVILEGES";
}; };
}; }
]; ];
}; };
}; };

View File

@ -13,10 +13,10 @@ in
}; };
username = lib.attrsets.attrByPath [ "username" ] null jsonData; username = lib.attrsets.attrByPath [ "username" ] null jsonData;
hashedMasterPassword = lib.attrsets.attrByPath [ "hashedMasterPassword" ] null jsonData; hashedMasterPassword = lib.attrsets.attrByPath [ "hashedMasterPassword" ] null jsonData;
sshKeys = lib.attrsets.attrByPath [ "sshKeys" ] [] jsonData; sshKeys = lib.attrsets.attrByPath [ "sshKeys" ] [ ] jsonData;
api = { api = {
enableSwagger = lib.attrsets.attrByPath [ "api" "enableSwagger" ] false jsonData; enableSwagger = lib.attrsets.attrByPath [ "api" "enableSwagger" ] false jsonData;
skippedMigrations = lib.attrsets.attrByPath [ "api" "skippedMigrations" ] [] jsonData; skippedMigrations = lib.attrsets.attrByPath [ "api" "skippedMigrations" ] [ ] jsonData;
}; };
backblaze = { backblaze = {
bucket = lib.attrsets.attrByPath [ "backblaze" "bucket" ] "" jsonData; bucket = lib.attrsets.attrByPath [ "backblaze" "bucket" ] "" jsonData;
@ -44,6 +44,6 @@ in
rootKeys = lib.attrsets.attrByPath [ "ssh" "rootKeys" ] [ "" ] jsonData; rootKeys = lib.attrsets.attrByPath [ "ssh" "rootKeys" ] [ "" ] jsonData;
passwordAuthentication = lib.attrsets.attrByPath [ "ssh" "passwordAuthentication" ] true jsonData; passwordAuthentication = lib.attrsets.attrByPath [ "ssh" "passwordAuthentication" ] true jsonData;
}; };
users = lib.attrsets.attrByPath [ "users" ] [] jsonData; users = lib.attrsets.attrByPath [ "users" ] [ ] jsonData;
}; };
} }