This commit is contained in:
gwg313 2024-04-24 23:44:30 -04:00
parent c59da0e4ba
commit 0a45d838ff
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
10 changed files with 246 additions and 52 deletions

View file

@ -0,0 +1,13 @@
{
config,
pkgs,
user,
lib,
...
}: {
imports = [./libvirt.nix ./podman.nix ./kubernetes.nix];
libvirt.enable = lib.mkDefault true;
podman.enable = lib.mkDefault true;
kubernetes.enable = lib.mkDefault true;
}