qusal/salt/sys-usb/install.sls
2025-01-09 16:44:56 +01:00

27 lines
555 B
Plaintext

{#
SPDX-FileCopyrightText: 2023 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
include:
- utils.tools.common.update
"{{ slsdotpath }}-installed":
pkg.installed:
- require:
- sls: utils.tools.common.update
- install_recommends: False
- skip_suggestions: True
- setopt: "install_weak_deps=False"
- pkgs:
- pciutils
- qubes-input-proxy-sender
- qubes-usb-proxy
- qubes-ctap
- fido2-tools
{% endif -%}