9 lines
164 B
Nix
9 lines
164 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
users.users.makefu.packages = with pkgs;[
|
||
|
go-mtpfs
|
||
|
];
|
||
|
|
||
|
boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
|
||
|
}
|