All (R)LWE-based schemes have noisy ciphertexts. In general, the if the noise is smaller than a fraction of q (say, less than q/2), then the decryption works.
If you just want to encrypt a message and decrypt it in the future, then you can encrypt using a very big noise, close to q already. But when the noise is large, the LWE problem is harder, so, for the same security level, you can choose smaller parameters.
But for homomorphic schemes, you also want to operate with the ciphertexts and these operations increase the noise, so you have to start with small noise (for example, if fresh ciphertexts have noise close to q/4, then one single addition brings the noise to q/2 and no further homomorphic operation is possible). Usually, the schemes choose the initial noise to be bounded by some small constant, and increase q to have more room for the noise growth generated by the homomorphic operations. But then, the LWE problem becomes easier, so, to reach the desired security level, they have to increase the dimension, $n$.
You will notice that schemes whose noise growth is smaller are able to choose much smaller parameter (e.g., TFHE uses $n = 2^{10}$ and $q = 2^{32}$).