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 = { userDirs = {
download = mkForce null; download = mkForce "/home/${username}";
documents = mkForce null; documents = mkForce "/home/${username}";
music = mkForce null; music = mkForce "/home/${username}";
pictures = mkForce null; pictures = mkForce "/home/${username}";
videos = mkForce null; videos = mkForce "/home/${username}";
}; };
}; };