Files
dotfiles/system-modules/fuse.nix
Lennart J. Kurzweg (Nx2) b4586e8661 chmod
2025-01-27 22:17:00 +01:00

13 lines
190 B
Nix

{ config, pkgs, ...}:
{
environment = {
systemPackages = with pkgs; [
jmtpfs
simple-mtpfs
android-file-transfer
];
};
programs.fuse.userAllowOther = true;
}