iso_minimal_new_kernel
This commit is contained in:
parent
0ff2d2755b
commit
92ad293d02
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
require = [ ./installation-cd-minimal.nix ];
|
||||||
|
|
||||||
|
boot.kernelPackages = pkgs.linuxPackages_3_7;
|
||||||
|
boot.vesa = false;
|
||||||
|
}
|
|
@ -145,6 +145,12 @@ in {
|
||||||
inherit system;
|
inherit system;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
iso_minimal_new_kernel = pkgs.lib.genAttrs systems (system: makeIso {
|
||||||
|
module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix;
|
||||||
|
type = "minimal-new-kernel";
|
||||||
|
inherit system;
|
||||||
|
});
|
||||||
|
|
||||||
iso_graphical = pkgs.lib.genAttrs systems (system: makeIso {
|
iso_graphical = pkgs.lib.genAttrs systems (system: makeIso {
|
||||||
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
||||||
type = "graphical";
|
type = "graphical";
|
||||||
|
|
Loading…
Reference in New Issue