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

Djabx 09d3b7f8 2d8b5252

Changed files
+6 -1
nixos
modules
services
+6 -1
nixos/modules/services/misc/snapper.nix
···
};
FSTYPE = lib.mkOption {
-
type = lib.types.enum [ "btrfs" ];
default = "btrfs";
description = ''
Filesystem type. Only btrfs is stable and tested.
'';
};
···
};
FSTYPE = lib.mkOption {
+
type = lib.types.enum [
+
"btrfs"
+
"bcachefs"
+
];
default = "btrfs";
description = ''
Filesystem type. Only btrfs is stable and tested.
+
+
bcachefs support is experimental.
'';
};