Merge pull request #538 from nix-community/legacy_tables_warning

types table: add deprecation warning
This commit is contained in:
lassulus 2024-02-18 09:02:10 +07:00 committed by GitHub
commit d8a4377cd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,12 @@
{ config, options, lib, diskoLib, parent, device, ... }:
{
options = {
options = lib.warn ''
The legacy table is outdated and should not be used. We recommend using the gpt type instead.
Please note that certain features, such as the test framework, may not function properly with the legacy table type.
If you encounter errors similar to:
"error: The option `disko.devices.disk.disk1.content.partitions."[definition 1-entry 1]".content._config` is read-only, but it's set multiple times,"
this is likely due to the use of the legacy table type.
'' {
type = lib.mkOption {
type = lib.types.enum [ "table" ];
internal = true;