From f8b80c1d04ed39ffe2a62230ce67af073de61f0d Mon Sep 17 00:00:00 2001 From: macronova Date: Sun, 3 Mar 2024 00:11:51 -0800 Subject: [PATCH] Enable RetroArch on Steam Deck --- linux/protostar/gui.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/linux/protostar/gui.nix b/linux/protostar/gui.nix index a2e82f9..866d9f1 100644 --- a/linux/protostar/gui.nix +++ b/linux/protostar/gui.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: let usr = config.constants.userName; in { jovian = { @@ -6,13 +6,16 @@ let usr = config.constants.userName; in { steam = { enable = true; autoStart = true; - desktopSession = "plasma"; + desktopSession = "RetroArch"; user = usr; }; }; services.xserver = { enable = true; - desktopManager.plasma6.enable = true; + desktopManager.retroarch = { + enable = true; + package = pkgs.retroarchFull; + }; }; }