From 5f21bf0c49bcd047d4922631c2069e8244e95ff4 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 15 Aug 2024 22:18:36 -0400 Subject: [PATCH] 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. --- hosts/phone/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/phone/configuration.nix b/hosts/phone/configuration.nix index 27f003a7..d04e754c 100644 --- a/hosts/phone/configuration.nix +++ b/hosts/phone/configuration.nix @@ -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}"; }; };