mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
![Artturin](/assets/img/avatar_default.png)
the default hasn't been changed since 2009 this can improve our test performances nixos/tests: remove explicit memorySize <1024 1024MiB is now the default
14 lines
179 B
Nix
14 lines
179 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./user-account.nix ];
|
|
services.cage = {
|
|
enable = true;
|
|
user = "alice";
|
|
};
|
|
|
|
virtualisation = {
|
|
qemu.options = [ "-vga virtio" ];
|
|
};
|
|
}
|