diff options
Diffstat (limited to 'nixos/tests/common')
-rw-r--r-- | nixos/tests/common/wayland-cage.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nixos/tests/common/wayland-cage.nix b/nixos/tests/common/wayland-cage.nix new file mode 100644 index 0000000000000..55aeb858d7a42 --- /dev/null +++ b/nixos/tests/common/wayland-cage.nix @@ -0,0 +1,14 @@ +{ ... }: + +{ + imports = [ ./user-account.nix ]; + services.cage = { + enable = true; + user = "alice"; + }; + + virtualisation = { + memorySize = 1024; + qemu.options = [ "-vga virtio" ]; + }; +} |