remove bcachefs iso

This commit is contained in:
Sean Buckley 2023-07-11 13:18:58 -04:00
parent 2a25f96d61
commit 92f224fef6
2 changed files with 0 additions and 22 deletions

View file

@ -9,7 +9,6 @@
mypkgs = pkgs: mypkgs = pkgs:
{ {
iso = import lib/gen-iso.nix lib pkgs.system; iso = import lib/gen-iso.nix lib pkgs.system;
iso-bcachefs = import lib/gen-iso-bcachefs.nix lib pkgs.system;
} // } //
(lib.mapAttrs' (lib.mapAttrs'
(name: type: { (name: type: {

View file

@ -1,21 +0,0 @@
lib:
system:
let
sys = lib.nixosSystem {
inherit system;
modules = [
({ modulesPath, pkgs, ... }: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix"
];
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_testing_bcachefs;
boot.supportedFilesystems = [ "bcachefs" ];
boot.initrd.availableKernelModules = [ "bcachefs" ];
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
})
];
};
in
sys.config.system.build.isoImage