fix(deploy): resolve colmena issues

This commit is contained in:
2026-04-06 16:29:22 +02:00
parent cb4709b1a6
commit 483b05fc27

View File

@@ -22,7 +22,8 @@ let
hostname: mkNode hostname (utils.hostMeta ../hosts/${hostname}).deployment.tags hostname: mkNode hostname (utils.hostMeta ../hosts/${hostname}).deployment.tags
); );
in in
inputs.colmena.lib.makeHive { inputs.colmena.lib.makeHive (
{
meta = { meta = {
nixpkgs = import inputs.nixpkgs { nixpkgs = import inputs.nixpkgs {
localSystem = "x86_64-linux"; localSystem = "x86_64-linux";
@@ -31,6 +32,6 @@ inputs.colmena.lib.makeHive {
nodeNixpkgs = builtins.mapAttrs (_: v: v.pkgs) self.nixosConfigurations; nodeNixpkgs = builtins.mapAttrs (_: v: v.pkgs) self.nixosConfigurations;
nodeSpecialArgs = builtins.mapAttrs (_: v: v._module.specialArgs or { }) self.nixosConfigurations; nodeSpecialArgs = builtins.mapAttrs (_: v: v._module.specialArgs or { }) self.nixosConfigurations;
}; };
}
inherit nodes; // nodes
} )