Compare commits

...

1 Commits

Author SHA1 Message Date
d1bee6c14d fix(waydroid): use package that won’t error out 2026-05-03 15:37:16 +02:00

View File

@@ -9,7 +9,10 @@ with lib; let
in {
options.mySystem.desktop.waydroid.enable = mkEnableOption "Enables Waydroid";
config = mkIf cfg.enable {
virtualisation.waydroid.enable = cfg.enable;
virtualisation.waydroid = {
enable = cfg.enable;
package = pkgs.waydroid-nftables;
};
environment.systemPackages = [pkgs.waydroid-helper];
};
}