nixpkgs/nixos/tests/common/wayland-cage.nix

15 lines
202 B
Nix
Raw Normal View History

2021-05-19 14:22:52 +02:00
{ ... }:
{
imports = [ ./user-account.nix ];
services.cage = {
enable = true;
user = "alice";
};
virtualisation = {
memorySize = 1024;
qemu.options = [ "-vga virtio" ];
};
}