nixos/tests/tinywl: enable polkit

Tinywl just segfaults when polkit is missing, probably because it can't
access required resources.
This commit is contained in:
Martin Weinelt 2022-01-26 23:21:37 +01:00
parent 14563c7dbc
commit ab34ab74ee
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -10,6 +10,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }:
# Automatically login on tty1 as a normal user:
imports = [ ./common/user-account.nix ];
services.getty.autologinUser = "alice";
security.polkit.enable = true;
environment = {
systemPackages = with pkgs; [ tinywl foot wayland-utils ];