From eab3bbcfc315155b1ca0fe33bd98952a55647b65 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 14 Dec 2025 18:04:43 +0100 Subject: [PATCH] SDDM won't work --- hosts/nixos/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 16d7566..9dce8fc 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -52,6 +52,15 @@ # Hint Electron Apps to use Wayland environment.sessionVariables.NIXOS_OZONE_WL = "1"; + # Installs SDDM + services.displayManager = { + sddm = { + enable = true; + wayland.enable = true; + }; + defaultSession = "hyprland"; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;