From 9a4fdf2c1b6c8189754311b2e9a46ee157faed09 Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Sat, 17 Apr 2021 02:51:43 +0300 Subject: [PATCH] disable qutebrowser dark mode because bad --- users/patriot/home.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/users/patriot/home.nix b/users/patriot/home.nix index de009bb..8178b81 100644 --- a/users/patriot/home.nix +++ b/users/patriot/home.nix @@ -389,7 +389,7 @@ in enable = true; settings = { content.javascript.enabled = false; - colors.webpage.darkmode.enabled = true; + colors.webpage.darkmode.enabled = false; tabs = { show = "multiple"; tabs_are_windows = true; @@ -411,7 +411,9 @@ in config.set('content.javascript.enabled', True, 'https://*.${d}') ''; in - lib.concatStrings (map enableJsForDomain domains); + '' + ${lib.concatStrings (map enableJsForDomain domains)} + ''; }; git = { enable = true;