lol

nixos/release: drop amazonImageAutomaticSize (#397037)

authored by

Arian van Putten and committed by
GitHub
eb8f5c02 1ec9dbf3

-26
-26
nixos/release.nix
··· 339 339 340 340 ); 341 341 342 - # Test job for https://github.com/NixOS/nixpkgs/issues/121354 to test 343 - # automatic sizing without blocking the channel. 344 - amazonImageAutomaticSize = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] ( 345 - system: 346 - 347 - with import ./.. { inherit system; }; 348 - 349 - hydraJob ( 350 - (import lib/eval-config.nix { 351 - inherit system; 352 - modules = [ 353 - configuration 354 - versionModule 355 - ./maintainers/scripts/ec2/amazon-image.nix 356 - ( 357 - { ... }: 358 - { 359 - virtualisation.diskSize = "auto"; 360 - } 361 - ) 362 - ]; 363 - }).config.system.build.amazonImage 364 - ) 365 - 366 - ); 367 - 368 342 # An image that can be imported into incus and used for container creation 369 343 incusContainerImage = 370 344 forMatchingSystems