From 99a037de183a3e1d0dcfc5ec6dd5e5e03938bcd3 Mon Sep 17 00:00:00 2001 From: leiserfg Date: Fri, 2 Jan 2026 17:53:16 +0100 Subject: [PATCH] vicinae: fix settings example --- modules/programs/vicinae.nix | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/modules/programs/vicinae.nix b/modules/programs/vicinae.nix index 3a5e2c24b..34a40cfac 100644 --- a/modules/programs/vicinae.nix +++ b/modules/programs/vicinae.nix @@ -133,27 +133,22 @@ in settings = lib.mkOption { inherit (jsonFormat) type; default = { }; - description = "Settings written as JSON to `~/.config/vicinae/settings.json."; example = lib.literalExpression '' { - faviconService = "twenty"; - font = { - size = 10; - }; - popToRootOnClose = false; - rootSearch = { - searchFiles = false; - }; + favicon_service = "twenty"; + font.normal.size = 10; + pop_to_root_on_close=false; + search_files_in_root= false; theme = { - name = "vicinae-dark"; - }; - window = { - csd = true; - opacity = 0.95; - rounding = 10; + dark.name = "vicinae-dark"; + light.name = "vicinae-light"; }; } ''; + description = '' + Settings written as JSON to {file}`~/.config/vicinae/settings.json`. + See {command}`vicinae config default`. + ''; }; };