nixos_dots/modules/home-manager/terminal/lynx.nix
2025-01-02 22:50:26 +03:00

14 lines
No EOL
410 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }: {
home = {
packages = [ pkgs.lynx ]; # Текстовый браузер в терминале. Без картинок
# Чтоб lynx отображал все символы, а не транслит
file.".lynxrc".text = ''
accept_all_cookies=on
force_ssl_cookies_secure=on
case_sensitive_searching=off
character_set=UNICODE (UTF-8)
'';
};
}