From ceeba1c7869832e5f7ca45c303cab32ceeff3754 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 14 Jun 2026 08:09:18 -0500 Subject: [PATCH] added spawn-at-startup command to niri --- modules/features/niri.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/features/niri.nix b/modules/features/niri.nix index 133e99c..bb49881 100644 --- a/modules/features/niri.nix +++ b/modules/features/niri.nix @@ -3,6 +3,11 @@ programs.niri = { enable = true; package = self.packages.${pkgs.stdenv.hostPlatform.system}.myNiri; + spawn-at-startup = [ + { + command = [ "noctalia-shell" ]; + } + ]; }; };