marleyos/modules/home/programs/tui/amfora/default.nix

84 lines
1.7 KiB
Nix
Raw Normal View History

2024-11-16 20:08:05 +00:00
{
lib,
config,
pkgs,
inputs,
...
}: let
cfg = config.marleyos.programs.amfora;
in {
options.marleyos.programs.amfora.enable = lib.mkEnableOption "amfora";
2024-11-16 20:08:05 +00:00
config = lib.mkIf cfg.enable {
2024-11-16 20:08:05 +00:00
home.packages = with pkgs; [
amfora
];
2025-03-02 18:41:56 +00:00
xdg.configFile."amfora/theme.toml".source = config.lib.stylix.colors {
template = ./template.mustache;
extension = ".toml";
};
2024-11-16 20:08:05 +00:00
# https://github.com/makeworld-the-better-one/amfora/blob/master/default-config.toml
# Amfora requires a number of options to run - omitting everything I didn't
# care to customize resulted in go panic errors.
xdg.configFile."amfora/config.toml".text =
# toml
2024-11-16 20:08:05 +00:00
''
include = "./theme.toml"
[a-general]
# Defaults {{{
home = "gemini://geminiprotocol.net"
auto_redirect = false
http = 'default'
search = "gemini://geminispace.info/search"
color = true
ansi = true
highlight_code = true
bullets = true
show_link = false
max_width = 80
downloads = '''
page_max_size = 2097152 # 2 MiB
page_max_time = 10
scrollbar = "auto"
underline = true
# }}}
2025-03-02 18:41:56 +00:00
highlight_style = "${config.lib.stylix.colors.scheme-name}"
2024-11-16 20:08:05 +00:00
# Defaults {{{
[auth]
[auth.certs]
[auth.keys]
[keybindings]
[url-handlers]
other = 'default'
[url-prompts]
[cache]
max_size = 0
max_pages = 30
timeout = 1800
[proxies]
[subscriptions]
popup = true
update_interval = 1800
workers = 3
entries_per_page = 20
header = true
[theme]
# }}}
'';
};
}