Begin stabilize system module
This commit is contained in:
parent
edcbfaf379
commit
6163188786
24 changed files with 63 additions and 59 deletions
16
modules/system/waydroid/default.nix
Normal file
16
modules/system/waydroid/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.system.waydroid;
|
||||
in
|
||||
{
|
||||
options.modules.system.waydroid = {
|
||||
enable = mkEnableOption ''
|
||||
Enable waydroid with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
virtualisation.waydroid.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue