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>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-05 14:02:40 +00:00
committed by GitHub
parent 4253518ceb
commit 53ea704e57
2 changed files with 3 additions and 11 deletions

View File

@@ -12,8 +12,7 @@
ESP = { ESP = {
priority = 1; priority = 1;
name = "ESP"; name = "ESP";
start = "1M"; size = "512M";
end = "512M";
type = "EF00"; type = "EF00";
content = { content = {
type = "filesystem"; type = "filesystem";
@@ -24,8 +23,7 @@
}; };
root = { root = {
name = "root"; name = "root";
start = "512M"; size = "100%";
end = "100%";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";
@@ -45,8 +43,7 @@
partitions = { partitions = {
primary = { primary = {
name = "primary"; name = "primary";
start = "1M"; size = "100%";
end = "100%";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";

View File

@@ -34,11 +34,6 @@ logo = Image("logo.png");
logo_sprite = Sprite(logo); logo_sprite = Sprite(logo);
logo_sprite.SetX((Window.GetWidth() - logo.GetWidth()) / 2); logo_sprite.SetX((Window.GetWidth() - logo.GetWidth()) / 2);
logo_sprite.SetY((Window.GetHeight() - logo.GetHeight()) / 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 EOF
''; '';
} }