nixos/modules/core/sddm.nix

12 lines
195 B
Nix

{
...
}:
{
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
# To prevent getting stuck at shutdown
systemd.extraConfig = "DefaultTimeoutStopSec=10s";
}