hw/exfat-nofuse -> tools/mobility

This commit is contained in:
makefu 2017-12-27 06:12:07 +01:00
parent 2589f81f9a
commit 6124dfffcf
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
4 changed files with 11 additions and 5 deletions

View File

@ -1,4 +0,0 @@
{ config, ... }:
{
boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
}

View File

@ -7,6 +7,7 @@
./extra-gui.nix
./games.nix
./media.nix
./mobility.nix
./scanner-tools.nix
./sec.nix
./sec-gui.nix

View File

@ -2,8 +2,9 @@
{
users.users.makefu.packages = with pkgs;[
python3Packages.virtualenv
python3
python3Packages.pyserial
python3Packages.virtualenv
# embedded
gi
flashrom

View File

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
users.users.makefu.packages = with pkgs;[
go-mtpfs
];
boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
}