nixpkgs/nixos/tests/common/wayland-cage.nix
2021-11-19 21:20:53 +01:00

15 lines
202 B
Nix

{ ... }:
{
imports = [ ./user-account.nix ];
services.cage = {
enable = true;
user = "alice";
};
virtualisation = {
memorySize = 1024;
qemu.options = [ "-vga virtio" ];
};
}