add waydroid
This commit is contained in:
parent
c2f1951567
commit
9e968ef3d8
2 changed files with 11 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
|||
(libs.root "/modules/fonts.nix")
|
||||
|
||||
(libs.root "/modules/features/system/packages.nix")
|
||||
(libs.root "/modules/features/system/waydroid.nix")
|
||||
(libs.root "/modules/features/system/boot.nix")
|
||||
(libs.root "/modules/features/system/sddm.nix")
|
||||
(libs.root "/modules/features/system/gdm.nix")
|
||||
|
|
|
|||
10
modules/features/system/waydroid.nix
Normal file
10
modules/features/system/waydroid.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
virtualisation.waydroid = {
|
||||
enable = true;
|
||||
package = pkgs.waydroid-nftables;
|
||||
};
|
||||
|
||||
environment.systemPackages = lib.mkOptionals config.virtualisation.waydroid.enable [
|
||||
waydroid-helper
|
||||
];
|
||||
}
|
||||
Reference in a new issue