diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-25 17:08:15 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-25 17:08:15 +0100 |
| commit | 22fe4d7ba0d25e9e413a7ea1f435bbbc4fa35af9 (patch) | |
| tree | d0f3bdd9f1cbd50b8c0ca92a400c0e02c1b58269 | |
| parent | 06e08e9cc1766a1ec9053bce78bea5f7201cb2d6 (diff) | |
add waydroid-container
| -rw-r--r-- | common/services/default.nix | 19 | ||||
| -rw-r--r-- | common/services/waydroid-container.nix | 4 |
2 files changed, 14 insertions, 9 deletions
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; +} |