Enable RetroArch on Steam Deck
This commit is contained in:
parent
202e5c098a
commit
f8b80c1d04
1 changed files with 6 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
let usr = config.constants.userName; in {
|
let usr = config.constants.userName; in {
|
||||||
jovian = {
|
jovian = {
|
||||||
|
|
@ -6,13 +6,16 @@ let usr = config.constants.userName; in {
|
||||||
steam = {
|
steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
desktopSession = "plasma";
|
desktopSession = "RetroArch";
|
||||||
user = usr;
|
user = usr;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
desktopManager.plasma6.enable = true;
|
desktopManager.retroarch = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.retroarchFull;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue