Waydroid: Difference between revisions

Onny (talk | contribs)
Undo revision 23918 by Makefu (talk)
Tag: Undo
 
Line 103: Line 103:
=== Mount host directories ===
=== Mount host directories ===
{{Warning|Parts of this instruction will only work with the latest waydroid-helper package in NixOS master and will be available with the next release 25.11}}Install and configure graphical application <code>waydroid-helper</code><syntaxhighlight lang="nix">
{{Warning|Parts of this instruction will only work with the latest waydroid-helper package in NixOS master and will be available with the next release 25.11}}Install and configure graphical application <code>waydroid-helper</code><syntaxhighlight lang="nix">
systemd.packages = [ pkgs.waydroid-helper ];
environment.systemPackages =  [ pkgs.waydroid-helper ];
environment.systemPackages =  [ pkgs.waydroid-helper ];


systemd = {
systemd = {
   packages = [ pkgs.waydroid-helper ];
   packages = [ pkgs.waydroid-helper ];
   services.waydroid-mount.wantedBy = [ "multi‑user.target" ];
   services.waydroid-mount.wantedBy = [ "multi-user.target" ];
};
};