Ok, figured it out myself. You have to create a texture uniform, and then in the node inspector you set that to a new noise texture
uniform sampler2D NOISE_PATTERN;
void fragment(){
float noiseValue = texture(NOISE_PATTERN, UV).x;
COLOR = vec4(noiseValue);
}
The above will simply sample the noise texture and set the color as the output