mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-25 03:38:33 +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:
parent
5c7a272877
commit
5f21bf0c49
@ -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}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user