nixos/modules/system/hardware/waydroid/default.nix

16 lines
312 B
Nix
Raw Permalink Normal View History

2024-10-28 21:26:34 +01:00
{ config, lib, ... }:
with lib;
let
cfg = config.modules.system.hardware.waydroid;
in
{
options.modules.system.hardware.waydroid = {
enable = mkEnableOption ''
Enable waydroid with my custom configurations
'';
};
config = mkIf cfg.enable {
virtualisation.waydroid.enable = true;
};
}