15 lines
262 B
Nix
15 lines
262 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
jovian = {
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
autoStart = true;
|
||
|
user = "jimbo";
|
||
|
desktopSession = "sway";
|
||
|
};
|
||
|
decky-loader.enable = true;
|
||
|
devices.steamdeck.enable = true;
|
||
|
steamos.useSteamOSConfig = true;
|
||
|
};
|
||
|
}
|