From 30468d34cd8934d41d23d67c039cf629f4e8e503 Mon Sep 17 00:00:00 2001 From: Odweta Date: Mon, 12 Jan 2026 08:38:45 +0100 Subject: [PATCH] gvfs --- usb.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/usb.nix b/usb.nix index d589e1b..1d0e9cf 100644 --- a/usb.nix +++ b/usb.nix @@ -1,9 +1,14 @@ -{ pkgs, ... }: - +{ config, pkgs, ... }: { - services.gvfs.enable = true; environment.systemPackages = with pkgs; [ gvfs - mtpfs + mtpfs + jmtpfs ]; + + services.udev.packages = with pkgs; [ + libmtp + ]; + + services.gvfs.enable = true; }