From 9d4e33354573539108ac57a3e082d18692684132 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Fri, 5 Jan 2024 08:41:01 +0800 Subject: [PATCH] fix(fs): bad efi partition uuid default --- faucet/fs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faucet/fs/default.nix b/faucet/fs/default.nix index fda65d1e..084e6177 100644 --- a/faucet/fs/default.nix +++ b/faucet/fs/default.nix @@ -25,7 +25,7 @@ in { enable = mkEnableOption "EFI system partition" // { default = true; }; uuid = mkOption { type = with types; str; - default = "cafebabe"; + default = "CAFE-BABE"; description = "vfat serial number of EFI system partition"; }; };