feat(x1): configure gnome-remote-desktop systemd service

- Added `wantedBy = ["graphical.target"]` to the `gnome-remote-desktop` service configuration.
- Ensures the service starts automatically with the graphical session.
This commit is contained in:
Harald Hoyer 2025-09-11 13:36:54 +02:00
parent 61d5c8416e
commit 296aac6864

View file

@ -133,6 +133,9 @@ with lib.metacfg;
};
services.gnome.gnome-remote-desktop.enable = true;
systemd.services.gnome-remote-desktop = {
wantedBy = [ "graphical.target" ];
};
environment.sessionVariables = {
LIBVA_DRIVER_NAME = "iHD";