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