move nixpkgs.overlay to nixos module
This commit is contained in:
parent
8a4ec7340e
commit
cbfaf9b9d9
2 changed files with 7 additions and 6 deletions
|
@ -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
|
||||
];
|
||||
|
|
|
@ -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 {}));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue