11 lines
224 B
Nix
11 lines
224 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
# temp hack in config
|
|
systemd.tpm2.enable = false;
|
|
|
|
nixpkgs.overlays = [
|
|
(final: super: {
|
|
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
|
|
})
|
|
];
|
|
}
|