feat(fs): add bcachefs

This commit is contained in:
514fpv 2024-01-24 08:59:12 +08:00
parent b89aef8c46
commit 483e7a563d
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 23 additions and 1 deletions

22
global/fs/bcachefs.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.global.fs;
in {
options.global.fs.bcachefs = {
options = mkOption {
type = with types; listOf str;
default = [ "noatime" "compression=zstd" ];
description = "bcachefs mount options";
};
};
config = mkIf (cfg.type == "bcachefs") {
fileSystems."/nix" =
{ inherit (cfg.bcachefs) options;
device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "bcachefs";
};
};
}

View file

@ -9,7 +9,7 @@ in {
./f2fs.nix
./xfs.nix
./zfs.nix
#./bcachefs.nix
./bcachefs.nix
];
options.global.fs = {