From d9edf3f3899946f0397dc3de5b17eb24535677a5 Mon Sep 17 00:00:00 2001 From: biscuit Date: Mon, 19 May 2025 21:40:20 -0500 Subject: [PATCH] added gdm --- modules/xserver.nix | 2 +- system/wayland.nix | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/xserver.nix b/modules/xserver.nix index 0198f5d..de2acdb 100644 --- a/modules/xserver.nix +++ b/modules/xserver.nix @@ -1,6 +1,6 @@ {...}: { imports = [ ../system/wayland.nix - ../system/font.nix + ../system/font.nix ]; } diff --git a/system/wayland.nix b/system/wayland.nix index dce1470..55d4e2d 100644 --- a/system/wayland.nix +++ b/system/wayland.nix @@ -2,4 +2,7 @@ hardware = { graphics.enable = true; }; + services.xserver = { + displayManager.gdm.enable = true; + }; }