From f6136ee61e2ca2df091aa23f6c17ef4681fc782c Mon Sep 17 00:00:00 2001 From: sinavir Date: Thu, 18 Jan 2024 18:56:51 +0100 Subject: [PATCH] fix launch script for emulation station --- modules/es-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/es-config.nix b/modules/es-config.nix index 9ab9907..9da0292 100644 --- a/modules/es-config.nix +++ b/modules/es-config.nix @@ -177,7 +177,7 @@ in { cfg.themesDir ] ++ cfg.extraConfigFiles; }; - cli = pkgs.writeScript "emulationstation" "${pkgs.emulationstationPatched}/bin/emulationstation --home ${cfg.homeDir} --gamelist-only"; + cli = pkgs.writeShellScript "emulationstation" "${pkgs.emulationstationPatched}/bin/emulationstation --home ${cfg.homeDir} --gamelist-only"; }; };