initial commit

This commit is contained in:
2023-12-21 13:05:49 +05:30
commit e63afa54b8
65 changed files with 3589 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{
imports = [
./docker.nix
./waydroid.nix
./qemu.nix
];
}

View File

@ -0,0 +1,7 @@
{ username, ... }: {
virtualisation = {
docker.enable = true;
};
users.users.${username}.extraGroups = [ "docker" ];
}

View File

@ -0,0 +1,11 @@
{ pkgs, username, ... }: {
virtualisation = {
libvirtd.enable = true;
};
users.users.${username}.extraGroups = [ "libvirtd" ];
environment.systemPackages = with pkgs; [
virt-manager
];
}

View File

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