13 lines
190 B
Nix
Executable File
13 lines
190 B
Nix
Executable File
{ config, pkgs, ...}:
|
|
|
|
{
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
jmtpfs
|
|
simple-mtpfs
|
|
android-file-transfer
|
|
];
|
|
};
|
|
programs.fuse.userAllowOther = true;
|
|
}
|