nixos/snapper: add experimental support for bcachefs (#391885)

This commit is contained in:
Djabx 2025-03-24 11:34:06 +01:00 committed by GitHub
parent 2d8b5252bd
commit 09d3b7f834
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,10 +55,15 @@ let
};
FSTYPE = lib.mkOption {
type = lib.types.enum [ "btrfs" ];
type = lib.types.enum [
"btrfs"
"bcachefs"
];
default = "btrfs";
description = ''
Filesystem type. Only btrfs is stable and tested.
bcachefs support is experimental.
'';
};