Files
nix-config/hosts/deck/jovian.nix
2025-02-08 16:51:17 -06:00

24 lines
472 B
Nix

{ ... }:
{
jovian = {
steam = {
enable = true;
autoStart = true;
user = "deck";
desktopSession = "plasma"; # plasma, plasmaX11, or gamescope-wayland
};
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;
};
}