mirror of
https://github.com/ben-grande/qusal.git
synced 2024-12-26 16:09:47 -05:00
ead4073bcf
- End qrexec policy with deny rules; - Move the USB setup from sys-audio to sys-usb; and - Document the pros and cons of the different types of USB devices assignment to client qubes or to the server.
55 lines
2.8 KiB
Plaintext
55 lines
2.8 KiB
Plaintext
# SPDX-FileCopyrightText: 2023 Yukikoo neowutran <https://neowutran.ovh>
|
|
# SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
# Credits: https://forum.qubes-os.org/t/audio-qube/20685
|
|
|
|
## Do not modify this file, create a new policy with with a lower number in the
|
|
## file name instead. For example `30-user.policy`.
|
|
{% set audiovm = 'disp-' ~ sls_path %}
|
|
## Literal name 'sys-usb' in case user has not installed via our formula.
|
|
admin.vm.device.usb.Available * @tag:audiovm sys-usb allow target=dom0
|
|
admin.vm.device.usb.Available * @tag:audiovm @tag:usbvm allow target=dom0
|
|
admin.vm.device.usb.Available * @tag:audiovm @anyvm deny
|
|
|
|
admin.vm.device.mic.Available * @tag:audiovm @adminvm allow target=dom0
|
|
admin.vm.device.mic.Available * @anyvm @anyvm deny
|
|
|
|
admin.Events * {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.Events * @tag:audiovm @adminvm allow target=dom0
|
|
admin.Events * @tag:audiovm @anyvm deny
|
|
|
|
admin.vm.CurrentState * {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.CurrentState * @tag:audiovm @adminvm allow target=dom0
|
|
admin.vm.CurrentState * @tag:audiovm @anyvm deny
|
|
|
|
admin.vm.List * {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.List * @tag:audiovm @adminvm allow target=dom0
|
|
admin.vm.List * @tag:audiovm @anyvm deny
|
|
|
|
admin.vm.property.Get +audiovm {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.property.Get +audiovm @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.property.Get +stubdom_xid {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.property.Get +stubdom_xid @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.property.Get +xid {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.property.Get +xid @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.feature.CheckWithTemplate +audio {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.feature.CheckWithTemplate +audio @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.feature.CheckWithTemplate +audio-low-latency {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.feature.CheckWithTemplate +audio-low-latency @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.feature.CheckWithTemplate +audio-model {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.feature.CheckWithTemplate +audio-model @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.feature.CheckWithTemplate +supported-service.pipewire {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.feature.CheckWithTemplate +supported-service.pipewire @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
|
|
admin.vm.property.GetAll * {{ audiovm }} @tag:audiovm-{{ audiovm }} allow target=dom0
|
|
admin.vm.property.GetAll * @anyvm @tag:audiovm-{{ audiovm }} deny
|
|
## vim:ft=qrexecpolicy
|