1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00
nixpkgs/nixos/tests/common/wayland-cage.nix

14 lines
179 B
Nix
Raw Normal View History

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