Fix missing modules

This commit is contained in:
2023-12-16 23:43:10 +00:00
parent a14c591dd0
commit 3c823532b9

View File

@@ -11,6 +11,15 @@
tmp.cleanOnBoot = true;
};
# Fix missing modules
# https://github.com/NixOS/nixpkgs/issues/154163
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";