about summary refs log tree commit diff
path: root/nixos/modules/services/editors
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-01-02 22:57:19 +0100
committerpennae <github@quasiparticle.net>2023-01-10 10:31:52 +0100
commit80a78f2e1e8228a99786039d987bda3855db930c (patch)
tree627c70f8fb9d8ced368199786f41aa565a62de2f /nixos/modules/services/editors
parent798b7fdc5cf07786c74a79e5c63b6ebcafed42eb (diff)
downloadnixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar.gz
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar.bz2
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar.lz
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar.xz
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.tar.zst
nixlib-80a78f2e1e8228a99786039d987bda3855db930c.zip
nixos/manual: remove links from program listings
markdown cannot represent those links. remove them all now instead of in
each chapter conversion to keep the diff for each chapter small and more
understandable.
Diffstat (limited to 'nixos/modules/services/editors')
-rw-r--r--nixos/modules/services/editors/emacs.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/editors/emacs.xml b/nixos/modules/services/editors/emacs.xml
index fd99ee9442c9..dfadf27d41dc 100644
--- a/nixos/modules/services/editors/emacs.xml
+++ b/nixos/modules/services/editors/emacs.xml
@@ -375,8 +375,8 @@ in [...]
     To install and enable the <command>systemd</command> user service for Emacs
     daemon, add the following to your <filename>configuration.nix</filename>:
 <programlisting>
-<xref linkend="opt-services.emacs.enable"/> = true;
-<xref linkend="opt-services.emacs.package"/> = import /home/cassou/.emacs.d { pkgs = pkgs; };
+services.emacs.enable = true;
+services.emacs.package = import /home/cassou/.emacs.d { pkgs = pkgs; };
 </programlisting>
    </para>
 
@@ -459,8 +459,8 @@ emacsclient --create-frame --tty  # opens a new frame on the current terminal
     Emacs daemon is not wanted for all users, it is possible to install the
     service but not globally enable it:
 <programlisting>
-<xref linkend="opt-services.emacs.enable"/> = false;
-<xref linkend="opt-services.emacs.install"/> = true;
+services.emacs.enable = false;
+services.emacs.install = true;
 </programlisting>
    </para>