feat(fs): add bcachefs
This commit is contained in:
parent
b89aef8c46
commit
483e7a563d
22
global/fs/bcachefs.nix
Normal file
22
global/fs/bcachefs.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -9,7 +9,7 @@ in {
|
||||||
./f2fs.nix
|
./f2fs.nix
|
||||||
./xfs.nix
|
./xfs.nix
|
||||||
./zfs.nix
|
./zfs.nix
|
||||||
#./bcachefs.nix
|
./bcachefs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
options.global.fs = {
|
options.global.fs = {
|
||||||
|
|
Loading…
Reference in a new issue