nixos/global/fs/bcachefs.nix

31 lines
505 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
2024-01-24 08:59:12 +08:00
cfg = config.global.fs;
2025-01-13 11:52:09 +08:00
in
{
2024-01-24 08:59:12 +08:00
options.global.fs.bcachefs = {
options = mkOption {
type = with types; listOf str;
2025-01-13 11:52:09 +08:00
default = [
"noatime"
"compression=zstd"
];
2024-01-24 08:59:12 +08:00
description = "bcachefs mount options";
};
};
config = mkIf (cfg.type == "bcachefs") {
2025-01-13 11:52:09 +08:00
fileSystems."/nix" = {
inherit (cfg.bcachefs) options;
2024-01-24 08:59:12 +08:00
device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "bcachefs";
};
};
}