summaryrefslogtreecommitdiff
path: root/hosts/nixedo/default.nix
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-03-27 17:41:30 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2026-03-27 17:41:30 +0100
commit088015c62ca91f6253f8607fd55eb2f6f14085e5 (patch)
treec0d5e86710e5fe3df4f11260b4f58b27d032fdd9 /hosts/nixedo/default.nix
parent23dc7330b8ef7476eec432a3274f40b757254a37 (diff)
2026-03-27 updates by auto-switch
Diffstat (limited to 'hosts/nixedo/default.nix')
-rw-r--r--hosts/nixedo/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/hosts/nixedo/default.nix b/hosts/nixedo/default.nix
index 334be55..b294654 100644
--- a/hosts/nixedo/default.nix
+++ b/hosts/nixedo/default.nix
@@ -70,13 +70,16 @@
}
];
- systemd.services.ModemManager = {
- enable = lib.mkForce true;
- path = [ pkgs.libqmi ];
- wantedBy = [
- "multi-user.target"
- "network.target"
- ];
+ systemd.services = {
+ waydroid-container.enable = true;
+ ModemManager = {
+ enable = lib.mkForce true;
+ path = [ pkgs.libqmi ];
+ wantedBy = [
+ "multi-user.target"
+ "network.target"
+ ];
+ };
};
hardware.tuxedo-rs = {
@@ -88,6 +91,7 @@
virtualisation = {
libvirtd.enable = true;
+ waydroid.enable = true;
};
system.stateVersion = "24.05";