Prevent rumno from blocking graphical session startup

This commit is contained in:
2026-06-08 04:02:33 -07:00
parent 1f2a38a8f7
commit e740a657ab

View File

@@ -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;