Reorder settings logically
This commit is contained in:
parent
0dd84b2508
commit
a73b74e05d
1 changed files with 6 additions and 6 deletions
|
@ -155,6 +155,12 @@
|
|||
default = false;
|
||||
};
|
||||
|
||||
type = mkOption {
|
||||
type = types.nullOr (types.either types.str types.int);
|
||||
description = "The type of the partition.";
|
||||
default = null;
|
||||
};
|
||||
|
||||
size = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
description = "The size of the partition.";
|
||||
|
@ -166,12 +172,6 @@
|
|||
description = "A script for printing the size to the console.";
|
||||
internal = true;
|
||||
};
|
||||
|
||||
type = mkOption {
|
||||
type = types.nullOr (types.either types.str types.int);
|
||||
description = "The type of the partition.";
|
||||
default = null;
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
Loading…
Reference in a new issue