summaryrefslogtreecommitdiff
path: root/system-profiles/bcachefs.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2025-08-25 14:19:52 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2025-08-25 14:19:52 +0200
commit218ac55d86ee49d151c0ba2dfbca6da104c66703 (patch)
tree1b6546436f71b23c04d4930e46836c9614452abf /system-profiles/bcachefs.nix
parent13000ec4703d1dd49fd12f8c2cb427130e4899b7 (diff)
downloadnixos-218ac55d86ee49d151c0ba2dfbca6da104c66703.tar
nixos-218ac55d86ee49d151c0ba2dfbca6da104c66703.tar.gz
nixos-218ac55d86ee49d151c0ba2dfbca6da104c66703.tar.bz2
nixos-218ac55d86ee49d151c0ba2dfbca6da104c66703.tar.xz
nixos-218ac55d86ee49d151c0ba2dfbca6da104c66703.zip
Diffstat (limited to 'system-profiles/bcachefs.nix')
-rw-r--r--system-profiles/bcachefs.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/system-profiles/bcachefs.nix b/system-profiles/bcachefs.nix
index 6090c56d..be12bf20 100644
--- a/system-profiles/bcachefs.nix
+++ b/system-profiles/bcachefs.nix
@@ -2,5 +2,15 @@
2 config = { 2 config = {
3 boot.supportedFilesystems.bcachefs = true; 3 boot.supportedFilesystems.bcachefs = true;
4 environment.systemPackages = with pkgs; [ bcachefs-tools ]; 4 environment.systemPackages = with pkgs; [ bcachefs-tools ];
5
6 boot.kernelPatches = [
7 {
8 name = "bcachefs-casefold-fix";
9 patch = null;
10 structuredExtraConfig = with lib.kernel; {
11 UNICODE = lib.mkOverride 90 no;
12 };
13 }
14 ];
5 }; 15 };
6} 16}