From ab34ab74ee26b467767d256761b24e49bed37735 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 26 Jan 2022 23:21:37 +0100 Subject: [PATCH] nixos/tests/tinywl: enable polkit Tinywl just segfaults when polkit is missing, probably because it can't access required resources. --- nixos/tests/tinywl.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/tinywl.nix b/nixos/tests/tinywl.nix index b286cab77945..8fb87b533306 100644 --- a/nixos/tests/tinywl.nix +++ b/nixos/tests/tinywl.nix @@ -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 ];