feat(util): Added option to easily add new programs/modules using just
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
This commit is contained in:
2026-01-13 11:35:11 +05:30
parent 165dff7faa
commit fd2ea0ba07
24 changed files with 69 additions and 49 deletions

View File

@@ -10,7 +10,7 @@
./programs
./containers
./apps
# ./vms
./vms
];
security.tpm2 = {

View File

@@ -1,17 +1,21 @@
{
{pkgs, ...}: {
virtualisation = {
libvirtd = {
# libvirtd = {
# enable = true;
# qemu = {
# runAsRoot = true;
# swtpm.enable = true;
# # ovmf = {
# # enable = true;
# # };
# };
# };
waydroid = {
enable = true;
qemu = {
runAsRoot = true;
swtpm.enable = true;
# ovmf = {
# enable = true;
# };
};
package = pkgs.waydroid-nftables;
};
};
imports = [
./win11.nix
];
# imports = [
# ./win11.nix
# ];
}