1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
This commit is contained in:
Jonas Heinrich 2025-03-24 19:22:47 +00:00 committed by GitHub
commit bf69e5d711
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

View file

@ -424,6 +424,7 @@ let
./services/unison.nix
./services/vdirsyncer.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;
};
};
};
}