ma hw/xmm7360: init

This commit is contained in:
makefu 2021-03-12 20:33:08 +01:00
parent 46c9132c5a
commit 281fd57f5b
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -0,0 +1,11 @@
{ pkgs, config, ... }:
let
pkg = (pkgs.callPackage ../../5pkgs/xmm7360 { kernel = config.boot.kernelPackages.kernel; });
in
{
boot.extraModulePackages = [
pkg
];
boot.initrd.availableKernelModules = [ "xmm7360" ];
users.users.makefu.packages = [ pkg ];
}