From 340c514a99c78151f4c9935adb68c51404f8e5ae Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Mon, 28 Oct 2024 16:10:02 +0100 Subject: [PATCH] more fuse (still sucks) --- system-modules/fuse.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/system-modules/fuse.nix b/system-modules/fuse.nix index 3ca7c52..2cd4b24 100755 --- a/system-modules/fuse.nix +++ b/system-modules/fuse.nix @@ -1,7 +1,12 @@ { config, pkgs, ...}: { - environment.systemPackages = with pkgs; [ - jmtpfs - ]; -} \ No newline at end of file + environment = { + systemPackages = with pkgs; [ + jmtpfs + simple-mtpfs + android-file-transfer + ]; + }; + programs.fuse.userAllowOther = true; +}