summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3b506a1..f970b82 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,11 @@
exampleIso = nixos.lib.nixosSystem {
system = "x86_64-linux";
modules = [
- "${nixos}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
+ "${nixos}/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix"
+ ({ lib, pkgs, ... }: {
+ boot.supportedFilesystems = [ "bcachefs" ];
+ boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
+ })
];
};
};