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

14 lines
179 B
Nix
Raw Normal View History

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