nix-powerpc/lancom.nix
2025-02-10 11:47:09 +00:00

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; });
})
];
}