From 4d10cb5301391189e1a2719ee8acf1f6f7de4eed Mon Sep 17 00:00:00 2001 From: Haonan Chen Date: Mon, 22 Dec 2025 12:58:10 +0800 Subject: [PATCH] modules.system.gui: add more startup apps --- modules/system/gui.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/system/gui.nix b/modules/system/gui.nix index 52e5d53f..48b0f170 100644 --- a/modules/system/gui.nix +++ b/modules/system/gui.nix @@ -97,7 +97,13 @@ inputs: default-column-width.proportion = 0.5; preset-column-widths = [ { proportion = 0.33333; } { proportion = 0.5; } { proportion = 0.66667; } ]; }; - spawn-at-startup = [{ argv = [ "Telegram" "-startintray" ]; }]; + spawn-at-startup = + [ + { argv = [ "Telegram" "-startintray" ]; } + { argv = [ "steam" "-silent" ]; } + { argv = [ "element-desktop" "--hidden" ]; } + { argv = [ "discord" "--start-minimized" "--no-startup-id" ]; } + ]; }; }; })];