waydroid: init module

This commit is contained in:
Jonas Heinrich 2022-09-30 12:49:01 +02:00
parent 864ff685fe
commit 1f5250329f
2 changed files with 29 additions and 0 deletions

View File

@ -276,6 +276,7 @@ let
./services/unclutter.nix
./services/unison.nix
./services/volnoti.nix
./services/waydroid.nix
./services/window-managers/awesome.nix
./services/window-managers/bspwm/default.nix
./services/window-managers/fluxbox.nix

View File

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.waydroid;
in {
options.services.waydroid.enable = mkEnableOption "Waydroid Android container";
config = mkIf cfg.enable {
systemd.user.services.waydroid-session = {
Unit = {
Description = "Waydroid user session";
Requires = [ "waydroid-container.service" ];
};
Install.WantedBy = [ "default.target" ];
Service = {
ExecStart =
"${pkgs.waydroid}/bin/waydroid session start";
Restart = "always";
RestartSec = 12;
};
};
};
}