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 {
|
"aeolia" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
({ pkgs, ... }: { nixpkgs.overlays = [
|
|
||||||
(final: super: {
|
|
||||||
makeModulesClosure = x:
|
|
||||||
super.makeModulesClosure (x // { allowMissing = true; });
|
|
||||||
})
|
|
||||||
]; })
|
|
||||||
./nixos
|
./nixos
|
||||||
./installer.nix
|
./installer.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -58,6 +58,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
config = let cfg = config.ps4; in lib.mkIf cfg.enable {
|
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
|
# TODO write definitions for the other southbridges
|
||||||
boot.kernelPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.callPackage ../kernel/kernel-aeolia-5.3.nix {}));
|
boot.kernelPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.callPackage ../kernel/kernel-aeolia-5.3.nix {}));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue