summaryrefslogtreecommitdiff
path: root/common/services/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/services/default.nix')
-rw-r--r--common/services/default.nix19
1 files changed, 10 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
+ )