mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
hydrogen: allow missing modules
Related to https://github.com/NixOS/nixpkgs/issues/154163#issuecomment-1350599022
This commit is contained in:
parent
8800d9053a
commit
f9edbdd3fa
1 changed files with 10 additions and 0 deletions
|
|
@ -7,4 +7,14 @@
|
||||||
size = 1024; # MB
|
size = 1024; # MB
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Related https://github.com/NixOS/nixpkgs/issues/154163#issuecomment-1350599022
|
||||||
|
#
|
||||||
|
# modprobe: FATAL: Module sun4i-drm not found in directory /nix/store/gvvwpdckzcr4iamp1iyrqw3nzb7bg6c4-linux-rpi-6.6.51-stable_20241008-modules/lib/modules/6.6.51
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
makeModulesClosure = x:
|
||||||
|
prev.makeModulesClosure (x // {allowMissing = true;});
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue