Fixed SDDM and now you should have everything working!

This commit is contained in:
Tyler Kelley 2024-01-22 19:38:18 -06:00
parent b5cd34b76f
commit 45937c29cc
2 changed files with 11 additions and 7 deletions

View File

@ -1,15 +1,15 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
{ {
services.xserver.displayManager = { services.xserver = {
# enable = true; enable = true;
# layout = "us"; layout = "us";
# xkbVariant = ""; xkbVariant = "";
# libinput.enable = true; libinput.enable = true;
sddm = { displayManager.sddm = {
enable = true; enable = true;
autoNumlock = true; autoNumlock = true;
wayland.enable = true; wayland.enable = true;
} };
}; };
} }

View File

@ -53,6 +53,10 @@
programs.steam.gamescopeSession.enable = true; programs.steam.gamescopeSession.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.