From 92f224fef62096b87b7c9b8b89321a14a273b341 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Tue, 11 Jul 2023 13:18:58 -0400 Subject: [PATCH] remove bcachefs iso --- flake.nix | 1 - lib/gen-iso-bcachefs.nix | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 lib/gen-iso-bcachefs.nix diff --git a/flake.nix b/flake.nix index 865b3c7..76cb0c4 100644 --- a/flake.nix +++ b/flake.nix @@ -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: { diff --git a/lib/gen-iso-bcachefs.nix b/lib/gen-iso-bcachefs.nix deleted file mode 100644 index 77874de..0000000 --- a/lib/gen-iso-bcachefs.nix +++ /dev/null @@ -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