Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(virtualisation): Added waydroid chore(structure): moved all individual home.packages into their own files
22 lines
372 B
Nix
22 lines
372 B
Nix
{pkgs, ...}: {
|
|
virtualisation = {
|
|
# libvirtd = {
|
|
# enable = true;
|
|
# qemu = {
|
|
# runAsRoot = true;
|
|
# swtpm.enable = true;
|
|
# # ovmf = {
|
|
# # enable = true;
|
|
# # };
|
|
# };
|
|
# };
|
|
waydroid = {
|
|
enable = true;
|
|
package = pkgs.waydroid-nftables;
|
|
};
|
|
};
|
|
# imports = [
|
|
# ./win11.nix
|
|
# ];
|
|
}
|