faucet(fs): fix bad efi partition uuid default

This commit is contained in:
514fpv 2024-01-05 08:41:01 +08:00
parent 26fe55b39d
commit 5743654c5b
Signed by: koishi
SSH key fingerprint: SHA256:VkIdW3jUIiqecV2WNAje2fGU5lEhN0XZ58DN0NS4pv0

View file

@ -25,7 +25,7 @@ in {
enable = mkEnableOption "EFI system partition" // { default = true; }; enable = mkEnableOption "EFI system partition" // { default = true; };
uuid = mkOption { uuid = mkOption {
type = with types; str; type = with types; str;
default = "cafebabe"; default = "CAFE-BABE";
description = "vfat serial number of EFI system partition"; description = "vfat serial number of EFI system partition";
}; };
}; };