summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-04-20 21:20:03 +0100
committerGitHub <noreply@github.com>2021-04-20 21:20:03 +0100
commit20e0c6d5837527906a74ec5513cb9e5a2c0a73b7 (patch)
tree1240107705b2b99e9240366cccb040bb83675e41 /nixos
parenta8e7d96eb22efc716a5447e0461dae37f47748e5 (diff)
downloadnixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar.gz
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar.bz2
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar.lz
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar.xz
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.tar.zst
nixpkgs-20e0c6d5837527906a74ec5513cb9e5a2c0a73b7.zip
configuration template: add hint to install editor (#105771)
fixes #25376
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/installer/tools/tools.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix
index 77c974fc22c..21f2e730c3f 100644
--- a/nixos/modules/installer/tools/tools.nix
+++ b/nixos/modules/installer/tools/tools.nix
@@ -163,7 +163,8 @@ in
         # List packages installed in system profile. To search, run:
         # \$ nix search wget
         # environment.systemPackages = with pkgs; [
-        #   wget vim
+        #   nano vim # don't forget to add an editor to edit configuration.nix!
+        #   wget
         #   firefox
         # ];