mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
nixos/grub: Fix typo
This commit is contained in:
parent
70c11772a6
commit
525acb4d4f
|
@ -213,7 +213,7 @@ in
|
|||
fsIdentifier = mkOption {
|
||||
default = "uuid";
|
||||
type = types.addCheck types.string
|
||||
(type: type == "uuid" || type == "label" || type = "provided");
|
||||
(type: type == "uuid" || type == "label" || type == "provided");
|
||||
description = ''
|
||||
Determines how grub will identify devices when generating the
|
||||
configuration file. A value of uuid / label signifies that grub
|
||||
|
|
Loading…
Reference in a new issue