mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-08-09 06:55:13 +02:00
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:
@ -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}";
|
||||
};
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user