From e740a657ab3ccc06df8fa9c601149b035b01b1e8 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 8 Jun 2026 04:02:33 -0700 Subject: [PATCH] Prevent rumno from blocking graphical session startup --- nixos/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 084bdd57..e8605f9f 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -67,6 +67,10 @@ { system.autoUpgrade.flake = "github:colonelpanic8/dotfiles?dir=nixos#${config.networking.hostName}"; } + (lib.mkIf config.services.rumno.enable { + # Do not let rumno's forking/PIDFile startup gate the whole graphical session. + systemd.user.services.rumno.unitConfig.After = lib.mkForce ["graphical-session.target"]; + }) (lib.mkIf config.features.full.enable { myModules.base.enable = true; myModules.desktop.enable = true;