Optionally add waydroid

This commit is contained in:
Jimbo 2024-09-24 17:58:52 -04:00
parent f3ce9d7475
commit deac8e4bc1
4 changed files with 7 additions and 14 deletions

View file

@ -32,7 +32,8 @@
# Services
./services/openssh.nix
./services/virtualisation.nix
./services/qemukvm.nix
#./services/waydroid.nix
./services/udev.nix
./services/sunshine.nix
./services/mpd.nix

View file

@ -1,9 +1,4 @@
{
config,
pkgs,
...
}: {
# Enable MPD
{config, pkgs, ...}: {
services.mpd = {
enable = true;
user = "jimbo";

View file

@ -1,9 +1,4 @@
{
config,
pkgs,
...
}: {
# Enable virtualization
{config, pkgs, ...}: {
virtualisation = {
libvirtd = {
enable = true;
@ -23,7 +18,6 @@
spiceUSBRedirection.enable = true;
};
# Install programs system-wide
environment.systemPackages = with pkgs; [
virt-manager
virtiofsd

View file

@ -0,0 +1,3 @@
{
virtualisation.waydroid.enable = true;
}