2025-03-19 00:55:22 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
|
;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
|
;;; Copyright © 2013,2014 Mark H Weaver <mhw@netris.org>
|
|
|
|
|
|
;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
|
|
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
|
|
|
|
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
|
|
|
|
|
;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
|
|
|
|
|
|
;;; Copyright © 2018-2020 Caleb Ristvedt <caleb.ristvedt@cune.org>
|
2025-09-18 12:25:39 +09:00
|
|
|
|
;;; Copyright © 2020-2023, 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
2025-03-19 00:55:22 +01:00
|
|
|
|
;;; Copyright © 2020 Miguel Ángel Arruga Vivas <rosen644835@gmail.com>
|
|
|
|
|
|
;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
|
|
|
|
|
|
;;; Copyright © 2022 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
|
|
|
|
|
;;; Copyright © 2022 Andrew Tropin <andrew@trop.in>
|
|
|
|
|
|
;;; Copyright © 2022 Brian Cully <bjc@kublai.com>
|
|
|
|
|
|
;;; Copyright © 2023 (unmatched-parenthesis <paren@disroot.org>
|
|
|
|
|
|
;;; Copyright © 2024 Christopher Baines <mail@cbaines.net>
|
|
|
|
|
|
;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
|
|
|
|
|
|
;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
|
|
|
|
|
|
;;; Copyright © 2025 David Elsing <david.elsing@posteo.net>
|
2025-06-12 15:53:45 +08:00
|
|
|
|
;;; Copyright © 2025 Hilton Chain <hako@ultrarare.space>
|
2025-03-19 00:55:22 +01:00
|
|
|
|
;;; 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/>.
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 22:17:41 +02:00
|
|
|
|
|
2025-03-19 00:55:22 +01:00
|
|
|
|
;; Per-directory local variables for GNU Emacs 23 and later.
|
2014-10-10 18:19:43 +02:00
|
|
|
|
((nil
|
|
|
|
|
|
. ((fill-column . 78)
|
|
|
|
|
|
(tab-width . 8)
|
2016-10-04 13:15:12 +02:00
|
|
|
|
(sentence-end-double-space . t)
|
2014-10-10 18:19:43 +02:00
|
|
|
|
|
2023-09-11 22:31:56 -04:00
|
|
|
|
;; For use with 'bug-reference-prog-mode'. Extra bug-reference
|
|
|
|
|
|
;; configuration should be done in your Emacs user configuration file;
|
|
|
|
|
|
;; refer to (info (guix) The Perfect Setup).
|
2014-10-10 18:19:43 +02:00
|
|
|
|
(bug-reference-bug-regexp
|
2022-06-07 18:14:52 +02:00
|
|
|
|
. "\\(<https?://\\bugs\\.gnu\\.org/\\([0-9]+\\)>\\)")
|
2023-09-11 22:31:56 -04:00
|
|
|
|
(bug-reference-url-format . "https://issues.guix.gnu.org/%s")
|
2020-10-25 14:10:15 -04:00
|
|
|
|
|
2022-09-05 09:13:48 +03:00
|
|
|
|
(eval . (add-to-list 'completion-ignored-extensions ".go"))
|
|
|
|
|
|
|
2020-10-25 14:10:15 -04:00
|
|
|
|
;; Emacs-Guix
|
2020-11-16 13:06:27 -05:00
|
|
|
|
(eval . (setq-local guix-directory
|
|
|
|
|
|
(locate-dominating-file default-directory
|
|
|
|
|
|
".dir-locals.el")))
|
2025-02-13 15:19:59 +09:00
|
|
|
|
;; Magit
|
|
|
|
|
|
(eval . (with-eval-after-load 'git-commit
|
|
|
|
|
|
(add-to-list 'git-commit-trailers "Change-Id")))
|
2022-09-07 09:19:17 +03:00
|
|
|
|
|
2024-09-14 16:47:16 +02:00
|
|
|
|
;; TempEl
|
|
|
|
|
|
(eval . (with-eval-after-load
|
|
|
|
|
|
'tempel
|
|
|
|
|
|
(if (stringp tempel-path)
|
|
|
|
|
|
(setq tempel-path (list tempel-path)))
|
|
|
|
|
|
(let ((guix-tempel-snippets
|
|
|
|
|
|
(concat
|
|
|
|
|
|
(expand-file-name
|
|
|
|
|
|
"etc/snippets/tempel"
|
|
|
|
|
|
(locate-dominating-file default-directory
|
|
|
|
|
|
".dir-locals.el"))
|
|
|
|
|
|
"/*.eld")))
|
|
|
|
|
|
(unless (member guix-tempel-snippets tempel-path)
|
|
|
|
|
|
(add-to-list 'tempel-path guix-tempel-snippets)))))
|
|
|
|
|
|
|
2022-08-03 17:51:48 +03:00
|
|
|
|
;; YASnippet
|
|
|
|
|
|
(eval . (with-eval-after-load
|
|
|
|
|
|
'yasnippet
|
|
|
|
|
|
(let ((guix-yasnippets
|
|
|
|
|
|
(expand-file-name
|
2022-09-07 09:19:17 +03:00
|
|
|
|
"etc/snippets/yas"
|
2022-08-03 17:51:48 +03:00
|
|
|
|
(locate-dominating-file default-directory
|
|
|
|
|
|
".dir-locals.el"))))
|
|
|
|
|
|
(unless (member guix-yasnippets yas-snippet-dirs)
|
|
|
|
|
|
(add-to-list 'yas-snippet-dirs guix-yasnippets)
|
|
|
|
|
|
(yas-reload-all)))))
|
2020-10-25 14:10:15 -04:00
|
|
|
|
|
|
|
|
|
|
;; Geiser
|
|
|
|
|
|
;; This allows automatically setting the `geiser-guile-load-path'
|
|
|
|
|
|
;; variable when using various Guix checkouts (e.g., via git worktrees).
|
2025-05-02 18:57:11 +02:00
|
|
|
|
(geiser-repl-per-project-p . t)
|
|
|
|
|
|
(geiser-insert-actual-lambda . nil)))
|
2020-10-25 14:10:15 -04:00
|
|
|
|
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 22:17:41 +02:00
|
|
|
|
(c-mode . ((c-file-style . "gnu")))
|
2025-06-12 15:53:45 +08:00
|
|
|
|
(emacs-lisp-mode . ((indent-tabs-mode . nil)))
|
|
|
|
|
|
(texinfo-mode . ((indent-tabs-mode . nil)
|
|
|
|
|
|
(fill-column . 72)))
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 22:17:41 +02:00
|
|
|
|
(scheme-mode
|
|
|
|
|
|
.
|
|
|
|
|
|
((indent-tabs-mode . nil)
|
2025-06-12 15:53:45 +08:00
|
|
|
|
|
|
|
|
|
|
;; Emacs 28 changed the behavior of 'lisp-fill-paragraph', which causes the
|
2025-07-18 11:15:28 +09:00
|
|
|
|
;; first line of package descriptions to extrude past 'fill-column'. The
|
|
|
|
|
|
;; following variable reverts its behavior to the previous one.
|
|
|
|
|
|
(lisp-fill-paragraphs-as-doc-string nil)
|
2025-06-12 15:53:45 +08:00
|
|
|
|
|
|
|
|
|
|
;; This notably allows '(' in Paredit to not insert a space when the
|
|
|
|
|
|
;; preceding symbol is one of these.
|
|
|
|
|
|
(eval . (modify-syntax-entry ?~ "'"))
|
|
|
|
|
|
(eval . (modify-syntax-entry ?$ "'"))
|
|
|
|
|
|
(eval . (modify-syntax-entry ?+ "'"))
|
|
|
|
|
|
|
2014-04-28 23:00:57 +02:00
|
|
|
|
(eval . (put 'eval-when 'scheme-indent-function 1))
|
2015-05-25 18:25:19 +02:00
|
|
|
|
(eval . (put 'call-with-prompt 'scheme-indent-function 1))
|
2013-02-01 12:48:02 +01:00
|
|
|
|
(eval . (put 'test-assert 'scheme-indent-function 1))
|
2023-10-19 16:33:17 +02:00
|
|
|
|
(eval . (put 'test-assertm 'scheme-indent-function 1))
|
2017-05-18 11:35:45 +02:00
|
|
|
|
(eval . (put 'test-equalm 'scheme-indent-function 1))
|
2013-02-01 12:48:02 +01:00
|
|
|
|
(eval . (put 'test-equal 'scheme-indent-function 1))
|
2014-03-31 23:34:20 +02:00
|
|
|
|
(eval . (put 'test-eq 'scheme-indent-function 1))
|
2013-02-01 12:48:02 +01:00
|
|
|
|
(eval . (put 'call-with-input-string 'scheme-indent-function 1))
|
2022-03-03 21:40:21 +01:00
|
|
|
|
(eval . (put 'call-with-port 'scheme-indent-function 1))
|
2013-02-01 12:48:02 +01:00
|
|
|
|
(eval . (put 'guard 'scheme-indent-function 1))
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 22:17:41 +02:00
|
|
|
|
(eval . (put 'lambda* 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'substitute* 'scheme-indent-function 1))
|
2023-04-28 20:19:04 +01:00
|
|
|
|
(eval . (put 'match-record 'scheme-indent-function 3))
|
2023-04-28 20:19:05 +01:00
|
|
|
|
(eval . (put 'match-record-lambda 'scheme-indent-function 2))
|
2017-04-28 15:53:51 +03:00
|
|
|
|
|
2023-02-16 22:34:58 +01:00
|
|
|
|
;; TODO: Contribute these to Emacs' scheme-mode.
|
|
|
|
|
|
(eval . (put 'let-keywords 'scheme-indent-function 3))
|
|
|
|
|
|
|
2021-06-16 23:52:42 +02:00
|
|
|
|
;; 'modify-inputs' and its keywords.
|
|
|
|
|
|
(eval . (put 'modify-inputs 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'replace 'scheme-indent-function 1))
|
|
|
|
|
|
|
2017-04-28 15:53:51 +03:00
|
|
|
|
;; 'modify-phases' and its keywords.
|
2015-02-26 22:48:14 +01:00
|
|
|
|
(eval . (put 'modify-phases 'scheme-indent-function 1))
|
2017-04-28 15:53:51 +03:00
|
|
|
|
(eval . (put 'replace 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'add-before 'scheme-indent-function 2))
|
|
|
|
|
|
(eval . (put 'add-after 'scheme-indent-function 2))
|
|
|
|
|
|
|
2015-10-28 21:36:07 +01:00
|
|
|
|
(eval . (put 'modify-services 'scheme-indent-function 1))
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 22:17:41 +02:00
|
|
|
|
(eval . (put 'with-directory-excursion 'scheme-indent-function 1))
|
2019-06-03 16:23:01 +02:00
|
|
|
|
(eval . (put 'with-file-lock 'scheme-indent-function 1))
|
2019-11-18 22:22:59 +01:00
|
|
|
|
(eval . (put 'with-file-lock/no-wait 'scheme-indent-function 1))
|
2019-11-29 14:53:22 +01:00
|
|
|
|
(eval . (put 'with-profile-lock 'scheme-indent-function 1))
|
2020-08-08 10:05:22 -05:00
|
|
|
|
(eval . (put 'with-writable-file 'scheme-indent-function 2))
|
2019-06-03 16:23:01 +02:00
|
|
|
|
|
2020-08-25 15:17:50 +02:00
|
|
|
|
(eval . (put 'package/inherit 'scheme-indent-function 1))
|
2012-11-01 00:50:01 +01:00
|
|
|
|
(eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1))
|
2014-01-19 23:03:43 +01:00
|
|
|
|
(eval . (put 'with-store 'scheme-indent-function 1))
|
2024-05-11 17:53:20 +01:00
|
|
|
|
(eval . (put 'with-store/non-blocking 'scheme-indent-function 1))
|
2018-10-19 17:58:00 +02:00
|
|
|
|
(eval . (put 'with-external-store 'scheme-indent-function 1))
|
2013-05-14 23:53:38 +02:00
|
|
|
|
(eval . (put 'with-error-handling 'scheme-indent-function 0))
|
2013-10-03 22:45:25 +02:00
|
|
|
|
(eval . (put 'with-mutex 'scheme-indent-function 1))
|
2013-12-29 15:51:07 +01:00
|
|
|
|
(eval . (put 'with-atomic-file-output 'scheme-indent-function 1))
|
2014-03-24 22:15:29 +01:00
|
|
|
|
(eval . (put 'call-with-compressed-output-port 'scheme-indent-function 2))
|
|
|
|
|
|
(eval . (put 'call-with-decompressed-port 'scheme-indent-function 2))
|
2016-07-18 23:14:14 +02:00
|
|
|
|
(eval . (put 'call-with-gzip-input-port 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'call-with-gzip-output-port 'scheme-indent-function 1))
|
2019-05-24 08:26:38 +02:00
|
|
|
|
(eval . (put 'call-with-lzip-input-port 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'call-with-lzip-output-port 'scheme-indent-function 1))
|
2014-03-31 23:34:20 +02:00
|
|
|
|
(eval . (put 'signature-case 'scheme-indent-function 1))
|
2014-08-02 19:24:50 -04:00
|
|
|
|
(eval . (put 'emacs-batch-eval 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'emacs-batch-edit-file 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'emacs-substitute-sexps 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'emacs-substitute-variables 'scheme-indent-function 1))
|
2015-02-02 10:37:23 +01:00
|
|
|
|
(eval . (put 'with-derivation-narinfo 'scheme-indent-function 1))
|
2015-06-06 19:05:25 +02:00
|
|
|
|
(eval . (put 'with-derivation-substitute 'scheme-indent-function 2))
|
2017-01-18 23:21:29 +01:00
|
|
|
|
(eval . (put 'with-status-report 'scheme-indent-function 1))
|
2019-01-09 11:25:11 +01:00
|
|
|
|
(eval . (put 'with-status-verbosity 'scheme-indent-function 1))
|
2020-03-18 22:17:39 +01:00
|
|
|
|
(eval . (put 'with-build-handler 'scheme-indent-function 1))
|
2013-10-03 22:45:25 +02:00
|
|
|
|
|
Add (guix memoization).
* guix/combinators.scm (memoize): Remove.
* guix/memoization.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
guix/build-system/gnu.scm, guix/build-system/python.scm,
guix/derivations.scm, guix/gnu-maintenance.scm,
guix/import/cran.scm, guix/import/elpa.scm,
guix/modules.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/store.scm, guix/utils.scm: Adjust imports accordingly.
2017-01-28 16:33:57 +01:00
|
|
|
|
(eval . (put 'mlambda 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'mlambdaq 'scheme-indent-function 1))
|
2013-10-03 22:45:25 +02:00
|
|
|
|
(eval . (put 'syntax-parameterize 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'with-monad 'scheme-indent-function 1))
|
2014-10-08 23:35:08 +02:00
|
|
|
|
(eval . (put 'mbegin 'scheme-indent-function 1))
|
2014-12-02 10:11:11 +01:00
|
|
|
|
(eval . (put 'mwhen 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'munless 'scheme-indent-function 1))
|
2013-10-03 22:45:25 +02:00
|
|
|
|
(eval . (put 'mlet* 'scheme-indent-function 2))
|
|
|
|
|
|
(eval . (put 'mlet 'scheme-indent-function 2))
|
2025-03-04 20:33:08 +00:00
|
|
|
|
(eval . (put 'state-parameterize 'scheme-indent-function 2))
|
|
|
|
|
|
(eval . (put 'store-parameterize 'scheme-indent-function 2))
|
2014-04-28 23:00:57 +02:00
|
|
|
|
(eval . (put 'run-with-store 'scheme-indent-function 1))
|
2015-01-17 18:46:41 +01:00
|
|
|
|
(eval . (put 'run-with-state 'scheme-indent-function 1))
|
2014-11-29 13:36:24 +01:00
|
|
|
|
(eval . (put 'wrap-program 'scheme-indent-function 1))
|
2022-06-28 00:37:34 -04:00
|
|
|
|
(eval . (put 'wrap-script 'scheme-indent-function 1))
|
2016-07-03 22:26:19 +02:00
|
|
|
|
(eval . (put 'with-imported-modules 'scheme-indent-function 1))
|
2018-05-28 18:14:37 +02:00
|
|
|
|
(eval . (put 'with-extensions 'scheme-indent-function 1))
|
2020-03-06 11:25:43 +01:00
|
|
|
|
(eval . (put 'with-parameters 'scheme-indent-function 1))
|
2017-11-14 10:16:22 +01:00
|
|
|
|
(eval . (put 'let-system 'scheme-indent-function 1))
|
build-system: Rewrite using gexps.
* guix/packages.scm (expand-input): Remove 'store', 'system', and
'cross-system' parameters; add #:native?. Rewrite to return
name/gexp-input tuples.
(bag->derivation): Adjust accordingly. Lower (bag-build bag).
(bag->cross-derivation): Ditto. Instead of #:native-drvs and
#:target-drvs, pass #:build-inputs, #:host-inputs, and #:target-inputs.
(%derivation-cache): Remove.
* gnu/packages/bootstrap.scm (raw-build): Turn into a monadic procedure.
* gnu/packages/commencement.scm (glibc-final)[arguments]: Use
'gexp-input' for the #:allowed-references argument.
* guix/build-system/cmake.scm (cmake-build): Remove 'store' parameter.
Switch to the use of gexps and 'gexp->derivation'.
(lower): Remove #:source from 'private-keywords'.
* guix/build-system/glib-or-gtk.scm (glib-or-gtk-build, lower):
Likewise.
* guix/build-system/font.scm (font-build): Likewise.
* guix/build-system/gnu.scm (gnu-build): Likewise, and remove
'canonicalize-reference'.
(gnu-cross-build): Likewise, and expect #:build-inputs, #:host-inputs,
and #:target-inputs instead of #:native-drvs and #:target-drvs.
(lower): Likewise.
* guix/build-system/perl.scm (perl-build, lower): Likewise.
* guix/build-system/python.scm (python-build, lower): Likewise.
* guix/build-system/ruby.scm (ruby-build, lower): Likewise.
* guix/build-system/waf.scm (waf-build, lower): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Remove.
(trivial-build): Remove 'store' parameter, change to gexps.
(trivial-cross-build): Ditto, and change to #:build-inputs & co.
* guix/build-system/cargo.scm (cargo-build): Change to 'gexp->derivation'.
* guix/build-system/copy.scm (copy-build): Likewise.
* guix/build-system/dune.scm (dune-build): Likewise.
* guix/build-system/guile.scm (guile-build, guile-cross-build):
Likewise.
* guix/build-system/meson.scm (meson-build): Likewise.
* guix/build-system/ocaml.scm (ocaml-build): Likewise.
* guix/build-system/scons.scm (scons-build): Likewise.
* guix/build-system/texlive.scm (texlive-build): Likewise.
* guix/build-system/android-ndk.scm (android-ndk-build): Likewise.
* guix/build-system/ant.scm (ant-build): Likewise.
* guix/build-system/asdf.scm (asdf-build/source, asdf-build): Likewise.
* guix/build-system/chicken.scm (chicken-build): Likewise.
* guix/build-system/clojure.scm (clojure-build): Likewise.
(source->output-path, maybe-guile->guile): Remove.
* guix/build-system/dub.scm (dub-build): Likewise.
* guix/build-system/emacs.scm (emacs-build): Likewise.
* guix/build-system/go.scm (go-build): Likewise.
* guix/build-system/haskell.scm (haskell-build): Likewise.
* guix/build-system/julia.scm (julia-build): Likewise.
* guix/build-system/linux-module.scm (linux-module-build)
(linux-module-build-cross): Likewise.
* guix/build-system/maven.scm (maven-build): Likewise.
* guix/build-system/minify.scm (minify-build): Likewise.
* guix/build-system/node.scm (node-build): Likewise.
* guix/build-system/qt.scm (qt-build, qt-cross-build): Likewise.
* guix/build-system/r.scm (r-build): Likewise.
* guix/build-system/rakudo.scm (rakudo-build): Likewise.
* guix/build-system/renpy.scm (renpy-build): Likewise.
* tests/builders.scm ("gnu-build"): Call 'store-lower' on 'gnu-build'.
Pass #:source parameter.
* tests/packages.scm ("search paths"): Use 'abort-to-prompt' instead of
a normal return from the 'build' method.
("package->bag, sensitivity to %current-target-system"): Change 'build'
to match the new build system signature.
squash! build-system: Rewrite using gexps.
squash! build-system: Rewrite using gexps.
2015-03-28 19:26:39 +01:00
|
|
|
|
(eval . (put 'with-build-variables 'scheme-indent-function 2))
|
2014-04-28 23:00:57 +02:00
|
|
|
|
|
2018-05-27 19:19:30 +02:00
|
|
|
|
(eval . (put 'with-database 'scheme-indent-function 2))
|
2020-12-11 12:36:52 +01:00
|
|
|
|
(eval . (put 'call-with-database 'scheme-indent-function 1))
|
2020-06-24 01:00:40 -05:00
|
|
|
|
(eval . (put 'call-with-transaction 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'call-with-retrying-transaction 'scheme-indent-function 1))
|
2018-05-27 19:19:30 +02:00
|
|
|
|
|
2015-06-02 08:48:16 -04:00
|
|
|
|
(eval . (put 'call-with-container 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'container-excursion 'scheme-indent-function 1))
|
2017-04-17 22:04:31 +02:00
|
|
|
|
(eval . (put 'eventually 'scheme-indent-function 1))
|
2015-06-02 08:48:16 -04:00
|
|
|
|
|
2017-11-22 14:39:26 +01:00
|
|
|
|
(eval . (put 'call-with-progress-reporter 'scheme-indent-function 1))
|
2020-06-08 12:01:24 +02:00
|
|
|
|
(eval . (put 'with-repository 'scheme-indent-function 2))
|
2019-09-14 17:54:06 +02:00
|
|
|
|
(eval . (put 'with-temporary-git-repository 'scheme-indent-function 2))
|
2020-06-01 23:20:06 +02:00
|
|
|
|
(eval . (put 'with-environment-variables 'scheme-indent-function 1))
|
|
|
|
|
|
(eval . (put 'with-fresh-gnupg-setup 'scheme-indent-function 1))
|
2017-11-22 14:39:26 +01:00
|
|
|
|
|
2020-06-06 23:17:02 +02:00
|
|
|
|
(eval . (put 'with-paginated-output-port 'scheme-indent-function 1))
|
|
|
|
|
|
|
2021-05-28 08:05:02 -04:00
|
|
|
|
(eval . (put 'with-shepherd-action 'scheme-indent-function 3))
|
|
|
|
|
|
|
2022-03-06 18:14:51 +01:00
|
|
|
|
(eval . (put 'with-http-server 'scheme-indent-function 1))
|
|
|
|
|
|
|
2025-06-12 15:53:45 +08:00
|
|
|
|
;; Record constructors.
|
|
|
|
|
|
;; URIs for origin methods.
|
|
|
|
|
|
(eval . (put 'android-repo-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bzr-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cvs-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'git-checkout 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'git-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hg-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'svn-multi-reference 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'svn-reference 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; guix/
|
|
|
|
|
|
(eval . (put 'avahi-service 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bag 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'build-status 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'build-system 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'channel 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gnu-package-descriptor 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'graft 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lint-checker 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lint-warning 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'manifest-entry 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'manifest-pattern 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'manifest-transaction 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'node-type 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'origin 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'package 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'platform 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'profile 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'progress-reporter 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'search-path-specification 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'upstream-input 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'upstream-source 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'upstream-updater 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; gnu/
|
|
|
|
|
|
(eval . (put 'bootloader 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bootloader-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'image 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'image-type 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'menu-entry 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'partition 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; gnu/machine
|
|
|
|
|
|
(eval . (put 'digital-ocean-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'environment-type 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hetzner-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'machine 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'machine-ssh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; gnu/system
|
|
|
|
|
|
(eval . (put 'boot-parameters 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'file-system 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'file-system-mapping 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'locale-definition 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mapped-device 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mapped-device-kind 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'name-service 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'name-service-switch 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'operating-system 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-entry 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-service 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'privileged-program 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'subid-range 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'subids-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'subids-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'swap-space 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'user-account 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'user-group 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'virtual-machine 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; gnu/home
|
|
|
|
|
|
(eval . (put 'home-bash-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-bash-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-batsignal-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-beets-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-dbus-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-dotfiles-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-environment 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-fish-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-fish-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-gpg-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-inputrc-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-kodi-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-mcron-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-msmtp-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-openssh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-parcimonie-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-pipewire-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-redshift-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-shell-profile-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-shepherd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-ssh-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-unclutter-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-xdg-base-directories-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-xdg-mime-applications-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-xdg-user-directories-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-xmodmap-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-znc-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-zsh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'home-zsh-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'msmtp-account 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'msmtp-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openssh-host 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'point 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'proxy-jump 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-bar 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-border-color 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-color 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-input 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-mode 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sway-output 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xdg-desktop-action 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xdg-desktop-entry 'scheme-indent-function 0))
|
|
|
|
|
|
|
|
|
|
|
|
;; gnu/services
|
|
|
|
|
|
(eval . (put 'agate-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'agetty-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'alsa-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'anonip-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'apcupsd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'apcupsd-event-handlers 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'auditd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'autossh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'avahi-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'backend-userroot-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bffe-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bitlbee-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'bluetooth-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cachefilesd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'certbot-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cgit-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'configuration-field 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'connman-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'connman-general-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'containerd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cuirass-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cuirass-remote-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cuirass-remote-worker-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'cups-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'darkstat-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dbus-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dconf-keyfile 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dconf-profile 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'debootstrap-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dhcp-client-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dhcpcd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dhcpd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dicod-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dict-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'directory-server-instance-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dnsmasq-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'docker-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dovecot-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'dropbear-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'earlyoom-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'elogind-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'enlightenment-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'exim-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ext-component-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fail2ban-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fail2ban-ignore-cache-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fail2ban-jail-action-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fail2ban-jail-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fail2ban-jail-filter-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fcgiwrap-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fifo-listener-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'file-database-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'files-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fprintd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'fstrim-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-cleaner-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-confd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-kvmd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-luxid-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-metad-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-mond-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-noded-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-os 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-os-variant 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-rapi-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-watcher-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ganeti-wconfd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gdm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'geoclue-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'getmail-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'getmail-configuration-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'getmail-destination-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'getmail-options-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'getmail-retriever-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'git-daemon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'git-http-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gitile-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gitolite-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gitolite-git-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gitolite-rc-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gmnisrv-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gnome-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gnome-keyring-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gpm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-agreety-session 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-gtkgreet-sway-session 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-terminal-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-user-session 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-wlgreet-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-wlgreet-session 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'greetd-wlgreet-sway-session 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gss-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-agent-dynamic-auth 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-agent-dynamic-auth-with-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-agent-password-auth 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-agent-password-file-auth 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-build-coordinator-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-data-service-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-extension 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'guix-publish-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'gvfs-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'host 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hostapd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hpcguix-web-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'httpd-config-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'httpd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'httpd-module 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'httpd-virtualhost 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hurd-console-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hurd-getty-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'hurd-vm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'idmap-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'imap4d-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'inet-listener-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'inetd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'inetd-entry 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'inputattach-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'int-component-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ipfs-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iptables-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iwd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iwd-general-settings 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iwd-network-settings 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iwd-scan-settings 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'iwd-settings 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'jami-account 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'jami-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'joycond-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'keepalived-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'kmscon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-acl-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-key-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-keystore-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-policy-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-remote-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-resolver-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'knot-zone-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'krb5-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'krb5-realm 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'kwallet-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ladspa-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'laminar-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'libvirt-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lightdm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lightdm-gtk-greeter-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lightdm-seat-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'linux-builder-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lirc-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'live-service 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'localed-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'location-access-control 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'log-cleanup-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'log-rotation 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'log-rotation-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'login-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lsh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'lxqt-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mailbox-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mate-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mcron-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'memcached-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'method-access-control 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mingetty-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mod-muc-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'modem-manager-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mosquitto-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mpd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mpd-output 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mpd-partition 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mpd-plugin 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mumble-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mumble-server-public-registration-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mumi-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mumi-package-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mympd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mympd-ip-acl 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'mysql-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'namespace-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nar-herder-cached-compression-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nar-herder-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'network-address 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'network-link 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'network-manager-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'network-route 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nfs-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nftables-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-location-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-log-format-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-named-location-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nginx-upstream-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-channel 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-global 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-limits 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-operator 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-options 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-server 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ngircd-ssl 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nix-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nscd-cache 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nscd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'nslcd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ntp-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ntp-server 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'oci-container-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'oci-image 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opaque-cgit-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opaque-cups-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opaque-dovecot-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opaque-prosody-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opendht-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openntpd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'opensmtpd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openssh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openvpn-ccd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openvpn-client-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openvpn-remote-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openvpn-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'openvswitch-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'operation-access-control 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'package-database-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pagekite-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-krb5-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-mount-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pam-mount-volume 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'passdb-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'patchwork-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'patchwork-database-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'patchwork-settings-module 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pcscd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'php-fpm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'php-fpm-dynamic-process-manager-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'php-fpm-on-demand-process-manager-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'php-fpm-static-process-manager-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pipefs-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'plasma-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'plugin-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'policy-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'polkit-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'postgresql-config-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'postgresql-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'postgresql-role 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pounce-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'power-profiles-daemon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'powertop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'prometheus-node-exporter-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'prosody-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'protocol-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'pulseaudio-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'qemu-binfmt-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'qemu-guest-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'quassel-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-auth-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-encoding-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-logging-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-rights-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'radicale-storage-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rasdaemon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'readymedia-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'readymedia-media-directory 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'redis-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'repository-cgit-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'resize-file-system-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'restic-backup-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'restic-backup-job 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rngd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rootless-podman-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rottlog-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rpcbind-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rshiny-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rspamd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rsync-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'rsync-module 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'samba-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'screen-locker-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sddm-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'seatd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'service-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'service-type 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'shepherd-action 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'shepherd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'shepherd-service 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'slim-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'snuik-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'speakersafetyd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'spice-vdagent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'ssl-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'static-networking 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'strongswan-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sugar-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syncthing-config-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syncthing-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syncthing-device 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syncthing-folder 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syncthing-folder-device 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'sysctl-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'syslog-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'system-log-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tailon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tailon-configuration-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'thermald-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tlp-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tor-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tor-onion-service-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'tor-transport-plugin 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'transmission-daemon-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'udev-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'udisks-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unattended-upgrade-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unbound-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unbound-remote 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unbound-server 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unbound-zone 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'unix-listener-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'upower-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'usb-modeswitch-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'userdb-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'varnish-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'virtlog-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'virtual-build-machine 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'virtualhost-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'vnstat-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'webssh-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'wesnothd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'whoogle-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'wireguard-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'wireguard-peer 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'wpa-supplicant-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'wsdd-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xe-guest-utilities-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xen-guest-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xfce-desktop-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xorg-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'xvnc-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'yggdrasil-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zabbix-agent-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zabbix-front-end-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zabbix-server-configuration 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zone-entry 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zone-file 'scheme-indent-function 0))
|
|
|
|
|
|
(eval . (put 'zram-device-configuration 'scheme-indent-function 0)))))
|