Skip to content

Commit

Permalink
Merge pull request #538 from nix-community/legacy_tables_warning
Browse files Browse the repository at this point in the history
types table: add deprecation warning
  • Loading branch information
Lassulus authored Feb 18, 2024
2 parents 4d81082 + 0661bb8 commit d8a4377
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/types/table.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit d8a4377

Please sign in to comment.