mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
remove bcachefs iso
This commit is contained in:
parent
2a25f96d61
commit
92f224fef6
2 changed files with 0 additions and 22 deletions
|
@ -9,7 +9,6 @@
|
|||
mypkgs = pkgs:
|
||||
{
|
||||
iso = import lib/gen-iso.nix lib pkgs.system;
|
||||
iso-bcachefs = import lib/gen-iso-bcachefs.nix lib pkgs.system;
|
||||
} //
|
||||
(lib.mapAttrs'
|
||||
(name: type: {
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue