mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 17:15:58 +01:00
rich-presence/neocord: fix log_level config
This commit is contained in:
parent
272cd17e42
commit
8b54a4eb6f
1 changed files with 4 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (lib) mkIf nvim boolToString;
|
inherit (lib) mkIf nvim boolToString;
|
||||||
inherit (lib.nvim.lua) listToLuaTable;
|
inherit (lib.nvim.lua) listToLuaTable;
|
||||||
|
inherit (lib.strings) escapeNixString;
|
||||||
inherit (builtins) toString;
|
inherit (builtins) toString;
|
||||||
|
|
||||||
cfg = config.vim.presence.neocord;
|
cfg = config.vim.presence.neocord;
|
||||||
|
@ -20,11 +21,11 @@ in {
|
||||||
logo_tooltip = "${cfg.logo_tooltip}",
|
logo_tooltip = "${cfg.logo_tooltip}",
|
||||||
main_image = "${cfg.main_image}",
|
main_image = "${cfg.main_image}",
|
||||||
client_id = "${cfg.client_id}",
|
client_id = "${cfg.client_id}",
|
||||||
log_level = "${
|
log_level = ${
|
||||||
if cfg.log_level == null
|
if cfg.log_level == null
|
||||||
then "nil"
|
then "nil"
|
||||||
else cfg.log_level
|
else "${escapeNixString cfg.log_level}"
|
||||||
}",
|
},
|
||||||
debounce_timeout = ${toString cfg.debounce_timeout},
|
debounce_timeout = ${toString cfg.debounce_timeout},
|
||||||
blacklist = ${listToLuaTable cfg.blacklist},
|
blacklist = ${listToLuaTable cfg.blacklist},
|
||||||
show_time = "${boolToString cfg.show_time}",
|
show_time = "${boolToString cfg.show_time}",
|
||||||
|
|
Loading…
Reference in a new issue