diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-04-01 04:39:59 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-04-01 04:39:59 +0300 |
commit | f4145939712b0046e5d57906d4b157b8a150614d (patch) | |
tree | 3c8d24db6410692e0fa59570ff698d446ae5a96e /modules/common/qutebrowser.nix | |
parent | 2023-03-23 (diff) |
2023-04-01
Diffstat (limited to '')
-rw-r--r-- | modules/common/qutebrowser.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/common/qutebrowser.nix b/modules/common/qutebrowser.nix index 68a41a5..7913001 100644 --- a/modules/common/qutebrowser.nix +++ b/modules/common/qutebrowser.nix @@ -509,7 +509,7 @@ in { } ]; in - concatStringsSep "\n" final + "\n") + concatLines final + "\n") + (let allowSetting = setting: url: "config.set('content.${setting}', True, '${url}')"; @@ -530,7 +530,7 @@ in { final = allowedMediaCapture ++ allowedNotifications; in - concatStringsSep "\n" final + "\n"); + concatLines final + "\n"); }; }; } |