Files
dotfiles/nixos/ryu/vms/default.nix
servius fd2ea0ba07
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(util): Added option to easily add new programs/modules using just
feat(virtualisation): Added waydroid
chore(structure): moved all individual home.packages into their own files
2026-01-13 11:35:11 +05:30

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
# ];
}