From 913f2d0b51e71433969e0270be471443008fd120 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Fri, 6 May 2022 13:05:56 +0800 Subject: [PATCH] playbooks: add one for NixOS While it can be done with NixOS, it already exists in Ansible so we're taking advantage of it. --- playbooks/nixos.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 playbooks/nixos.yml diff --git a/playbooks/nixos.yml b/playbooks/nixos.yml new file mode 100644 index 0000000..26b8b90 --- /dev/null +++ b/playbooks/nixos.yml @@ -0,0 +1,13 @@ +# This is just a test playbook for combining NixOS with Ansible for doing tasks +# that usually is not good with NixOS. +--- +- name: foo-dogsquared's NixOS playbook for Flatpak-related tasks + hosts: workstation + become: yes + + roles: + - role: system/flatpak + tags: + - desktop + - system + - flatpak