Why? Everything seems to be working fine, it’s just very, very annoying knowing that I have both X and Wayland installed now, one of which I’m not using at all…
Relevant config if it matters:
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"nvidia-x11"
];
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
modesetting.enable = true;
nvidiaSettings = true;
};
(yes, the inconsistent indents are bugging me as well but can’t be bothered to care right now…)