about summary refs log tree commit diff
path: root/nixos/tests/common/wayland-cage.nix
blob: fd0700941392b250f74c346a30b3aac15c28cc5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ ... }:

{
  imports = [ ./user-account.nix ];
  services.cage = {
    enable = true;
    user = "alice";
  };

  virtualisation = {
    qemu.options = [ "-vga virtio" ];
  };
}