diff --git a/host_vars/p14/system.yml b/host_vars/p14/system.yml index 1a5c06a..4f8e069 100644 --- a/host_vars/p14/system.yml +++ b/host_vars/p14/system.yml @@ -27,6 +27,8 @@ packages: - postgresql - plasma-meta - plasma-login-manager + - power-profiles-daemon + - powerdevil - wezterm - thunderbird - pipewire diff --git a/p14.yml b/p14.yml index 2c09049..9215fc8 100644 --- a/p14.yml +++ b/p14.yml @@ -16,6 +16,10 @@ ansible.builtin.import_tasks: "tasks/wireguard-media.yml" tags: wireguard-media + - name: P14 provisioning + ansible.builtin.import_tasks: "tasks/p14.yml" + tags: p14 + handlers: - name: Import default handlers ansible.builtin.import_tasks: handlers.yml diff --git a/tasks/p14.yml b/tasks/p14.yml new file mode 100644 index 0000000..424112b --- /dev/null +++ b/tasks/p14.yml @@ -0,0 +1,7 @@ +--- +- name: Enable power-profiles-daemon + become: true + ansible.builtin.systemd: + name: power-profiles-daemon + state: started + enabled: true