Merge pull request #301564 from adamcstephens/lxc/6

lxc: 5.0.3 -> 6.0.0
This commit is contained in:
Adam C. Stephens 2024-04-26 16:26:14 -04:00 committed by GitHub
commit 2a899c07e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 111 additions and 175 deletions

View file

@ -112,7 +112,12 @@ in
package = lib.mkPackageOption pkgs "incus-lts" { };
lxcPackage = lib.mkPackageOption pkgs "lxc" { };
lxcPackage = lib.mkOption {
type = lib.types.package;
default = config.virtualisation.lxc.package;
defaultText = lib.literalExpression "config.virtualisation.lxc.package";
description = "The lxc package to use.";
};
clientPackage = lib.mkOption {
type = lib.types.package;