# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . { config, lib, ... }: let cfg = config.soispha.waydroid; in { options.soispha.waydroid = { enable = lib.mkEnableOption "waydroid"; }; config = lib.mkIf cfg.enable { # FIXME: Running `waydroid session start` causes all fuse mounts instances to coredump <2023-09-02> # Thus this setting must be false. virtualisation.waydroid.enable = false; soispha.impermanence.directories = [ "/var/lib/waydroid" ]; }; }