From 68ccc823e3920ef23802620c6f618b6e82c6e725 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 13 Feb 2026 03:51:57 -0800 Subject: [PATCH] nixos(keepbook): remove removed keepbook-sync-daemon tray-icon arg --- nixos/keepbook-sync.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixos/keepbook-sync.nix b/nixos/keepbook-sync.nix index 70150dc8..03d1244e 100644 --- a/nixos/keepbook-sync.nix +++ b/nixos/keepbook-sync.nix @@ -14,7 +14,6 @@ "--interval" cfg.interval "--jitter" cfg.jitter "--history-points" (toString cfg.historyPoints) - "--tray-icon" cfg.trayIcon ] ++ lib.optionals (!cfg.syncOnStart) [ "--no-sync-on-start" ] ++ lib.optionals (!cfg.syncPrices) [ "--no-sync-prices" ] @@ -110,11 +109,6 @@ enabledModule // { description = "Recent portfolio history rows shown in tray menu."; }; - trayIcon = lib.mkOption { - type = lib.types.str; - default = "wallet"; - description = "Freedesktop icon name for idle keepbook tray state."; - }; }; }; }