qusal/salt/sys-audio/create.sls

95 lines
1.8 KiB
Plaintext
Raw Normal View History

2023-11-13 14:33:28 +00:00
{#
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
2023-11-13 14:33:28 +00:00
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{%- from "qvm/template.jinja" import load -%}
include:
- .clone
{% load_yaml as defaults -%}
name: tpl-{{ slsdotpath }}
force: True
require:
- sls: {{ slsdotpath }}.clone
prefs:
- audiovm: ""
{%- endload %}
{{ load(defaults) }}
2023-11-13 14:33:28 +00:00
{% load_yaml as defaults -%}
name: dvm-{{ slsdotpath }}
force: True
require:
- sls: {{ slsdotpath }}.clone
present:
- template: tpl-{{ slsdotpath }}
- label: red
prefs:
- template: tpl-{{ slsdotpath }}
- label: red
- netvm: ""
- audiovm: ""
2023-11-13 14:33:28 +00:00
- memory: 400
- maxmem: 0
- vcpus: 1
- virt_mode: hvm
- template_for_dispvms: True
- include_in_backups: False
features:
2023-11-13 14:33:28 +00:00
- enable:
- servicevm
- appmenus-dispvm
- disable:
- service.cups
- service.cups-browsed
- service.meminfo-writer
- service.qubes-updates-proxy
{%- endload %}
{{ load(defaults) }}
{% set audio_pcidevs = salt['grains.get']('pci_audio_devs', []) -%}
{% load_yaml as defaults -%}
name: disp-{{ slsdotpath }}
2023-11-13 14:33:28 +00:00
force: True
require:
- qvm: dvm-{{ slsdotpath }}
present:
- template: dvm-{{ slsdotpath }}
- label: red
- class: DispVM
prefs:
- template: dvm-{{ slsdotpath }}
- label: red
- netvm: ""
- audiovm: disp-{{ slsdotpath }}
2023-11-13 14:33:28 +00:00
- include_in_backups: False
- pci_strictreset: False
- autostart: False
- pcidevs: {{ audio_pcidevs|yaml }}
features:
- enable:
- servicevm
2024-01-02 22:01:58 +00:00
- service.audiovm
- service.blueman
2023-11-13 14:33:28 +00:00
- disable:
- service.cups
- service.cups-browsed
- service.meminfo-writer
- service.qubes-updates-proxy
tags:
- add:
- audiovm
2023-11-13 14:33:28 +00:00
{%- endload %}
{{ load(defaults) }}
"disp-{{ slsdotpath }}-default_audiovm":
2023-11-13 14:33:28 +00:00
cmd.run:
- require:
- qvm: disp-{{ slsdotpath }}
- name: qubes-prefs default_audiovm disp-{{ slsdotpath }}
2023-11-13 14:33:28 +00:00
{% from 'utils/macros/policy.sls' import policy_set with context -%}
{{ policy_set(sls_path, '80') }}