w3m: Add a variant without graphics support and use for NixOS manual
This gets rid of various graphics libraries from the minimal installer.
This commit is contained in:
parent
f8dc087c71
commit
696c6bed4e
@ -99,7 +99,7 @@ in
|
|||||||
|
|
||||||
services.nixosManual.browser = mkOption {
|
services.nixosManual.browser = mkOption {
|
||||||
type = types.path;
|
type = types.path;
|
||||||
default = "${pkgs.w3m-nox}/bin/w3m";
|
default = "${pkgs.w3m-nographics}/bin/w3m";
|
||||||
description = ''
|
description = ''
|
||||||
Browser used to show the manual.
|
Browser used to show the manual.
|
||||||
'';
|
'';
|
||||||
|
@ -18552,6 +18552,12 @@ with pkgs;
|
|||||||
imlib2 = imlib2-nox;
|
imlib2 = imlib2-nox;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Version without X11 or graphics
|
||||||
|
w3m-nographics = w3m.override {
|
||||||
|
x11Support = false;
|
||||||
|
graphicsSupport = false;
|
||||||
|
};
|
||||||
|
|
||||||
# Version for batch text processing, not a good browser
|
# Version for batch text processing, not a good browser
|
||||||
w3m-batch = w3m.override {
|
w3m-batch = w3m.override {
|
||||||
graphicsSupport = false;
|
graphicsSupport = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user