From 483b05fc27db2b0e93e60eabc672f820b3c20f48 Mon Sep 17 00:00:00 2001 From: hektor Date: Mon, 6 Apr 2026 16:29:22 +0200 Subject: [PATCH] fix(deploy): resolve colmena issues --- deploy/colmena.nix | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/deploy/colmena.nix b/deploy/colmena.nix index 81b3aa0e..0e04298b 100644 --- a/deploy/colmena.nix +++ b/deploy/colmena.nix @@ -22,15 +22,16 @@ let hostname: mkNode hostname (utils.hostMeta ../hosts/${hostname}).deployment.tags ); in -inputs.colmena.lib.makeHive { - meta = { - nixpkgs = import inputs.nixpkgs { - localSystem = "x86_64-linux"; +inputs.colmena.lib.makeHive ( + { + meta = { + nixpkgs = import inputs.nixpkgs { + localSystem = "x86_64-linux"; + }; + + nodeNixpkgs = builtins.mapAttrs (_: v: v.pkgs) self.nixosConfigurations; + nodeSpecialArgs = builtins.mapAttrs (_: v: v._module.specialArgs or { }) self.nixosConfigurations; }; - - nodeNixpkgs = builtins.mapAttrs (_: v: v.pkgs) self.nixosConfigurations; - nodeSpecialArgs = builtins.mapAttrs (_: v: v._module.specialArgs or { }) self.nixosConfigurations; - }; - - inherit nodes; -} + } + // nodes +)