Allow removing pre-defined partitions
This commit is contained in:
parent
0ffc88451a
commit
9c4b00f1fb
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
partitions = mkOption {
|
partitions = mkOption {
|
||||||
type = types.attrsOf partitionType;
|
type = types.attrsOf (types.nullOr partitionType);
|
||||||
description = "The partitions of the disk.";
|
description = "The partitions of the disk.";
|
||||||
default = {};
|
default = {};
|
||||||
};
|
};
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
let
|
let
|
||||||
partitions = builtins.foldl'
|
partitions = builtins.foldl'
|
||||||
(list: predicate: lib.lists.sortOn predicate list)
|
(list: predicate: lib.lists.sortOn predicate list)
|
||||||
(builtins.attrValues config.partitions)
|
(builtins.filter (_: _ != null) (builtins.attrValues config.partitions))
|
||||||
[
|
[
|
||||||
(_: _.index)
|
(_: _.index)
|
||||||
(_: _.order)
|
(_: _.order)
|
||||||
|
|
Loading…
Reference in a new issue