Add distrobox, docker and waydroid

This commit is contained in:
Florian RICHER 2024-05-19 18:26:54 +02:00
parent 7c2897c2dc
commit 1bec301c7a
3 changed files with 10 additions and 0 deletions

View file

@ -16,6 +16,8 @@
../../modules/bluetooth.nix
../../modules/pipewire.nix
../../modules/plymouth.nix
../../modules/docker.nix
../../modules/waydroid.nix
../../modules # Import optional configuration

View file

@ -32,6 +32,10 @@
wayland-utils # For wayland-info command
glxinfo
clinfo
# distrobox (testing)
distrobox
boxbuddy
];
# Define a user account. Don't forget to set a password with passwd.

4
modules/waydroid.nix Normal file
View file

@ -0,0 +1,4 @@
{ config, pkgs, ... }:
{
virtualisation.waydroid.enable = true;
}