phone: Don't set userDirs to null

Fixes an issue where the camera app Megapixels would silently fail since
it couldn't find the "Pictures" directory.
This commit is contained in:
Donovan Glover 2024-08-15 22:18:36 -04:00
parent 5c7a272877
commit 5f21bf0c49
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -74,11 +74,11 @@ in
};
userDirs = {
download = mkForce null;
documents = mkForce null;
music = mkForce null;
pictures = mkForce null;
videos = mkForce null;
download = mkForce "/home/${username}";
documents = mkForce "/home/${username}";
music = mkForce "/home/${username}";
pictures = mkForce "/home/${username}";
videos = mkForce "/home/${username}";
};
};