add microvms, and try to set up basics

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-06-22 10:57:23 -04:00
parent be327b6c90
commit f9d31cba65
6 changed files with 98 additions and 1 deletions

View File

@ -9,11 +9,13 @@
./attic.nix
./docker.nix
./hydra.nix
./microvms.nix
./minio.nix
./networking.nix
./nextcloud.nix
./services.nix
./zfs.nix
./networking.nix
];
programs.git.lfs.enable = false;

View File

@ -4,5 +4,8 @@
"alice"
"richie"
];
modules = [ inputs.attic.nixosModules.atticd ];
modules = [
inputs.attic.nixosModules.atticd
inputs.microvm.nixosModules.host
];
}

View File

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
rad-dev.microvm-host.enable = true;
}