From f2ed99cd297040568170fb93e7481919060f29e7 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 24 Oct 2024 14:44:27 +0200 Subject: refactor(modules/impermanence): Move all optional dirs to their modules This increases the locality of configurations and makes it easier to see, what happens, when you enable a module. --- modules/by-name/wa/waydroid/module.nix | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'modules/by-name/wa') diff --git a/modules/by-name/wa/waydroid/module.nix b/modules/by-name/wa/waydroid/module.nix index 4680db63..58bce7d1 100644 --- a/modules/by-name/wa/waydroid/module.nix +++ b/modules/by-name/wa/waydroid/module.nix @@ -1,5 +1,19 @@ -{...}: { - # 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; +{ + 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" + ]; + }; } -- cgit 1.4.1