18 lines
322 B
Nix
18 lines
322 B
Nix
{pkgs, ...}: {
|
|
jovian = {
|
|
steam = {
|
|
enable = true;
|
|
autoStart = true;
|
|
user = "jimbo";
|
|
desktopSession = "sway";
|
|
};
|
|
decky-loader.enable = true;
|
|
devices.steamdeck.enable = true;
|
|
steamos.useSteamOSConfig = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
python3
|
|
];
|
|
}
|