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

16 lines
318 B
Nix
Raw Normal View History

2024-05-25 01:32:48 +02:00
{ config, pkgs, lib, ... }:
with lib;
let
2024-05-27 22:40:30 +02:00
cfg = config.modules.system.hardware.waydroid;
2024-05-25 01:32:48 +02:00
in
{
2024-05-27 22:40:30 +02:00
options.modules.system.hardware.waydroid = {
2024-05-25 01:32:48 +02:00
enable = mkEnableOption ''
Enable waydroid with my custom configurations
'';
};
config = mkIf cfg.enable {
2024-05-25 23:51:37 +02:00
virtualisation.waydroid.enable = true;
2024-05-25 01:32:48 +02:00
};
}