summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-01-24 21:44:01 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-01-24 21:57:03 +0100
commit962a8f62e9967005a2e11b35f27365f91f7301f9 (patch)
treec70a5a43a291045ce3756b7db0d37d7081d199d0
parentDHCP take key explicitly instead of trying to find it. (diff)
downloadprofiles-962a8f62e9967005a2e11b35f27365f91f7301f9.tar.gz
profiles-962a8f62e9967005a2e11b35f27365f91f7301f9.tar.xz
Add lightdm.
-rw-r--r--manifests/lightdm.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/lightdm.pp b/manifests/lightdm.pp
new file mode 100644
index 0000000..aa2d889
--- /dev/null
+++ b/manifests/lightdm.pp
@@ -0,0 +1,11 @@
+class profiles::lightdm {
+ include ::lightdm
+ include ::lightdm::config
+ include ::lightdm::greeter::gtk
+
+ lightdm::seat { '*':
+ greeter_session => 'lightdm-gtk-greeter',
+ greeter_show_manual_login => true,
+ allow_user_switching => true,
+ }
+}