diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-04-21 17:34:12 +0200 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-04-21 17:34:12 +0200 |
commit | 52cca635745b64d08164888cc8e2af215df2106a (patch) | |
tree | 55334283a234d560bb2a734ac5ae4995dfd6034d | |
parent | b290d05129b49377ae15ec1b8083ac2a6bb5f690 (diff) |
Reorder Services
* system-configuration.scm (services): Reorder services into alphabetical order.
-rw-r--r-- | system-configuration.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system-configuration.scm b/system-configuration.scm index 70b0cce..38f9c39 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -44,13 +44,13 @@ ( services ( append ( list - ( service gnome-desktop-service-type ) + ( service cups-service-type ) ( service openssh-service-type ) + ( service gnome-desktop-service-type ) ( service tor-service-type ( tor-configuration ( config-file ( local-file "torrc" ) ) ) ) - ( service cups-service-type ) ( set-xorg-configuration ( xorg-configuration ( keyboard-layout keyboard-layout ) ) ) ) |