| 30 May 2025 |
| George joined the room. | 12:36:53 |
| Martin Lindbüchl joined the room. | 18:12:09 |
| bytebandit set a profile picture. | 19:55:26 |
| 31 May 2025 |
codebam | I enabled this https://jovian-experiments.github.io/Jovian-NixOS/options.html#jovian.devices.steamdeck.enableSoundSupport
sound isn't working after enabling it, so I booted into plasma and enabled the sound card that was disabled in sound settings, but still no sound from the speakers | 19:31:40 |
K900 | Are you on a Steam Deck? If not, you should not set that option | 19:36:08 |
codebam | I'll paste my config right after it boots. it takes forever to boot as well. like 2 mins+. is that normal? it gets past the nixos part quickly and then takes like 2-3 mins to start the steamos ui | 19:38:19 |
K900 | Known issue | 19:38:31 |
K900 | Upstream | 19:38:32 |
codebam | okay, cool | 19:38:38 |
K900 | You can systemd.user.services.steamos-manager.enable = false for now | 19:38:50 |
K900 | If you don't mind TDP controls and such not working | 19:38:55 |
K900 | (or if you're not on a Steam Deck, in which case it probably won't work anyway) | 19:39:22 |
codebam | oh yeah sorry forgot to answer. it is a steam deck yes, oled model | 19:40:06 |
codebam | okay I'll probably just deal with it and use suspend | 19:40:34 |
codebam | anyways, here's the config:
jovian = {
steam = {
enable = true;
user = "codebam";
autoStart = true;
desktopSession = "plasma";
};
devices = {
steamdeck = {
enable = true;
autoUpdate = true;
enableControllerUdevRules = true;
enableSoundSupport = true;
enablePerfControlUdevRules = true;
enableOsFanControl = true;
enableDefaultStage1Modules = true;
enableFwupdBiosUpdates = true;
enableGyroDsuService = true;
};
};
hardware = {
amd = {
gpu = {
enableBacklightControl = true;
enableEarlyModesetting = true;
};
};
};
steamos = {
useSteamOSConfig = true;
};
};
| 19:41:26 |