nixosTests.allDrivers.anbox: avoid use of aliases
Before the change eval of a test failed with disabled aliases as: $ nix build -f. nixosTests.allDrivers.anbox --arg config '{ allowAliases = false; }' ... error: attribute 'linuxPackages_5_15' missing
This commit is contained in:
parent
0654bfb1e4
commit
64395b676f
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
test-support.displayManager.auto.user = "alice";
|
||||
|
||||
virtualisation.anbox.enable = true;
|
||||
boot.kernelPackages = pkgs.linuxPackages_5_15;
|
||||
boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_15;
|
||||
virtualisation.memorySize = 2500;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue