From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Castillo Subject: adding files to xorg.conf.d Date: Sat, 20 Jan 2018 21:01:04 +0100 Message-ID: <2d5e7939-1d5b-bb39-81c6-73aa3817d682@uni-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37898) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eczKH-0005Uo-NA for help-guix@gnu.org; Sat, 20 Jan 2018 15:01:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eczKE-0007dJ-Nn for help-guix@gnu.org; Sat, 20 Jan 2018 15:01:17 -0500 Received: from gabriel-vm-2.zfn.uni-bremen.de ([134.102.50.10]:43294 helo=smtp.uni-bremen.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eczKE-0007N8-DP for help-guix@gnu.org; Sat, 20 Jan 2018 15:01:14 -0500 Received: from [192.168.178.5] (ip4d152409.dynamic.kabel-deutschland.de [77.21.36.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.uni-bremen.de (Postfix) with ESMTPSA id 37ED52059B for ; Sat, 20 Jan 2018 21:01:05 +0100 (CET) Content-Language: en-US List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org hi, I want to add one file to xorg.conf.d, but can't find the right way to do so. my current solution just appends my xsettings to xorg.conf: (define cyborg-quirk "Section \"InputClass\" #yadayada EndSection") (define %my-xorg-conf (xorg-configuration-file #:extra-config (list cyborg-quirk))) (define %my-startx (xorg-start-command #:configuration-file %my-xorg-conf)) (define %my-services ;; My very own list of services. (modify-services %desktop-services (slim-service-type config => (slim-configuration (inherit config) (startx %my-startx))))) currently, xorg.conf.d is created by a function that gets a list of X-modules or so. but it doesn't seem like there is any interface to pass any of these functions a gexp that evaluates to a file or so. Is my observation correct? If yes, is this wanted? Martin