waydroid: init module
This commit is contained in:
parent
864ff685fe
commit
1f5250329f
|
@ -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
|
||||
|
|
28
modules/services/waydroid.nix
Normal file
28
modules/services/waydroid.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue