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; +}