summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/profiles/manifests/workstation.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/profiles/manifests/workstation.pp b/modules/profiles/manifests/workstation.pp
index cfc413e..167faef 100644
--- a/modules/profiles/manifests/workstation.pp
+++ b/modules/profiles/manifests/workstation.pp
@@ -37,6 +37,21 @@ class profiles::workstation (
$xkb_variant = 'dvorak_a6'
$xkb_options = 'compose:caps'
+ file { '/etc/X11/xorg.conf.d':
+ ensure => directory,
+ recurse => false,
+ }
+
+ file { 'X11 Raise max clients':
+ ensure => file,
+ path => '/etc/X11/xorg.conf.d/99-maxclients.conf',
+ content => @(EOF)
+ Section "ServerFlags"
+ Option "MaxClients" "2048"
+ EndSection
+ | EOF
+ }
+
file { 'Default X11 keymap':
ensure => file,
path => '/etc/X11/xorg.conf.d/00-keyboard.conf',