-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot mount or format microSD card #321
Comments
Yes, unfortunately there is no auto mounting of microSD card in the Steam UI I have the same issue |
This is my current walk-aroundhardware-configuration.nix fileSystems."/mnt/MicroSDCard" = {
device = "/dev/mmcblk0p1";
# If you have this partition mounted, then you can check its type by using
# df -T | grep /dev/${device}
fsType = "ext4";
options = [
# System will boot up if you don't have sd card inserted
"nofail"
# After booting up systemd will try mounting the sd card
"x-systemd.automount"
];
}; This will try mounting /dev/mmcblk0p1 partition at a boot time. It lacks flexibility to be implemented into main branch, |
From
|
We now have mounting: And formatting is coming: |
Hey there. First of all thanks for this project! This is pretty slick, and I'm hoping to get it working well enough that I can use this in favor of the regular OS. But one major issue that is blocking me is that I can't seem to use microSD cards. Whenever I try to format it, it says "We encountered an error while formatting your microSD card (2). Please try again or contact steam-support."
This microSD card also has a pre-existing steam library on it. When I switch to desktop mode on the Jovian NixOS install, I can see all the games in the desktop version of Steam. So I'm wondering perhaps if the microSD card isn't being auto-mounted in the Steam UI session? Anyone run into this before?
The text was updated successfully, but these errors were encountered: