forked from emily/nixfiles
allow missing modules rpi
This commit is contained in:
parent
c3313d585d
commit
bde6fb1464
1 changed files with 4 additions and 0 deletions
|
@ -63,6 +63,10 @@
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(self: super: { libcec = super.libcec.override { withLibraspberrypi = true; }; })
|
(self: super: { libcec = super.libcec.override { withLibraspberrypi = true; }; })
|
||||||
|
(self: super: {
|
||||||
|
makeModulesClosure = x:
|
||||||
|
super.makeModulesClosure (x // { allowMissing = true; });
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue