mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
54ece050b8
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
13 lines
179 B
Nix
13 lines
179 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./user-account.nix ];
|
|
services.cage = {
|
|
enable = true;
|
|
user = "alice";
|
|
};
|
|
|
|
virtualisation = {
|
|
qemu.options = [ "-vga virtio" ];
|
|
};
|
|
}
|