nixos(keepbook): remove removed keepbook-sync-daemon tray-icon arg

This commit is contained in:
2026-02-13 03:51:57 -08:00
committed by Kat Huang
parent c06384c1b3
commit 68ccc823e3

View File

@@ -14,7 +14,6 @@
"--interval" cfg.interval "--interval" cfg.interval
"--jitter" cfg.jitter "--jitter" cfg.jitter
"--history-points" (toString cfg.historyPoints) "--history-points" (toString cfg.historyPoints)
"--tray-icon" cfg.trayIcon
] ]
++ lib.optionals (!cfg.syncOnStart) [ "--no-sync-on-start" ] ++ lib.optionals (!cfg.syncOnStart) [ "--no-sync-on-start" ]
++ lib.optionals (!cfg.syncPrices) [ "--no-sync-prices" ] ++ lib.optionals (!cfg.syncPrices) [ "--no-sync-prices" ]
@@ -110,11 +109,6 @@ enabledModule // {
description = "Recent portfolio history rows shown in tray menu."; 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.";
};
}; };
}; };
} }