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

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

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