From 9d97f5262f58c25373cfe1e6e6895dd427dfcf0a Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 3 Nov 2024 09:39:37 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(amfora):=20Add=20required=20?= =?UTF-8?q?config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Amfora seems to require something in the default config structure to run. I don't care to figure out exactly what is required at the moment. --- home/amfora/default.nix | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/home/amfora/default.nix b/home/amfora/default.nix index f5d8c5c..ee7c52e 100644 --- a/home/amfora/default.nix +++ b/home/amfora/default.nix @@ -29,7 +29,7 @@ bullets = true show_link = false max_width = 80 - downloads = "" + downloads = ''' page_max_size = 2097152 # 2 MiB page_max_time = 10 scrollbar = "auto" @@ -39,25 +39,35 @@ # TODO: Change based on current theme. highlight_style = "rose-pine" - [url-handlers] # Defaults {{{ + [auth] + + [auth.certs] + + [auth.keys] + + [keybindings] + + [url-handlers] other = 'default' - # }}} + + [url-prompts] [cache] - # Defaults {{{ max_size = 0 max_pages = 30 timeout = 1800 - # }}} + + [proxies] [subscriptions] - # Defaults {{{ popup = true update_interval = 1800 workers = 3 entries_per_page = 20 header = true + + [theme] # }}} ''; }