| 3 Sep 2022 |
David Arnold (blaggacao) | In reply to @yuka:yuka.dev Can any of the evaluators take advantage of the eval cache? The only thing on the horizon to make tooling CLI tooling better that itself depends on some sort of Eval output that I know of is numtide/nix-eval-cache. That's not really satisfying, thought. i'd support a builtin.evalCache key thing if that was proposed. | 02:38:43 |
| @lara:uwu.is joined the room. | 11:35:33 |
| @ronnypfannschmidt:matrix.org left the room. | 12:06:11 |
| 4 Sep 2022 |
@yuka:yuka.dev | mini post advertising colmena and the --evaluator streaming option ;) | 10:42:02 |
@yuka:yuka.dev | https://fedi.yuka.dev/notice/ANDaPgyBU74xfpDd8C | 10:42:03 |
@yuka:yuka.dev | Redacted or Malformed Event | 13:17:37 |
| 5 Sep 2022 |
aanderse | i can't point colmena to a flake online yet, can i? like colmena apply --config github:aanderse/my-colmena-network/main | 19:28:10 |
aanderse | or maybe i just want to build that into my flake as an app... 🤔 | 19:28:52 |
Zhaofeng Li | In reply to @aanderse:nixos.dev i can't point colmena to a flake online yet, can i? like colmena apply --config github:aanderse/my-colmena-network/main I think you can, tried it and got a 404 error so it did try to fetch | 19:36:41 |
Zhaofeng Li | It should work with any valid Flake URI | 19:36:51 |
aanderse | oh stupid me i had a typo... it did work!
thanks ❤️ | 19:38:37 |
aanderse | super cool i can't get enough colmena! 🚀 | 19:39:25 |
| 6 Sep 2022 |
dantefromhell | is there a good way to setup a "multi hive" colmena?
multi hive meaning multiple enviroments that are logically separate (e.g. customers) but that share common blueprints? | 12:58:51 |
@yuka:yuka.dev | Separate them by deployment tags? | 13:02:02 |
@v:meowy.tech | yeah that's what I'm doing | 13:02:28 |
| 7 Sep 2022 |
| @mlyx:matrix.org left the room. | 23:30:27 |
| 8 Sep 2022 |
Wanja Hentze | hey, is there a way to evaluate a colmena node or hive from plain nix? (i.e. without calling the CLI) | 08:14:58 |
@yuka:yuka.dev | In reply to @yuka:yuka.dev
nixosConfigurations = (import (inputs.colmena + "/src/nix/hive/eval.nix") {
rawFlake = self;
colmenaOptions = import (inputs.colmena + "/src/nix/hive/options.nix");
colmenaModules = import (inputs.colmena + "/src/nix/hive/modules.nix");
}).nodes;
Wanja Hentze: | 09:08:58 |