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