(NixOS)
I've noticed that even when I explicitly change the output scale in the greeter settings through nix, the greeter remains scaled such that the cursor is large. Here's my configuration:
noctalia-greeter = {
enable = true;
package = inputs.noctalia-greeter.packages.${pkgs.stdenv.hostPlatform.system}.default;
greeter-args = "";
settings = {
cursor = {
theme = "Adwaita";
size = 24;
};
keyboard = {
layout = "us";
};
output = {
scale = 1.0;
};
};
};
(NixOS)
I've noticed that even when I explicitly change the output scale in the greeter settings through nix, the greeter remains scaled such that the cursor is large. Here's my configuration: