summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/lightdm.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/services/lightdm.nix b/services/lightdm.nix
new file mode 100644
index 0000000..26b69d5
--- /dev/null
+++ b/services/lightdm.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }:
+{
+ # Enable LightDM Display Manager
+ services.xserver = {
+ displayManager.lightdm = {
+ enable = true;
+ };
+ };
+}