diff options
Diffstat (limited to 'common/services')
| -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; +} |