porcorosso: try to make sddm use wayland (unsuccessfully), and hide the deployer user

This commit is contained in:
Luke Granger-Brown 2023-06-18 20:32:43 +01:00
parent c46298132e
commit b8f338d6fa

View file

@ -184,7 +184,13 @@ in {
boot.initrd.kernelModules = lib.mkForce [ "zfs" "spl" "dm_mod" ];
};
services.xserver.displayManager = {
sddm.enable = true;
sddm = {
enable = true;
settings = {
General.DisplayServer = "wayland";
Users.HideUsers = "deployer";
};
};
defaultSession = "plasmawayland";
};