1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add plymouth to nucturne boot options

This commit is contained in:
Stefan Ellmauthaler 2022-06-21 18:36:54 +02:00
parent 0bbd758ec5
commit a12d8e9dd1
Failed to extract signature

View File

@ -48,11 +48,15 @@
};
};
boot.extraModulePackages = [
boot = {
extraModulePackages = [
config.boot.kernelPackages.v4l2loopback
];
boot.kernelModules = [
kernelModules = [
"v4l2loopback"
];
plymouth.enable = true;
};
}