aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu home services dict)
  #:use-module (gnu home services)
  #:use-module (gnu services)
  #:use-module (gnu services dict)
  #:use-module ((gnu system shadow) #:select (account-service-type))
  ;; For the 'home-shepherd-service-type' mapping.
  #:use-module (gnu home services shepherd)
  #:export (home-dicod-service-type)
  #:re-export (dicod-configuration))

(define home-dicod-service-type
  (service-type
   (inherit (system->home-service-type
             (remove-service-extensions dicod-service-type
                                        (list account-service-type))))
   (default-value (for-home (dicod-configuration)))))
config parameters....Demis Balbach 2022-01-06services: gnome: Add udev rules....Mathieu Othacehe 2021-12-08services: %desktop-services: Use SDDM rather than GDM on non-x86_64....Ludovic Courtès 2021-10-03services: desktop: Add the sticky bit to the X11 socket directory....Mathieu Othacehe 2021-07-29services: Migrate to <setuid-program>....Brice Waegeneire 2021-06-14services: Remove deprecated service procedures....Ludovic Courtès 2020-10-20services: lxqt-desktop: Delete unbound lxqt-desktop-service....Oleg Pykhalov 2020-10-20services: Add LXQt desktop service....Reza Alizadeh Majd 2020-10-01services: %desktop-services: Setuid root NTFS and NFS mount helpers....Maxim Cournoyer 2020-09-28services: Add elogind ‘handle-lid-switch-external-power’....Tobias Geerinckx-Rice 2020-09-23services: Allow (service bluetooth-service-type)....Tobias Geerinckx-Rice 2020-08-19services: Allow (service accountsservice-service-type)....Tobias Geerinckx-Rice 2020-05-24gnu: enlightenment: Update to 0.24.0....Efraim Flashner 2020-05-13mailmap: Update entries for Nikita....nikita 2020-04-21services: Don't use the deprecated 'make-forkexec-constructor' call....Ludovic Courtès 2020-04-10services: gnome: Fix ‘gnome’ field name....Tobias Geerinckx-Rice