diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-07-18 10:45:01 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-07-18 10:45:01 +0200 |
commit | cc61a97263b5622d926bbe586c3c0205f4203ca8 (patch) | |
tree | 5ce0ec2c30a55e0b453d5b476ccb9989db03d41a /system-profiles | |
parent | 7ce1b9fd85980e987908a4296b19c1405278a793 (diff) | |
download | nixos-cc61a97263b5622d926bbe586c3c0205f4203ca8.tar nixos-cc61a97263b5622d926bbe586c3c0205f4203ca8.tar.gz nixos-cc61a97263b5622d926bbe586c3c0205f4203ca8.tar.bz2 nixos-cc61a97263b5622d926bbe586c3c0205f4203ca8.tar.xz nixos-cc61a97263b5622d926bbe586c3c0205f4203ca8.zip |
...
Diffstat (limited to 'system-profiles')
-rw-r--r-- | system-profiles/bcachefs.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/system-profiles/bcachefs.nix b/system-profiles/bcachefs.nix index f9f048b9..ddddcc93 100644 --- a/system-profiles/bcachefs.nix +++ b/system-profiles/bcachefs.nix | |||
@@ -1,6 +1,16 @@ | |||
1 | { pkgs, ... } : { | 1 | { pkgs, lib, ... } : { |
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 | extraStructuredConfig = with lib.kernel; { | ||
11 | UNICODE = no; | ||
12 | }; | ||
13 | } | ||
14 | ]; | ||
5 | }; | 15 | }; |
6 | } | 16 | } |