Files
nix-config/systems/x86_64-linux/steamdeck/jovian.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

25 lines
430 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;
};
}