Files
nix-config/systems/x86_64-linux/steamdeck/jovian.nix
mjallen18 3c1a956c81 cleanup
2025-07-24 10:19:32 -05:00

24 lines
429 B
Nix
Executable File

{ ... }:
{
jovian = {
steam = {
enable = true;
autoStart = true;
user = "deck";
desktopSession = "gnome";
};
steamos = {
useSteamOSConfig = true;
};
devices = {
steamdeck = {
enable = true;
enableGyroDsuService = true; # If enabled, motion data from the gyroscope can be used in Cemu with Cemuhoo
};
};
hardware.has.amd.gpu = true;
};
}