From 53ea704e57cb28469113c1f3995b20b8bfc89acd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Apr 2026 14:02:40 +0000 Subject: [PATCH] Fix disko.nix partition syntax and remove broken Spinner from Plymouth theme Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/487cd80b-c747-44b8-9479-d3f7f7cc3328 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- iso/disko.nix | 9 +++------ iso/plymouth-theme.nix | 5 ----- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/iso/disko.nix b/iso/disko.nix index ad7e30f..568d1ad 100644 --- a/iso/disko.nix +++ b/iso/disko.nix @@ -12,8 +12,7 @@ ESP = { priority = 1; name = "ESP"; - start = "1M"; - end = "512M"; + size = "512M"; type = "EF00"; content = { type = "filesystem"; @@ -24,8 +23,7 @@ }; root = { name = "root"; - start = "512M"; - end = "100%"; + size = "100%"; content = { type = "filesystem"; format = "ext4"; @@ -45,8 +43,7 @@ partitions = { primary = { name = "primary"; - start = "1M"; - end = "100%"; + size = "100%"; content = { type = "filesystem"; format = "ext4"; diff --git a/iso/plymouth-theme.nix b/iso/plymouth-theme.nix index 9075659..859fc1c 100644 --- a/iso/plymouth-theme.nix +++ b/iso/plymouth-theme.nix @@ -34,11 +34,6 @@ logo = Image("logo.png"); logo_sprite = Sprite(logo); logo_sprite.SetX((Window.GetWidth() - logo.GetWidth()) / 2); logo_sprite.SetY((Window.GetHeight() - logo.GetHeight()) / 2); - -spinner = Sprite(); -spinner.SetImage(Spinner()); -spinner.SetX((Window.GetWidth() - spinner.GetImage().GetWidth()) / 2); -spinner.SetY((Window.GetHeight() + logo.GetHeight()) / 2 + 20); EOF ''; } \ No newline at end of file