move nixpkgs.overlay to nixos module

This commit is contained in:
Jeeves 2024-11-30 07:11:53 -07:00
parent 8a4ec7340e
commit cbfaf9b9d9
2 changed files with 7 additions and 6 deletions

View file

@ -13,12 +13,6 @@
"aeolia" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
({ pkgs, ... }: { nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
]; })
./nixos
./installer.nix
];

View file

@ -58,6 +58,13 @@
};
config = let cfg = config.ps4; in lib.mkIf cfg.enable {
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
];
# TODO write definitions for the other southbridges
boot.kernelPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.callPackage ../kernel/kernel-aeolia-5.3.nix {}));