summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-05-24 00:55:05 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-05-25 01:55:51 +0300
commit696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f (patch)
tree526b90e5309780021db153c7eb4fd80d8ab47dd0 /nixos
parentf8dc087c71be3ffe1d9d5dd19b65b10f9963af14 (diff)
downloadnixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar.gz
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar.bz2
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar.lz
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar.xz
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.tar.zst
nixpkgs-696c6bed4e8e2d9fd9b956dea7e5d49531e9d13f.zip
w3m: Add a variant without graphics support and use for NixOS manual
This gets rid of various graphics libraries from the minimal installer.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/nixos-manual.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/nixos-manual.nix b/nixos/modules/services/misc/nixos-manual.nix
index 4bd1c20edf7..3916c3052e8 100644
--- a/nixos/modules/services/misc/nixos-manual.nix
+++ b/nixos/modules/services/misc/nixos-manual.nix
@@ -99,7 +99,7 @@ in
 
     services.nixosManual.browser = mkOption {
       type = types.path;
-      default = "${pkgs.w3m-nox}/bin/w3m";
+      default = "${pkgs.w3m-nographics}/bin/w3m";
       description = ''
         Browser used to show the manual.
       '';