fix: disable lxc-container module on vm variant
All checks were successful
/ check (push) Successful in 1m35s
/ deploy (push) Has been skipped

This commit is contained in:
Jermeiah S 2025-07-01 17:43:34 -04:00
parent 55220177d2
commit c4dadd9f25
No known key found for this signature in database

View file

@ -2,10 +2,14 @@
lib,
config,
pkgs,
modulesPath,
...
}:
{
virtualisation.vmVariant = {
disabledModules = [
"${modulesPath}/virtualisation/lxc-container.nix"
];
users.users.root.password = "pass";
};
}