diff options
| author | Hilton Chain <hako@ultrarare.space> | 2025-01-22 10:37:15 +0800 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2025-06-28 22:54:21 +0800 |
| commit | 926a17ea317d1f45c9fc06bcf49213eaad286500 (patch) | |
| tree | c387065b5cd36ccce24856703b0bef4aafdc68c0 | |
| parent | f076df5c6ad04353757efbe5b22fdca4a36b0f8a (diff) | |
.dir-locals: Update Scheme indentation.
See also:
https://codeberg.org/guix/guix/commit/00291ad00ffddde1e557defaec3e9fde3f20cfaf
* .dir-locals.el (scheme-mode): Add updates from Guix.
Add indentation rule for Nonguix code.
| -rw-r--r-- | .dir-locals.el | 595 |
1 files changed, 571 insertions, 24 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 4ab3cc8..cdad06d 100644 --- a/.dir-locals.el +++ b/.dir-locals.el | |||
| @@ -1,7 +1,25 @@ | |||
| 1 | ;;; SPDX-License-Identifier: GPL-3.0-or-later | 1 | ;;; SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | ;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org> | ||
| 3 | ;;; Copyright © 2013,2014 Mark H Weaver <mhw@netris.org> | ||
| 4 | ;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> | ||
| 5 | ;;; Copyright © 2015 David Thompson <davet@gnu.org> | ||
| 6 | ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> | ||
| 7 | ;;; Copyright © 2017 Alex Kost <alezost@gmail.com> | ||
| 8 | ;;; Copyright © 2018-2020 Caleb Ristvedt <caleb.ristvedt@cune.org> | ||
| 9 | ;;; Copyright © 2020-2023,2025 Maxim Cournoyer <maxim.cournoyer@gmail.com> | ||
| 10 | ;;; Copyright © 2020 Miguel Ángel Arruga Vivas <rosen644835@gmail.com> | ||
| 11 | ;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org> | ||
| 12 | ;;; Copyright © 2022 Liliana Marie Prikler <liliana.prikler@gmail.com> | ||
| 13 | ;;; Copyright © 2022 Andrew Tropin <andrew@trop.in> | ||
| 14 | ;;; Copyright © 2022 Brian Cully <bjc@kublai.com> | ||
| 15 | ;;; Copyright © 2023 (unmatched-parenthesis <paren@disroot.org> | ||
| 16 | ;;; Copyright © 2024 Christopher Baines <mail@cbaines.net> | ||
| 2 | ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz> | 17 | ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz> |
| 3 | ;; Per-directory local variables for GNU Emacs 23 and later. | 18 | ;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> |
| 19 | ;;; Copyright © 2025 David Elsing <david.elsing@posteo.net> | ||
| 20 | ;;; Copyright © 2025 Hilton Chain <hako@ultrarare.space> | ||
| 4 | 21 | ||
| 22 | ;; Per-directory local variables for GNU Emacs 23 and later. | ||
| 5 | ((nil | 23 | ((nil |
| 6 | . ((fill-column . 78) | 24 | . ((fill-column . 78) |
| 7 | (tab-width . 8) | 25 | (tab-width . 8) |
| @@ -12,15 +30,57 @@ | |||
| 12 | (bug-reference-bug-regexp | 30 | (bug-reference-bug-regexp |
| 13 | . "\\(#\\([0-9]+\\)\\)") | 31 | . "\\(#\\([0-9]+\\)\\)") |
| 14 | 32 | ||
| 15 | (geiser-insert-actual-lambda . nil))) | 33 | (geiser-insert-actual-lambda . nil) |
| 34 | |||
| 35 | (eval . (add-to-list 'completion-ignored-extensions ".go")))) | ||
| 36 | |||
| 16 | (c-mode . ((c-file-style . "gnu"))) | 37 | (c-mode . ((c-file-style . "gnu"))) |
| 38 | (emacs-lisp-mode . ((indent-tabs-mode . nil))) | ||
| 39 | (texinfo-mode . ((indent-tabs-mode . nil) | ||
| 40 | (fill-column . 72))) | ||
| 17 | (scheme-mode | 41 | (scheme-mode |
| 18 | . | 42 | . |
| 19 | ;; Note this next setting will use the current guix as the geiser binary; | 43 | (;; Note this next setting will use the current guix as the geiser binary; |
| 20 | ;; one working with a local guix checkout may want something different. | 44 | ;; one working with a local guix checkout may want something different. |
| 21 | ((geiser-guile-binary . ("guix" "repl")) | 45 | (geiser-guile-binary . ("guix" "repl")) |
| 22 | 46 | ||
| 47 | (eval . (put 'with-transformation 'scheme-indent-function 1)) | ||
| 48 | |||
| 49 | (eval . (put 'nonguix-container 'scheme-indent-function 0)) | ||
| 50 | (eval . (put 'nvidia-configuration 'scheme-indent-function 0)) | ||
| 51 | |||
| 52 | ;; Configurations below are copied from Guix. | ||
| 23 | (indent-tabs-mode . nil) | 53 | (indent-tabs-mode . nil) |
| 54 | |||
| 55 | ;; Emacs 28 changed the behavior of 'lisp-fill-paragraph', which causes the | ||
| 56 | ;; first line of package descriptions to extrude past 'fill-column', and | ||
| 57 | ;; somehow that is deemed more correct upstream (see: | ||
| 58 | ;; https://issues.guix.gnu.org/56197). | ||
| 59 | (eval . (progn | ||
| 60 | (require 'lisp-mode) | ||
| 61 | (defun emacs27-lisp-fill-paragraph (&optional justify) | ||
| 62 | (interactive "P") | ||
| 63 | (or (fill-comment-paragraph justify) | ||
| 64 | (let ((paragraph-start | ||
| 65 | (concat paragraph-start | ||
| 66 | "\\|\\s-*\\([(;\"]\\|\\s-:\\|`(\\|#'(\\)")) | ||
| 67 | (paragraph-separate | ||
| 68 | (concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) | ||
| 69 | (fill-column (if (and (integerp emacs-lisp-docstring-fill-column) | ||
| 70 | (derived-mode-p 'emacs-lisp-mode)) | ||
| 71 | emacs-lisp-docstring-fill-column | ||
| 72 | fill-column))) | ||
| 73 | (fill-paragraph justify)) | ||
| 74 | ;; Never return nil. | ||
| 75 | t)) | ||
| 76 | (setq-local fill-paragraph-function #'emacs27-lisp-fill-paragraph))) | ||
| 77 | |||
| 78 | ;; This notably allows '(' in Paredit to not insert a space when the | ||
| 79 | ;; preceding symbol is one of these. | ||
| 80 | (eval . (modify-syntax-entry ?~ "'")) | ||
| 81 | (eval . (modify-syntax-entry ?$ "'")) | ||
| 82 | (eval . (modify-syntax-entry ?+ "'")) | ||
| 83 | |||
| 24 | (eval . (put 'eval-when 'scheme-indent-function 1)) | 84 | (eval . (put 'eval-when 'scheme-indent-function 1)) |
| 25 | (eval . (put 'call-with-prompt 'scheme-indent-function 1)) | 85 | (eval . (put 'call-with-prompt 'scheme-indent-function 1)) |
| 26 | (eval . (put 'test-assert 'scheme-indent-function 1)) | 86 | (eval . (put 'test-assert 'scheme-indent-function 1)) |
| @@ -29,10 +89,19 @@ | |||
| 29 | (eval . (put 'test-equal 'scheme-indent-function 1)) | 89 | (eval . (put 'test-equal 'scheme-indent-function 1)) |
| 30 | (eval . (put 'test-eq 'scheme-indent-function 1)) | 90 | (eval . (put 'test-eq 'scheme-indent-function 1)) |
| 31 | (eval . (put 'call-with-input-string 'scheme-indent-function 1)) | 91 | (eval . (put 'call-with-input-string 'scheme-indent-function 1)) |
| 92 | (eval . (put 'call-with-port 'scheme-indent-function 1)) | ||
| 32 | (eval . (put 'guard 'scheme-indent-function 1)) | 93 | (eval . (put 'guard 'scheme-indent-function 1)) |
| 33 | (eval . (put 'lambda* 'scheme-indent-function 1)) | 94 | (eval . (put 'lambda* 'scheme-indent-function 1)) |
| 34 | (eval . (put 'substitute* 'scheme-indent-function 1)) | 95 | (eval . (put 'substitute* 'scheme-indent-function 1)) |
| 35 | (eval . (put 'match-record 'scheme-indent-function 2)) | 96 | (eval . (put 'match-record 'scheme-indent-function 3)) |
| 97 | (eval . (put 'match-record-lambda 'scheme-indent-function 2)) | ||
| 98 | |||
| 99 | ;; TODO: Contribute these to Emacs' scheme-mode. | ||
| 100 | (eval . (put 'let-keywords 'scheme-indent-function 3)) | ||
| 101 | |||
| 102 | ;; 'modify-inputs' and its keywords. | ||
| 103 | (eval . (put 'modify-inputs 'scheme-indent-function 1)) | ||
| 104 | (eval . (put 'replace 'scheme-indent-function 1)) | ||
| 36 | 105 | ||
| 37 | ;; 'modify-phases' and its keywords. | 106 | ;; 'modify-phases' and its keywords. |
| 38 | (eval . (put 'modify-phases 'scheme-indent-function 1)) | 107 | (eval . (put 'modify-phases 'scheme-indent-function 1)) |
| @@ -42,17 +111,15 @@ | |||
| 42 | 111 | ||
| 43 | (eval . (put 'modify-services 'scheme-indent-function 1)) | 112 | (eval . (put 'modify-services 'scheme-indent-function 1)) |
| 44 | (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) | 113 | (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) |
| 45 | (eval . (put 'package 'scheme-indent-function 0)) | 114 | (eval . (put 'with-file-lock 'scheme-indent-function 1)) |
| 46 | (eval . (put 'origin 'scheme-indent-function 0)) | 115 | (eval . (put 'with-file-lock/no-wait 'scheme-indent-function 1)) |
| 47 | (eval . (put 'build-system 'scheme-indent-function 0)) | 116 | (eval . (put 'with-profile-lock 'scheme-indent-function 1)) |
| 48 | (eval . (put 'bag 'scheme-indent-function 0)) | 117 | (eval . (put 'with-writable-file 'scheme-indent-function 2)) |
| 49 | (eval . (put 'graft 'scheme-indent-function 0)) | 118 | |
| 50 | (eval . (put 'operating-system 'scheme-indent-function 0)) | 119 | (eval . (put 'package/inherit 'scheme-indent-function 1)) |
| 51 | (eval . (put 'file-system 'scheme-indent-function 0)) | ||
| 52 | (eval . (put 'manifest-entry 'scheme-indent-function 0)) | ||
| 53 | (eval . (put 'manifest-pattern 'scheme-indent-function 0)) | ||
| 54 | (eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1)) | 120 | (eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1)) |
| 55 | (eval . (put 'with-store 'scheme-indent-function 1)) | 121 | (eval . (put 'with-store 'scheme-indent-function 1)) |
| 122 | (eval . (put 'with-store/non-blocking 'scheme-indent-function 1)) | ||
| 56 | (eval . (put 'with-external-store 'scheme-indent-function 1)) | 123 | (eval . (put 'with-external-store 'scheme-indent-function 1)) |
| 57 | (eval . (put 'with-error-handling 'scheme-indent-function 0)) | 124 | (eval . (put 'with-error-handling 'scheme-indent-function 0)) |
| 58 | (eval . (put 'with-mutex 'scheme-indent-function 1)) | 125 | (eval . (put 'with-mutex 'scheme-indent-function 1)) |
| @@ -72,6 +139,7 @@ | |||
| 72 | (eval . (put 'with-derivation-substitute 'scheme-indent-function 2)) | 139 | (eval . (put 'with-derivation-substitute 'scheme-indent-function 2)) |
| 73 | (eval . (put 'with-status-report 'scheme-indent-function 1)) | 140 | (eval . (put 'with-status-report 'scheme-indent-function 1)) |
| 74 | (eval . (put 'with-status-verbosity 'scheme-indent-function 1)) | 141 | (eval . (put 'with-status-verbosity 'scheme-indent-function 1)) |
| 142 | (eval . (put 'with-build-handler 'scheme-indent-function 1)) | ||
| 75 | 143 | ||
| 76 | (eval . (put 'mlambda 'scheme-indent-function 1)) | 144 | (eval . (put 'mlambda 'scheme-indent-function 1)) |
| 77 | (eval . (put 'mlambdaq 'scheme-indent-function 1)) | 145 | (eval . (put 'mlambdaq 'scheme-indent-function 1)) |
| @@ -82,26 +150,505 @@ | |||
| 82 | (eval . (put 'munless 'scheme-indent-function 1)) | 150 | (eval . (put 'munless 'scheme-indent-function 1)) |
| 83 | (eval . (put 'mlet* 'scheme-indent-function 2)) | 151 | (eval . (put 'mlet* 'scheme-indent-function 2)) |
| 84 | (eval . (put 'mlet 'scheme-indent-function 2)) | 152 | (eval . (put 'mlet 'scheme-indent-function 2)) |
| 153 | (eval . (put 'state-parameterize 'scheme-indent-function 2)) | ||
| 154 | (eval . (put 'store-parameterize 'scheme-indent-function 2)) | ||
| 85 | (eval . (put 'run-with-store 'scheme-indent-function 1)) | 155 | (eval . (put 'run-with-store 'scheme-indent-function 1)) |
| 86 | (eval . (put 'run-with-state 'scheme-indent-function 1)) | 156 | (eval . (put 'run-with-state 'scheme-indent-function 1)) |
| 87 | (eval . (put 'wrap-program 'scheme-indent-function 1)) | 157 | (eval . (put 'wrap-program 'scheme-indent-function 1)) |
| 158 | (eval . (put 'wrap-script 'scheme-indent-function 1)) | ||
| 88 | (eval . (put 'with-imported-modules 'scheme-indent-function 1)) | 159 | (eval . (put 'with-imported-modules 'scheme-indent-function 1)) |
| 89 | (eval . (put 'with-extensions 'scheme-indent-function 1)) | 160 | (eval . (put 'with-extensions 'scheme-indent-function 1)) |
| 161 | (eval . (put 'with-parameters 'scheme-indent-function 1)) | ||
| 162 | (eval . (put 'let-system 'scheme-indent-function 1)) | ||
| 163 | (eval . (put 'with-build-variables 'scheme-indent-function 2)) | ||
| 90 | 164 | ||
| 91 | (eval . (put 'with-database 'scheme-indent-function 2)) | 165 | (eval . (put 'with-database 'scheme-indent-function 2)) |
| 92 | (eval . (put 'call-with-transaction 'scheme-indent-function 2)) | 166 | (eval . (put 'call-with-database 'scheme-indent-function 1)) |
| 167 | (eval . (put 'call-with-transaction 'scheme-indent-function 1)) | ||
| 168 | (eval . (put 'call-with-retrying-transaction 'scheme-indent-function 1)) | ||
| 93 | 169 | ||
| 94 | (eval . (put 'call-with-container 'scheme-indent-function 1)) | 170 | (eval . (put 'call-with-container 'scheme-indent-function 1)) |
| 95 | (eval . (put 'container-excursion 'scheme-indent-function 1)) | 171 | (eval . (put 'container-excursion 'scheme-indent-function 1)) |
| 96 | (eval . (put 'eventually 'scheme-indent-function 1)) | 172 | (eval . (put 'eventually 'scheme-indent-function 1)) |
| 97 | 173 | ||
| 98 | (eval . (put 'call-with-progress-reporter 'scheme-indent-function 1)) | 174 | (eval . (put 'call-with-progress-reporter 'scheme-indent-function 1)) |
| 175 | (eval . (put 'with-repository 'scheme-indent-function 2)) | ||
| 176 | (eval . (put 'with-temporary-git-repository 'scheme-indent-function 2)) | ||
| 177 | (eval . (put 'with-environment-variables 'scheme-indent-function 1)) | ||
| 178 | (eval . (put 'with-fresh-gnupg-setup 'scheme-indent-function 1)) | ||
| 99 | 179 | ||
| 100 | ;; This notably allows '(' in Paredit to not insert a space when the | 180 | (eval . (put 'with-paginated-output-port 'scheme-indent-function 1)) |
| 101 | ;; preceding symbol is one of these. | 181 | |
| 102 | (eval . (modify-syntax-entry ?~ "'")) | 182 | (eval . (put 'with-shepherd-action 'scheme-indent-function 3)) |
| 103 | (eval . (modify-syntax-entry ?$ "'")) | 183 | |
| 104 | (eval . (modify-syntax-entry ?+ "'")))) | 184 | (eval . (put 'with-http-server 'scheme-indent-function 1)) |
| 105 | (emacs-lisp-mode . ((indent-tabs-mode . nil))) | 185 | |
| 106 | (texinfo-mode . ((indent-tabs-mode . nil) | 186 | ;; Record constructors. |
| 107 | (fill-column . 72)))) | 187 | ;; URIs for origin methods. |
| 188 | (eval . (put 'android-repo-reference 'scheme-indent-function 0)) | ||
| 189 | (eval . (put 'bzr-reference 'scheme-indent-function 0)) | ||
| 190 | (eval . (put 'cvs-reference 'scheme-indent-function 0)) | ||
| 191 | (eval . (put 'git-checkout 'scheme-indent-function 0)) | ||
| 192 | (eval . (put 'git-reference 'scheme-indent-function 0)) | ||
| 193 | (eval . (put 'hg-reference 'scheme-indent-function 0)) | ||
| 194 | (eval . (put 'svn-multi-reference 'scheme-indent-function 0)) | ||
| 195 | (eval . (put 'svn-reference 'scheme-indent-function 0)) | ||
| 196 | |||
| 197 | ;; guix/ | ||
| 198 | (eval . (put 'avahi-service 'scheme-indent-function 0)) | ||
| 199 | (eval . (put 'bag 'scheme-indent-function 0)) | ||
| 200 | (eval . (put 'build-status 'scheme-indent-function 0)) | ||
| 201 | (eval . (put 'build-system 'scheme-indent-function 0)) | ||
| 202 | (eval . (put 'channel 'scheme-indent-function 0)) | ||
| 203 | (eval . (put 'gnu-package-descriptor 'scheme-indent-function 0)) | ||
| 204 | (eval . (put 'graft 'scheme-indent-function 0)) | ||
| 205 | (eval . (put 'lint-checker 'scheme-indent-function 0)) | ||
| 206 | (eval . (put 'lint-warning 'scheme-indent-function 0)) | ||
| 207 | (eval . (put 'manifest-entry 'scheme-indent-function 0)) | ||
| 208 | (eval . (put 'manifest-pattern 'scheme-indent-function 0)) | ||
| 209 | (eval . (put 'manifest-transaction 'scheme-indent-function 0)) | ||
| 210 | (eval . (put 'node-type 'scheme-indent-function 0)) | ||
| 211 | (eval . (put 'origin 'scheme-indent-function 0)) | ||
| 212 | (eval . (put 'package 'scheme-indent-function 0)) | ||
| 213 | (eval . (put 'platform 'scheme-indent-function 0)) | ||
| 214 | (eval . (put 'profile 'scheme-indent-function 0)) | ||
| 215 | (eval . (put 'progress-reporter 'scheme-indent-function 0)) | ||
| 216 | (eval . (put 'search-path-specification 'scheme-indent-function 0)) | ||
| 217 | (eval . (put 'upstream-input 'scheme-indent-function 0)) | ||
| 218 | (eval . (put 'upstream-source 'scheme-indent-function 0)) | ||
| 219 | (eval . (put 'upstream-updater 'scheme-indent-function 0)) | ||
| 220 | |||
| 221 | ;; gnu/ | ||
| 222 | (eval . (put 'bootloader 'scheme-indent-function 0)) | ||
| 223 | (eval . (put 'bootloader-configuration 'scheme-indent-function 0)) | ||
| 224 | (eval . (put 'image 'scheme-indent-function 0)) | ||
| 225 | (eval . (put 'image-type 'scheme-indent-function 0)) | ||
| 226 | (eval . (put 'menu-entry 'scheme-indent-function 0)) | ||
| 227 | (eval . (put 'partition 'scheme-indent-function 0)) | ||
| 228 | |||
| 229 | ;; gnu/machine | ||
| 230 | (eval . (put 'digital-ocean-configuration 'scheme-indent-function 0)) | ||
| 231 | (eval . (put 'environment-type 'scheme-indent-function 0)) | ||
| 232 | (eval . (put 'hetzner-configuration 'scheme-indent-function 0)) | ||
| 233 | (eval . (put 'machine 'scheme-indent-function 0)) | ||
| 234 | (eval . (put 'machine-ssh-configuration 'scheme-indent-function 0)) | ||
| 235 | |||
| 236 | ;; gnu/system | ||
| 237 | (eval . (put 'boot-parameters 'scheme-indent-function 0)) | ||
| 238 | (eval . (put 'file-system 'scheme-indent-function 0)) | ||
| 239 | (eval . (put 'file-system-mapping 'scheme-indent-function 0)) | ||
| 240 | (eval . (put 'locale-definition 'scheme-indent-function 0)) | ||
| 241 | (eval . (put 'mapped-device 'scheme-indent-function 0)) | ||
| 242 | (eval . (put 'mapped-device-kind 'scheme-indent-function 0)) | ||
| 243 | (eval . (put 'name-service 'scheme-indent-function 0)) | ||
| 244 | (eval . (put 'name-service-switch 'scheme-indent-function 0)) | ||
| 245 | (eval . (put 'operating-system 'scheme-indent-function 0)) | ||
| 246 | (eval . (put 'pam-configuration 'scheme-indent-function 0)) | ||
| 247 | (eval . (put 'pam-entry 'scheme-indent-function 0)) | ||
| 248 | (eval . (put 'pam-extension 'scheme-indent-function 0)) | ||
| 249 | (eval . (put 'pam-service 'scheme-indent-function 0)) | ||
| 250 | (eval . (put 'privileged-program 'scheme-indent-function 0)) | ||
| 251 | (eval . (put 'subid-range 'scheme-indent-function 0)) | ||
| 252 | (eval . (put 'subids-configuration 'scheme-indent-function 0)) | ||
| 253 | (eval . (put 'subids-extension 'scheme-indent-function 0)) | ||
| 254 | (eval . (put 'swap-space 'scheme-indent-function 0)) | ||
| 255 | (eval . (put 'user-account 'scheme-indent-function 0)) | ||
| 256 | (eval . (put 'user-group 'scheme-indent-function 0)) | ||
| 257 | (eval . (put 'virtual-machine 'scheme-indent-function 0)) | ||
| 258 | |||
| 259 | ;; gnu/home | ||
| 260 | (eval . (put 'home-bash-configuration 'scheme-indent-function 0)) | ||
| 261 | (eval . (put 'home-bash-extension 'scheme-indent-function 0)) | ||
| 262 | (eval . (put 'home-batsignal-configuration 'scheme-indent-function 0)) | ||
| 263 | (eval . (put 'home-beets-configuration 'scheme-indent-function 0)) | ||
| 264 | (eval . (put 'home-dbus-configuration 'scheme-indent-function 0)) | ||
| 265 | (eval . (put 'home-dotfiles-configuration 'scheme-indent-function 0)) | ||
| 266 | (eval . (put 'home-environment 'scheme-indent-function 0)) | ||
| 267 | (eval . (put 'home-fish-configuration 'scheme-indent-function 0)) | ||
| 268 | (eval . (put 'home-fish-extension 'scheme-indent-function 0)) | ||
| 269 | (eval . (put 'home-gpg-agent-configuration 'scheme-indent-function 0)) | ||
| 270 | (eval . (put 'home-inputrc-configuration 'scheme-indent-function 0)) | ||
| 271 | (eval . (put 'home-kodi-configuration 'scheme-indent-function 0)) | ||
| 272 | (eval . (put 'home-mcron-configuration 'scheme-indent-function 0)) | ||
| 273 | (eval . (put 'home-msmtp-configuration 'scheme-indent-function 0)) | ||
| 274 | (eval . (put 'home-openssh-configuration 'scheme-indent-function 0)) | ||
| 275 | (eval . (put 'home-parcimonie-configuration 'scheme-indent-function 0)) | ||
| 276 | (eval . (put 'home-pipewire-configuration 'scheme-indent-function 0)) | ||
| 277 | (eval . (put 'home-redshift-configuration 'scheme-indent-function 0)) | ||
| 278 | (eval . (put 'home-shell-profile-configuration 'scheme-indent-function 0)) | ||
| 279 | (eval . (put 'home-shepherd-configuration 'scheme-indent-function 0)) | ||
| 280 | (eval . (put 'home-ssh-agent-configuration 'scheme-indent-function 0)) | ||
| 281 | (eval . (put 'home-unclutter-configuration 'scheme-indent-function 0)) | ||
| 282 | (eval . (put 'home-xdg-base-directories-configuration 'scheme-indent-function 0)) | ||
| 283 | (eval . (put 'home-xdg-mime-applications-configuration 'scheme-indent-function 0)) | ||
| 284 | (eval . (put 'home-xdg-user-directories-configuration 'scheme-indent-function 0)) | ||
| 285 | (eval . (put 'home-xmodmap-configuration 'scheme-indent-function 0)) | ||
| 286 | (eval . (put 'home-znc-configuration 'scheme-indent-function 0)) | ||
| 287 | (eval . (put 'home-zsh-configuration 'scheme-indent-function 0)) | ||
| 288 | (eval . (put 'home-zsh-extension 'scheme-indent-function 0)) | ||
| 289 | (eval . (put 'msmtp-account 'scheme-indent-function 0)) | ||
| 290 | (eval . (put 'msmtp-configuration 'scheme-indent-function 0)) | ||
| 291 | (eval . (put 'openssh-host 'scheme-indent-function 0)) | ||
| 292 | (eval . (put 'point 'scheme-indent-function 0)) | ||
| 293 | (eval . (put 'proxy-jump 'scheme-indent-function 0)) | ||
| 294 | (eval . (put 'sway-bar 'scheme-indent-function 0)) | ||
| 295 | (eval . (put 'sway-border-color 'scheme-indent-function 0)) | ||
| 296 | (eval . (put 'sway-color 'scheme-indent-function 0)) | ||
| 297 | (eval . (put 'sway-configuration 'scheme-indent-function 0)) | ||
| 298 | (eval . (put 'sway-input 'scheme-indent-function 0)) | ||
| 299 | (eval . (put 'sway-mode 'scheme-indent-function 0)) | ||
| 300 | (eval . (put 'sway-output 'scheme-indent-function 0)) | ||
| 301 | (eval . (put 'xdg-desktop-action 'scheme-indent-function 0)) | ||
| 302 | (eval . (put 'xdg-desktop-entry 'scheme-indent-function 0)) | ||
| 303 | |||
| 304 | ;; gnu/services | ||
| 305 | (eval . (put 'agate-configuration 'scheme-indent-function 0)) | ||
| 306 | (eval . (put 'agetty-configuration 'scheme-indent-function 0)) | ||
| 307 | (eval . (put 'alsa-configuration 'scheme-indent-function 0)) | ||
| 308 | (eval . (put 'anonip-configuration 'scheme-indent-function 0)) | ||
| 309 | (eval . (put 'apcupsd-configuration 'scheme-indent-function 0)) | ||
| 310 | (eval . (put 'apcupsd-event-handlers 'scheme-indent-function 0)) | ||
| 311 | (eval . (put 'auditd-configuration 'scheme-indent-function 0)) | ||
| 312 | (eval . (put 'autossh-configuration 'scheme-indent-function 0)) | ||
| 313 | (eval . (put 'avahi-configuration 'scheme-indent-function 0)) | ||
| 314 | (eval . (put 'backend-userroot-configuration 'scheme-indent-function 0)) | ||
| 315 | (eval . (put 'bffe-configuration 'scheme-indent-function 0)) | ||
| 316 | (eval . (put 'bitlbee-configuration 'scheme-indent-function 0)) | ||
| 317 | (eval . (put 'bluetooth-configuration 'scheme-indent-function 0)) | ||
| 318 | (eval . (put 'cachefilesd-configuration 'scheme-indent-function 0)) | ||
| 319 | (eval . (put 'certbot-configuration 'scheme-indent-function 0)) | ||
| 320 | (eval . (put 'cgit-configuration 'scheme-indent-function 0)) | ||
| 321 | (eval . (put 'configuration-field 'scheme-indent-function 0)) | ||
| 322 | (eval . (put 'connman-configuration 'scheme-indent-function 0)) | ||
| 323 | (eval . (put 'connman-general-configuration 'scheme-indent-function 0)) | ||
| 324 | (eval . (put 'containerd-configuration 'scheme-indent-function 0)) | ||
| 325 | (eval . (put 'cuirass-configuration 'scheme-indent-function 0)) | ||
| 326 | (eval . (put 'cuirass-remote-server-configuration 'scheme-indent-function 0)) | ||
| 327 | (eval . (put 'cuirass-remote-worker-configuration 'scheme-indent-function 0)) | ||
| 328 | (eval . (put 'cups-configuration 'scheme-indent-function 0)) | ||
| 329 | (eval . (put 'darkstat-configuration 'scheme-indent-function 0)) | ||
| 330 | (eval . (put 'dbus-configuration 'scheme-indent-function 0)) | ||
| 331 | (eval . (put 'dconf-keyfile 'scheme-indent-function 0)) | ||
| 332 | (eval . (put 'dconf-profile 'scheme-indent-function 0)) | ||
| 333 | (eval . (put 'debootstrap-configuration 'scheme-indent-function 0)) | ||
| 334 | (eval . (put 'dhcp-client-configuration 'scheme-indent-function 0)) | ||
| 335 | (eval . (put 'dhcpcd-configuration 'scheme-indent-function 0)) | ||
| 336 | (eval . (put 'dhcpd-configuration 'scheme-indent-function 0)) | ||
| 337 | (eval . (put 'dicod-configuration 'scheme-indent-function 0)) | ||
| 338 | (eval . (put 'dict-configuration 'scheme-indent-function 0)) | ||
| 339 | (eval . (put 'directory-server-instance-configuration 'scheme-indent-function 0)) | ||
| 340 | (eval . (put 'dnsmasq-configuration 'scheme-indent-function 0)) | ||
| 341 | (eval . (put 'docker-configuration 'scheme-indent-function 0)) | ||
| 342 | (eval . (put 'dovecot-configuration 'scheme-indent-function 0)) | ||
| 343 | (eval . (put 'dropbear-configuration 'scheme-indent-function 0)) | ||
| 344 | (eval . (put 'earlyoom-configuration 'scheme-indent-function 0)) | ||
| 345 | (eval . (put 'elogind-configuration 'scheme-indent-function 0)) | ||
| 346 | (eval . (put 'enlightenment-desktop-configuration 'scheme-indent-function 0)) | ||
| 347 | (eval . (put 'exim-configuration 'scheme-indent-function 0)) | ||
| 348 | (eval . (put 'ext-component-configuration 'scheme-indent-function 0)) | ||
| 349 | (eval . (put 'fail2ban-configuration 'scheme-indent-function 0)) | ||
| 350 | (eval . (put 'fail2ban-ignore-cache-configuration 'scheme-indent-function 0)) | ||
| 351 | (eval . (put 'fail2ban-jail-action-configuration 'scheme-indent-function 0)) | ||
| 352 | (eval . (put 'fail2ban-jail-configuration 'scheme-indent-function 0)) | ||
| 353 | (eval . (put 'fail2ban-jail-filter-configuration 'scheme-indent-function 0)) | ||
| 354 | (eval . (put 'fcgiwrap-configuration 'scheme-indent-function 0)) | ||
| 355 | (eval . (put 'fifo-listener-configuration 'scheme-indent-function 0)) | ||
| 356 | (eval . (put 'file-database-configuration 'scheme-indent-function 0)) | ||
| 357 | (eval . (put 'files-configuration 'scheme-indent-function 0)) | ||
| 358 | (eval . (put 'fprintd-configuration 'scheme-indent-function 0)) | ||
| 359 | (eval . (put 'fstrim-configuration 'scheme-indent-function 0)) | ||
| 360 | (eval . (put 'ganeti-cleaner-configuration 'scheme-indent-function 0)) | ||
| 361 | (eval . (put 'ganeti-confd-configuration 'scheme-indent-function 0)) | ||
| 362 | (eval . (put 'ganeti-configuration 'scheme-indent-function 0)) | ||
| 363 | (eval . (put 'ganeti-kvmd-configuration 'scheme-indent-function 0)) | ||
| 364 | (eval . (put 'ganeti-luxid-configuration 'scheme-indent-function 0)) | ||
| 365 | (eval . (put 'ganeti-metad-configuration 'scheme-indent-function 0)) | ||
| 366 | (eval . (put 'ganeti-mond-configuration 'scheme-indent-function 0)) | ||
| 367 | (eval . (put 'ganeti-noded-configuration 'scheme-indent-function 0)) | ||
| 368 | (eval . (put 'ganeti-os 'scheme-indent-function 0)) | ||
| 369 | (eval . (put 'ganeti-os-variant 'scheme-indent-function 0)) | ||
| 370 | (eval . (put 'ganeti-rapi-configuration 'scheme-indent-function 0)) | ||
| 371 | (eval . (put 'ganeti-watcher-configuration 'scheme-indent-function 0)) | ||
| 372 | (eval . (put 'ganeti-wconfd-configuration 'scheme-indent-function 0)) | ||
| 373 | (eval . (put 'gdm-configuration 'scheme-indent-function 0)) | ||
| 374 | (eval . (put 'geoclue-configuration 'scheme-indent-function 0)) | ||
| 375 | (eval . (put 'getmail-configuration 'scheme-indent-function 0)) | ||
| 376 | (eval . (put 'getmail-configuration-file 'scheme-indent-function 0)) | ||
| 377 | (eval . (put 'getmail-destination-configuration 'scheme-indent-function 0)) | ||
| 378 | (eval . (put 'getmail-options-configuration 'scheme-indent-function 0)) | ||
| 379 | (eval . (put 'getmail-retriever-configuration 'scheme-indent-function 0)) | ||
| 380 | (eval . (put 'git-daemon-configuration 'scheme-indent-function 0)) | ||
| 381 | (eval . (put 'git-http-configuration 'scheme-indent-function 0)) | ||
| 382 | (eval . (put 'gitile-configuration 'scheme-indent-function 0)) | ||
| 383 | (eval . (put 'gitolite-configuration 'scheme-indent-function 0)) | ||
| 384 | (eval . (put 'gitolite-git-configuration 'scheme-indent-function 0)) | ||
| 385 | (eval . (put 'gitolite-rc-file 'scheme-indent-function 0)) | ||
| 386 | (eval . (put 'gmnisrv-configuration 'scheme-indent-function 0)) | ||
| 387 | (eval . (put 'gnome-desktop-configuration 'scheme-indent-function 0)) | ||
| 388 | (eval . (put 'gnome-keyring-configuration 'scheme-indent-function 0)) | ||
| 389 | (eval . (put 'gpm-configuration 'scheme-indent-function 0)) | ||
| 390 | (eval . (put 'greetd-agreety-session 'scheme-indent-function 0)) | ||
| 391 | (eval . (put 'greetd-configuration 'scheme-indent-function 0)) | ||
| 392 | (eval . (put 'greetd-gtkgreet-sway-session 'scheme-indent-function 0)) | ||
| 393 | (eval . (put 'greetd-terminal-configuration 'scheme-indent-function 0)) | ||
| 394 | (eval . (put 'greetd-user-session 'scheme-indent-function 0)) | ||
| 395 | (eval . (put 'greetd-wlgreet-configuration 'scheme-indent-function 0)) | ||
| 396 | (eval . (put 'greetd-wlgreet-session 'scheme-indent-function 0)) | ||
| 397 | (eval . (put 'greetd-wlgreet-sway-session 'scheme-indent-function 0)) | ||
| 398 | (eval . (put 'gss-configuration 'scheme-indent-function 0)) | ||
| 399 | (eval . (put 'guix-build-coordinator-agent-configuration 'scheme-indent-function 0)) | ||
| 400 | (eval . (put 'guix-build-coordinator-agent-dynamic-auth 'scheme-indent-function 0)) | ||
| 401 | (eval . (put 'guix-build-coordinator-agent-dynamic-auth-with-file 'scheme-indent-function 0)) | ||
| 402 | (eval . (put 'guix-build-coordinator-agent-password-auth 'scheme-indent-function 0)) | ||
| 403 | (eval . (put 'guix-build-coordinator-agent-password-file-auth 'scheme-indent-function 0)) | ||
| 404 | (eval . (put 'guix-build-coordinator-configuration 'scheme-indent-function 0)) | ||
| 405 | (eval . (put 'guix-configuration 'scheme-indent-function 0)) | ||
| 406 | (eval . (put 'guix-data-service-configuration 'scheme-indent-function 0)) | ||
| 407 | (eval . (put 'guix-extension 'scheme-indent-function 0)) | ||
| 408 | (eval . (put 'guix-publish-configuration 'scheme-indent-function 0)) | ||
| 409 | (eval . (put 'gvfs-configuration 'scheme-indent-function 0)) | ||
| 410 | (eval . (put 'host 'scheme-indent-function 0)) | ||
| 411 | (eval . (put 'hostapd-configuration 'scheme-indent-function 0)) | ||
| 412 | (eval . (put 'hpcguix-web-configuration 'scheme-indent-function 0)) | ||
| 413 | (eval . (put 'httpd-config-file 'scheme-indent-function 0)) | ||
| 414 | (eval . (put 'httpd-configuration 'scheme-indent-function 0)) | ||
| 415 | (eval . (put 'httpd-module 'scheme-indent-function 0)) | ||
| 416 | (eval . (put 'httpd-virtualhost 'scheme-indent-function 0)) | ||
| 417 | (eval . (put 'hurd-console-configuration 'scheme-indent-function 0)) | ||
| 418 | (eval . (put 'hurd-getty-configuration 'scheme-indent-function 0)) | ||
| 419 | (eval . (put 'hurd-vm-configuration 'scheme-indent-function 0)) | ||
| 420 | (eval . (put 'idmap-configuration 'scheme-indent-function 0)) | ||
| 421 | (eval . (put 'imap4d-configuration 'scheme-indent-function 0)) | ||
| 422 | (eval . (put 'inet-listener-configuration 'scheme-indent-function 0)) | ||
| 423 | (eval . (put 'inetd-configuration 'scheme-indent-function 0)) | ||
| 424 | (eval . (put 'inetd-entry 'scheme-indent-function 0)) | ||
| 425 | (eval . (put 'inputattach-configuration 'scheme-indent-function 0)) | ||
| 426 | (eval . (put 'int-component-configuration 'scheme-indent-function 0)) | ||
| 427 | (eval . (put 'ipfs-configuration 'scheme-indent-function 0)) | ||
| 428 | (eval . (put 'iptables-configuration 'scheme-indent-function 0)) | ||
| 429 | (eval . (put 'iwd-configuration 'scheme-indent-function 0)) | ||
| 430 | (eval . (put 'iwd-general-settings 'scheme-indent-function 0)) | ||
| 431 | (eval . (put 'iwd-network-settings 'scheme-indent-function 0)) | ||
| 432 | (eval . (put 'iwd-scan-settings 'scheme-indent-function 0)) | ||
| 433 | (eval . (put 'iwd-settings 'scheme-indent-function 0)) | ||
| 434 | (eval . (put 'jami-account 'scheme-indent-function 0)) | ||
| 435 | (eval . (put 'jami-configuration 'scheme-indent-function 0)) | ||
| 436 | (eval . (put 'joycond-configuration 'scheme-indent-function 0)) | ||
| 437 | (eval . (put 'keepalived-configuration 'scheme-indent-function 0)) | ||
| 438 | (eval . (put 'kmscon-configuration 'scheme-indent-function 0)) | ||
| 439 | (eval . (put 'knot-acl-configuration 'scheme-indent-function 0)) | ||
| 440 | (eval . (put 'knot-configuration 'scheme-indent-function 0)) | ||
| 441 | (eval . (put 'knot-key-configuration 'scheme-indent-function 0)) | ||
| 442 | (eval . (put 'knot-keystore-configuration 'scheme-indent-function 0)) | ||
| 443 | (eval . (put 'knot-policy-configuration 'scheme-indent-function 0)) | ||
| 444 | (eval . (put 'knot-remote-configuration 'scheme-indent-function 0)) | ||
| 445 | (eval . (put 'knot-resolver-configuration 'scheme-indent-function 0)) | ||
| 446 | (eval . (put 'knot-zone-configuration 'scheme-indent-function 0)) | ||
| 447 | (eval . (put 'krb5-configuration 'scheme-indent-function 0)) | ||
| 448 | (eval . (put 'krb5-realm 'scheme-indent-function 0)) | ||
| 449 | (eval . (put 'kwallet-configuration 'scheme-indent-function 0)) | ||
| 450 | (eval . (put 'ladspa-configuration 'scheme-indent-function 0)) | ||
| 451 | (eval . (put 'laminar-configuration 'scheme-indent-function 0)) | ||
| 452 | (eval . (put 'libvirt-configuration 'scheme-indent-function 0)) | ||
| 453 | (eval . (put 'lightdm-configuration 'scheme-indent-function 0)) | ||
| 454 | (eval . (put 'lightdm-gtk-greeter-configuration 'scheme-indent-function 0)) | ||
| 455 | (eval . (put 'lightdm-seat-configuration 'scheme-indent-function 0)) | ||
| 456 | (eval . (put 'linux-builder-configuration 'scheme-indent-function 0)) | ||
| 457 | (eval . (put 'lirc-configuration 'scheme-indent-function 0)) | ||
| 458 | (eval . (put 'live-service 'scheme-indent-function 0)) | ||
| 459 | (eval . (put 'localed-configuration 'scheme-indent-function 0)) | ||
| 460 | (eval . (put 'location-access-control 'scheme-indent-function 0)) | ||
| 461 | (eval . (put 'log-cleanup-configuration 'scheme-indent-function 0)) | ||
| 462 | (eval . (put 'log-rotation 'scheme-indent-function 0)) | ||
| 463 | (eval . (put 'log-rotation-configuration 'scheme-indent-function 0)) | ||
| 464 | (eval . (put 'login-configuration 'scheme-indent-function 0)) | ||
| 465 | (eval . (put 'lsh-configuration 'scheme-indent-function 0)) | ||
| 466 | (eval . (put 'lxqt-desktop-configuration 'scheme-indent-function 0)) | ||
| 467 | (eval . (put 'mailbox-configuration 'scheme-indent-function 0)) | ||
| 468 | (eval . (put 'mate-desktop-configuration 'scheme-indent-function 0)) | ||
| 469 | (eval . (put 'mcron-configuration 'scheme-indent-function 0)) | ||
| 470 | (eval . (put 'memcached-configuration 'scheme-indent-function 0)) | ||
| 471 | (eval . (put 'method-access-control 'scheme-indent-function 0)) | ||
| 472 | (eval . (put 'mingetty-configuration 'scheme-indent-function 0)) | ||
| 473 | (eval . (put 'mod-muc-configuration 'scheme-indent-function 0)) | ||
| 474 | (eval . (put 'modem-manager-configuration 'scheme-indent-function 0)) | ||
| 475 | (eval . (put 'mosquitto-configuration 'scheme-indent-function 0)) | ||
| 476 | (eval . (put 'mpd-configuration 'scheme-indent-function 0)) | ||
| 477 | (eval . (put 'mpd-output 'scheme-indent-function 0)) | ||
| 478 | (eval . (put 'mpd-partition 'scheme-indent-function 0)) | ||
| 479 | (eval . (put 'mpd-plugin 'scheme-indent-function 0)) | ||
| 480 | (eval . (put 'mumble-server-configuration 'scheme-indent-function 0)) | ||
| 481 | (eval . (put 'mumble-server-public-registration-configuration 'scheme-indent-function 0)) | ||
| 482 | (eval . (put 'mumi-configuration 'scheme-indent-function 0)) | ||
| 483 | (eval . (put 'mumi-package-configuration 'scheme-indent-function 0)) | ||
| 484 | (eval . (put 'mympd-configuration 'scheme-indent-function 0)) | ||
| 485 | (eval . (put 'mympd-ip-acl 'scheme-indent-function 0)) | ||
| 486 | (eval . (put 'mysql-configuration 'scheme-indent-function 0)) | ||
| 487 | (eval . (put 'namespace-configuration 'scheme-indent-function 0)) | ||
| 488 | (eval . (put 'nar-herder-cached-compression-configuration 'scheme-indent-function 0)) | ||
| 489 | (eval . (put 'nar-herder-configuration 'scheme-indent-function 0)) | ||
| 490 | (eval . (put 'network-address 'scheme-indent-function 0)) | ||
| 491 | (eval . (put 'network-link 'scheme-indent-function 0)) | ||
| 492 | (eval . (put 'network-manager-configuration 'scheme-indent-function 0)) | ||
| 493 | (eval . (put 'network-route 'scheme-indent-function 0)) | ||
| 494 | (eval . (put 'nfs-configuration 'scheme-indent-function 0)) | ||
| 495 | (eval . (put 'nftables-configuration 'scheme-indent-function 0)) | ||
| 496 | (eval . (put 'nginx-configuration 'scheme-indent-function 0)) | ||
| 497 | (eval . (put 'nginx-location-configuration 'scheme-indent-function 0)) | ||
| 498 | (eval . (put 'nginx-log-format-configuration 'scheme-indent-function 0)) | ||
| 499 | (eval . (put 'nginx-named-location-configuration 'scheme-indent-function 0)) | ||
| 500 | (eval . (put 'nginx-server-configuration 'scheme-indent-function 0)) | ||
| 501 | (eval . (put 'nginx-upstream-configuration 'scheme-indent-function 0)) | ||
| 502 | (eval . (put 'ngircd-channel 'scheme-indent-function 0)) | ||
| 503 | (eval . (put 'ngircd-configuration 'scheme-indent-function 0)) | ||
| 504 | (eval . (put 'ngircd-global 'scheme-indent-function 0)) | ||
| 505 | (eval . (put 'ngircd-limits 'scheme-indent-function 0)) | ||
| 506 | (eval . (put 'ngircd-operator 'scheme-indent-function 0)) | ||
| 507 | (eval . (put 'ngircd-options 'scheme-indent-function 0)) | ||
| 508 | (eval . (put 'ngircd-server 'scheme-indent-function 0)) | ||
| 509 | (eval . (put 'ngircd-ssl 'scheme-indent-function 0)) | ||
| 510 | (eval . (put 'nix-configuration 'scheme-indent-function 0)) | ||
| 511 | (eval . (put 'nscd-cache 'scheme-indent-function 0)) | ||
| 512 | (eval . (put 'nscd-configuration 'scheme-indent-function 0)) | ||
| 513 | (eval . (put 'nslcd-configuration 'scheme-indent-function 0)) | ||
| 514 | (eval . (put 'ntp-configuration 'scheme-indent-function 0)) | ||
| 515 | (eval . (put 'ntp-server 'scheme-indent-function 0)) | ||
| 516 | (eval . (put 'oci-container-configuration 'scheme-indent-function 0)) | ||
| 517 | (eval . (put 'oci-image 'scheme-indent-function 0)) | ||
| 518 | (eval . (put 'opaque-cgit-configuration 'scheme-indent-function 0)) | ||
| 519 | (eval . (put 'opaque-cups-configuration 'scheme-indent-function 0)) | ||
| 520 | (eval . (put 'opaque-dovecot-configuration 'scheme-indent-function 0)) | ||
| 521 | (eval . (put 'opaque-prosody-configuration 'scheme-indent-function 0)) | ||
| 522 | (eval . (put 'opendht-configuration 'scheme-indent-function 0)) | ||
| 523 | (eval . (put 'openntpd-configuration 'scheme-indent-function 0)) | ||
| 524 | (eval . (put 'opensmtpd-configuration 'scheme-indent-function 0)) | ||
| 525 | (eval . (put 'openssh-configuration 'scheme-indent-function 0)) | ||
| 526 | (eval . (put 'openvpn-ccd-configuration 'scheme-indent-function 0)) | ||
| 527 | (eval . (put 'openvpn-client-configuration 'scheme-indent-function 0)) | ||
| 528 | (eval . (put 'openvpn-remote-configuration 'scheme-indent-function 0)) | ||
| 529 | (eval . (put 'openvpn-server-configuration 'scheme-indent-function 0)) | ||
| 530 | (eval . (put 'openvswitch-configuration 'scheme-indent-function 0)) | ||
| 531 | (eval . (put 'operation-access-control 'scheme-indent-function 0)) | ||
| 532 | (eval . (put 'package-database-configuration 'scheme-indent-function 0)) | ||
| 533 | (eval . (put 'pagekite-configuration 'scheme-indent-function 0)) | ||
| 534 | (eval . (put 'pam-krb5-configuration 'scheme-indent-function 0)) | ||
| 535 | (eval . (put 'pam-mount-configuration 'scheme-indent-function 0)) | ||
| 536 | (eval . (put 'pam-mount-volume 'scheme-indent-function 0)) | ||
| 537 | (eval . (put 'passdb-configuration 'scheme-indent-function 0)) | ||
| 538 | (eval . (put 'patchwork-configuration 'scheme-indent-function 0)) | ||
| 539 | (eval . (put 'patchwork-database-configuration 'scheme-indent-function 0)) | ||
| 540 | (eval . (put 'patchwork-settings-module 'scheme-indent-function 0)) | ||
| 541 | (eval . (put 'pcscd-configuration 'scheme-indent-function 0)) | ||
| 542 | (eval . (put 'php-fpm-configuration 'scheme-indent-function 0)) | ||
| 543 | (eval . (put 'php-fpm-dynamic-process-manager-configuration 'scheme-indent-function 0)) | ||
| 544 | (eval . (put 'php-fpm-on-demand-process-manager-configuration 'scheme-indent-function 0)) | ||
| 545 | (eval . (put 'php-fpm-static-process-manager-configuration 'scheme-indent-function 0)) | ||
| 546 | (eval . (put 'pipefs-configuration 'scheme-indent-function 0)) | ||
| 547 | (eval . (put 'plasma-desktop-configuration 'scheme-indent-function 0)) | ||
| 548 | (eval . (put 'plugin-configuration 'scheme-indent-function 0)) | ||
| 549 | (eval . (put 'policy-configuration 'scheme-indent-function 0)) | ||
| 550 | (eval . (put 'polkit-configuration 'scheme-indent-function 0)) | ||
| 551 | (eval . (put 'postgresql-config-file 'scheme-indent-function 0)) | ||
| 552 | (eval . (put 'postgresql-configuration 'scheme-indent-function 0)) | ||
| 553 | (eval . (put 'postgresql-role 'scheme-indent-function 0)) | ||
| 554 | (eval . (put 'pounce-configuration 'scheme-indent-function 0)) | ||
| 555 | (eval . (put 'power-profiles-daemon-configuration 'scheme-indent-function 0)) | ||
| 556 | (eval . (put 'powertop-configuration 'scheme-indent-function 0)) | ||
| 557 | (eval . (put 'prometheus-node-exporter-configuration 'scheme-indent-function 0)) | ||
| 558 | (eval . (put 'prosody-configuration 'scheme-indent-function 0)) | ||
| 559 | (eval . (put 'protocol-configuration 'scheme-indent-function 0)) | ||
| 560 | (eval . (put 'pulseaudio-configuration 'scheme-indent-function 0)) | ||
| 561 | (eval . (put 'qemu-binfmt-configuration 'scheme-indent-function 0)) | ||
| 562 | (eval . (put 'qemu-guest-agent-configuration 'scheme-indent-function 0)) | ||
| 563 | (eval . (put 'quassel-configuration 'scheme-indent-function 0)) | ||
| 564 | (eval . (put 'radicale-auth-configuration 'scheme-indent-function 0)) | ||
| 565 | (eval . (put 'radicale-configuration 'scheme-indent-function 0)) | ||
| 566 | (eval . (put 'radicale-encoding-configuration 'scheme-indent-function 0)) | ||
| 567 | (eval . (put 'radicale-logging-configuration 'scheme-indent-function 0)) | ||
| 568 | (eval . (put 'radicale-rights-configuration 'scheme-indent-function 0)) | ||
| 569 | (eval . (put 'radicale-server-configuration 'scheme-indent-function 0)) | ||
| 570 | (eval . (put 'radicale-storage-configuration 'scheme-indent-function 0)) | ||
| 571 | (eval . (put 'rasdaemon-configuration 'scheme-indent-function 0)) | ||
| 572 | (eval . (put 'readymedia-configuration 'scheme-indent-function 0)) | ||
| 573 | (eval . (put 'readymedia-media-directory 'scheme-indent-function 0)) | ||
| 574 | (eval . (put 'redis-configuration 'scheme-indent-function 0)) | ||
| 575 | (eval . (put 'repository-cgit-configuration 'scheme-indent-function 0)) | ||
| 576 | (eval . (put 'resize-file-system-configuration 'scheme-indent-function 0)) | ||
| 577 | (eval . (put 'restic-backup-configuration 'scheme-indent-function 0)) | ||
| 578 | (eval . (put 'restic-backup-job 'scheme-indent-function 0)) | ||
| 579 | (eval . (put 'rngd-configuration 'scheme-indent-function 0)) | ||
| 580 | (eval . (put 'rootless-podman-configuration 'scheme-indent-function 0)) | ||
| 581 | (eval . (put 'rottlog-configuration 'scheme-indent-function 0)) | ||
| 582 | (eval . (put 'rpcbind-configuration 'scheme-indent-function 0)) | ||
| 583 | (eval . (put 'rshiny-configuration 'scheme-indent-function 0)) | ||
| 584 | (eval . (put 'rspamd-configuration 'scheme-indent-function 0)) | ||
| 585 | (eval . (put 'rsync-configuration 'scheme-indent-function 0)) | ||
| 586 | (eval . (put 'rsync-module 'scheme-indent-function 0)) | ||
| 587 | (eval . (put 'samba-configuration 'scheme-indent-function 0)) | ||
| 588 | (eval . (put 'screen-locker-configuration 'scheme-indent-function 0)) | ||
| 589 | (eval . (put 'sddm-configuration 'scheme-indent-function 0)) | ||
| 590 | (eval . (put 'seatd-configuration 'scheme-indent-function 0)) | ||
| 591 | (eval . (put 'service-configuration 'scheme-indent-function 0)) | ||
| 592 | (eval . (put 'service-type 'scheme-indent-function 0)) | ||
| 593 | (eval . (put 'shepherd-action 'scheme-indent-function 0)) | ||
| 594 | (eval . (put 'shepherd-configuration 'scheme-indent-function 0)) | ||
| 595 | (eval . (put 'shepherd-service 'scheme-indent-function 0)) | ||
| 596 | (eval . (put 'slim-configuration 'scheme-indent-function 0)) | ||
| 597 | (eval . (put 'snuik-configuration 'scheme-indent-function 0)) | ||
| 598 | (eval . (put 'speakersafetyd-configuration 'scheme-indent-function 0)) | ||
| 599 | (eval . (put 'spice-vdagent-configuration 'scheme-indent-function 0)) | ||
| 600 | (eval . (put 'ssl-configuration 'scheme-indent-function 0)) | ||
| 601 | (eval . (put 'static-networking 'scheme-indent-function 0)) | ||
| 602 | (eval . (put 'strongswan-configuration 'scheme-indent-function 0)) | ||
| 603 | (eval . (put 'sugar-desktop-configuration 'scheme-indent-function 0)) | ||
| 604 | (eval . (put 'syncthing-config-file 'scheme-indent-function 0)) | ||
| 605 | (eval . (put 'syncthing-configuration 'scheme-indent-function 0)) | ||
| 606 | (eval . (put 'syncthing-device 'scheme-indent-function 0)) | ||
| 607 | (eval . (put 'syncthing-folder 'scheme-indent-function 0)) | ||
| 608 | (eval . (put 'syncthing-folder-device 'scheme-indent-function 0)) | ||
| 609 | (eval . (put 'sysctl-configuration 'scheme-indent-function 0)) | ||
| 610 | (eval . (put 'syslog-configuration 'scheme-indent-function 0)) | ||
| 611 | (eval . (put 'system-log-configuration 'scheme-indent-function 0)) | ||
| 612 | (eval . (put 'tailon-configuration 'scheme-indent-function 0)) | ||
| 613 | (eval . (put 'tailon-configuration-file 'scheme-indent-function 0)) | ||
| 614 | (eval . (put 'thermald-configuration 'scheme-indent-function 0)) | ||
| 615 | (eval . (put 'tlp-configuration 'scheme-indent-function 0)) | ||
| 616 | (eval . (put 'tor-configuration 'scheme-indent-function 0)) | ||
| 617 | (eval . (put 'tor-onion-service-configuration 'scheme-indent-function 0)) | ||
| 618 | (eval . (put 'tor-transport-plugin 'scheme-indent-function 0)) | ||
| 619 | (eval . (put 'transmission-daemon-configuration 'scheme-indent-function 0)) | ||
| 620 | (eval . (put 'udev-configuration 'scheme-indent-function 0)) | ||
| 621 | (eval . (put 'udisks-configuration 'scheme-indent-function 0)) | ||
| 622 | (eval . (put 'unattended-upgrade-configuration 'scheme-indent-function 0)) | ||
| 623 | (eval . (put 'unbound-configuration 'scheme-indent-function 0)) | ||
| 624 | (eval . (put 'unbound-remote 'scheme-indent-function 0)) | ||
| 625 | (eval . (put 'unbound-server 'scheme-indent-function 0)) | ||
| 626 | (eval . (put 'unbound-zone 'scheme-indent-function 0)) | ||
| 627 | (eval . (put 'unix-listener-configuration 'scheme-indent-function 0)) | ||
| 628 | (eval . (put 'upower-configuration 'scheme-indent-function 0)) | ||
| 629 | (eval . (put 'usb-modeswitch-configuration 'scheme-indent-function 0)) | ||
| 630 | (eval . (put 'userdb-configuration 'scheme-indent-function 0)) | ||
| 631 | (eval . (put 'varnish-configuration 'scheme-indent-function 0)) | ||
| 632 | (eval . (put 'virtlog-configuration 'scheme-indent-function 0)) | ||
| 633 | (eval . (put 'virtual-build-machine 'scheme-indent-function 0)) | ||
| 634 | (eval . (put 'virtualhost-configuration 'scheme-indent-function 0)) | ||
| 635 | (eval . (put 'vnstat-configuration 'scheme-indent-function 0)) | ||
| 636 | (eval . (put 'webssh-configuration 'scheme-indent-function 0)) | ||
| 637 | (eval . (put 'wesnothd-configuration 'scheme-indent-function 0)) | ||
| 638 | (eval . (put 'whoogle-configuration 'scheme-indent-function 0)) | ||
| 639 | (eval . (put 'wireguard-configuration 'scheme-indent-function 0)) | ||
| 640 | (eval . (put 'wireguard-peer 'scheme-indent-function 0)) | ||
| 641 | (eval . (put 'wpa-supplicant-configuration 'scheme-indent-function 0)) | ||
| 642 | (eval . (put 'wsdd-configuration 'scheme-indent-function 0)) | ||
| 643 | (eval . (put 'xe-guest-utilities-configuration 'scheme-indent-function 0)) | ||
| 644 | (eval . (put 'xen-guest-agent-configuration 'scheme-indent-function 0)) | ||
| 645 | (eval . (put 'xfce-desktop-configuration 'scheme-indent-function 0)) | ||
| 646 | (eval . (put 'xorg-configuration 'scheme-indent-function 0)) | ||
| 647 | (eval . (put 'xvnc-configuration 'scheme-indent-function 0)) | ||
| 648 | (eval . (put 'yggdrasil-configuration 'scheme-indent-function 0)) | ||
| 649 | (eval . (put 'zabbix-agent-configuration 'scheme-indent-function 0)) | ||
| 650 | (eval . (put 'zabbix-front-end-configuration 'scheme-indent-function 0)) | ||
| 651 | (eval . (put 'zabbix-server-configuration 'scheme-indent-function 0)) | ||
| 652 | (eval . (put 'zone-entry 'scheme-indent-function 0)) | ||
| 653 | (eval . (put 'zone-file 'scheme-indent-function 0)) | ||
| 654 | (eval . (put 'zram-device-configuration 'scheme-indent-function 0))))) | ||
