diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-07 00:55:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-07 00:59:56 +0100 |
commit | 362bcdb1b076c8c46f71781add56dfbe532736dc (patch) | |
tree | deefc424b81a242c5a278495d51bf1b64341249d /gnu/system/examples | |
parent | fcbe4f71ca7ab7f8526bd1643044d204390ec6c2 (diff) | |
download | patches-362bcdb1b076c8c46f71781add56dfbe532736dc.tar patches-362bcdb1b076c8c46f71781add56dfbe532736dc.tar.gz |
system: Remove custom 'config-file service from "vm-image.tmpl".
This example is broken since commit
99c45877a984dd0148151b2e304afef6fb04f1a5 (wrong file name passed to
'local-file'), and its functionality is superseded by the upcoming
'provenance-service-type'.
* gnu/system/examples/vm-image.tmpl (this-file): Remove.
<services>: Remove 'config-file service.
Diffstat (limited to 'gnu/system/examples')
-rw-r--r-- | gnu/system/examples/vm-image.tmpl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gnu/system/examples/vm-image.tmpl b/gnu/system/examples/vm-image.tmpl index 7d984155bc..bcb2ba614c 100644 --- a/gnu/system/examples/vm-image.tmpl +++ b/gnu/system/examples/vm-image.tmpl @@ -24,11 +24,6 @@ Run '\x1b[1;37minfo guix\x1b[0m' to browse documentation. accounts.\x1b[0m ")) -(define this-file - (local-file (basename (assoc-ref (current-source-location) 'filename)) - "config.scm")) - - (operating-system (host-name "gnu") (timezone "Etc/UTC") @@ -73,10 +68,6 @@ root ALL=(ALL) ALL (services (append (list (service xfce-desktop-service-type) - ;; Copy this file to /etc/config.scm in the OS. - (simple-service 'config-file etc-service-type - `(("config.scm" ,this-file))) - ;; Choose SLiM, which is lighter than the default GDM. (service slim-service-type (slim-configuration |