Redirect a whole domain to another in nginx

server {
    listen 80;
    server_name old-catalogue.example www.old-catalogue.example;

    return 301 http://catalogue.example$request_uri;
}