summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-08-18 17:38:37 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-08-18 17:38:37 +0200
commitc67ff4d387b7dc4087383493b494068f3f0004e0 (patch)
tree57095cbba8ba56dbb672e409cdeb3273820df3cc /README.md
parent1b7912e3848bfb068e2cb05f87cf583e7de29e0c (diff)
add bcachefs support
Diffstat (limited to 'README.md')
-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;
+ })
];
};
};