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
./services/openssh.nix ./services/openssh.nix
./services/virtualisation.nix ./services/qemukvm.nix
#./services/waydroid.nix
./services/udev.nix ./services/udev.nix
./services/sunshine.nix ./services/sunshine.nix
./services/mpd.nix ./services/mpd.nix

View file

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

View file

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

View file

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