summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-07-04 16:54:17 +0900
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-07-04 10:25:31 +0200
commit9236eedbc35245aa8c7a5e86847ac30f7a4f53af (patch)
tree4725e690a34fbca4e2e98f7df9178d991d8b74dd /nixos
parent0da28e9cfac412fd0f748003a5054c8928e5446f (diff)
downloadnixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar.gz
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar.bz2
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar.lz
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar.xz
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.tar.zst
nixlib-9236eedbc35245aa8c7a5e86847ac30f7a4f53af.zip
documentation: fix start display-manager command
[Bjørn: The 'start' alias was removed in commit 1d9651e723
("Remove systemd shell aliases").]
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/installation/installing.xml2
-rw-r--r--nixos/modules/profiles/installation-device.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml
index 2f118d27b1a5..073f7ca34620 100644
--- a/nixos/doc/manual/installation/installing.xml
+++ b/nixos/doc/manual/installation/installing.xml
@@ -22,7 +22,7 @@
   (with empty password).</para></listitem>
 
   <listitem><para>If you downloaded the graphical ISO image, you can
-  run <command>start display-manager</command> to start KDE. If you
+  run <command>systemctl start display-manager</command> to start KDE. If you
   want to continue on the terminal, you can use
   <command>loadkeys</command> to switch to your preferred keyboard layout.
   (We even provide neo2 via <command>loadkeys de neo</command>!)</para></listitem>
diff --git a/nixos/modules/profiles/installation-device.nix b/nixos/modules/profiles/installation-device.nix
index 669b6975c690..93736ba256b3 100644
--- a/nixos/modules/profiles/installation-device.nix
+++ b/nixos/modules/profiles/installation-device.nix
@@ -42,7 +42,7 @@ with lib;
 
         The "root" account has an empty password.  ${
           optionalString config.services.xserver.enable
-            "Type `start display-manager' to\nstart the graphical user interface."}
+            "Type `systemctl start display-manager' to\nstart the graphical user interface."}
       '';
 
     # Allow sshd to be started manually through "start sshd".