From 22fe4d7ba0d25e9e413a7ea1f435bbbc4fa35af9 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 25 Mar 2026 17:08:15 +0100 Subject: add waydroid-container --- common/services/default.nix | 19 ++++++++++--------- common/services/waydroid-container.nix | 4 ++++ 2 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 common/services/waydroid-container.nix diff --git a/common/services/default.nix b/common/services/default.nix index bc1c9ec..381a06b 100644 --- a/common/services/default.nix +++ b/common/services/default.nix @@ -1,13 +1,14 @@ { pkgs, ... }: let - services = [ - "pipewire" - "greetd" - ]; +services = [ + "pipewire" + "greetd" + "waydroid-container" +]; in builtins.listToAttrs ( - map (n: { - name = n; - value = import ./${n}.nix { inherit pkgs; }; - }) services -) + map (n: { + name = n; + value = import ./${n}.nix { inherit pkgs; }; + }) services + ) diff --git a/common/services/waydroid-container.nix b/common/services/waydroid-container.nix new file mode 100644 index 0000000..a8321f2 --- /dev/null +++ b/common/services/waydroid-container.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + enable = true; +} -- cgit v1.2.3-70-g09d2