1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

security: add example for accessibilityPrograms

This commit is contained in:
Daiderd Jordan 2017-05-16 00:40:58 +02:00
parent d684bbf202
commit e02c4543b0
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -18,6 +18,7 @@ in
security.accessibilityPrograms = mkOption {
type = types.listOf types.path;
default = [];
example = literalExample ''[ ''${pkgs.hello}/bin/hello" ]'';
description = "List of nix programs that are allowed control through the accessibility APIs.";
};
};