Switch to SDDM from GDM

It's so pretty!
This commit is contained in:
Gene Liverman 2024-06-06 21:53:31 -04:00
parent 9b41d47f73
commit 7f482b826f

View file

@ -15,6 +15,7 @@
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.systemPackages = with pkgs; [
# host specific apps
boinc
@ -75,6 +76,10 @@
services = {
boinc.enable = true;
desktopManager.plasma6.enable = true;
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
fwupd.enable = true;
gnome.gnome-keyring.enable = true; # Provides secret storage
gvfs.enable = true; # Used by Nautilus
@ -99,12 +104,12 @@
variant = "";
};
displayManager = {
gdm = {
enable = true;
wayland = true;
};
};
# displayManager = {
# gdm = {
# enable = true;
# wayland = true;
# };
# };
desktopManager.gnome.enable = true;
};
};