Enable RetroArch on Steam Deck
This commit is contained in:
parent
202e5c098a
commit
8534c96c66
17 changed files with 127 additions and 113 deletions
|
|
@ -1,18 +1,30 @@
|
|||
{ config, ... }:
|
||||
{ config, inputs, pkgs, ... }:
|
||||
|
||||
let usr = config.constants.userName; in {
|
||||
let
|
||||
usr = config.constants.userName;
|
||||
jovianPkgs = pkgs.extend inputs.jovian.overlays.default;
|
||||
in
|
||||
{
|
||||
home-manager.users.${usr}.home.packages = with jovianPkgs; [
|
||||
(retroarch.override {
|
||||
cores = with libretro; [
|
||||
pcsx2
|
||||
ppsspp
|
||||
];
|
||||
})
|
||||
yuzu
|
||||
];
|
||||
jovian = {
|
||||
decky-loader = {
|
||||
enable = true;
|
||||
user = usr;
|
||||
};
|
||||
devices.steamdeck.enable = true;
|
||||
steam = {
|
||||
enable = true;
|
||||
autoStart = true;
|
||||
desktopSession = "plasma";
|
||||
desktopSession = "gamescope-wayland";
|
||||
user = usr;
|
||||
};
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
desktopManager.plasma6.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue