mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-17 15:58:29 +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 = {
|
||||
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}";
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user