fix: Import mastodon

ldap
Inex Code 2023-03-28 21:37:05 +03:00
parent 33cec16c61
commit c60440a865
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ in
./api/api.nix ./api/api.nix
./api/api-module.nix ./api/api-module.nix
./social/pleroma.nix ./social/pleroma.nix
./social/mastodon.nix
./letsencrypt/acme.nix ./letsencrypt/acme.nix
./letsencrypt/resolve.nix ./letsencrypt/resolve.nix
./backup/restic.nix ./backup/restic.nix

View File

@ -33,7 +33,7 @@ in
username = "${user.username}"; username = "${user.username}";
email = "${user.username}@${cfg.domain}"; email = "${user.username}@${cfg.domain}";
hashedPassword = user.hashedPassword; hashedPassword = user.hashedPassword;
groups = [ "gitea" "nextcloud" "pleroma" ]; groups = [ "gitea" "nextcloud" "pleroma" "mastodon" ];
}) })
cfg.users); cfg.users);
}; };