| 12 Mar 2026 |
flippette | there's another machine that also uses this config, but only for home-manager, and it's not running NixOS either | 13:48:34 |
raitobezarius | you can write mkIf (config.networking.hostName == "x") { ... } non ? | 14:50:42 |
raitobezarius | * you can write mkIf (config.networking.hostName == "x") { ... } no ? | 14:50:44 |
flippette | oh true, thank you! | 16:17:13 |
flippette | for reference, this is what i'm doing now
buildMachines = let
machine = host:
lib.mkIf
(config.networking.hostName or null != host);
in [
(machine "onion" {
hostName = "otto.flippo.cc?port=2200";
protocol = "ssh-ng";
systems = ["x86_64-linux"];
sshUser = "nixremote";
sshKey = "/etc/ssh/ssh_host_ed25519_key";
maxJobs = 32;
speedFactor = 10;
})
];
| 16:23:52 |
raitobezarius | np | 16:23:51 |
| astoria 🏳️⚧️ joined the room. | 17:16:47 |
| 14 Mar 2026 |
| webtier joined the room. | 13:31:49 |
webtier | WHAAAAAAAAATTTTTSSSSSSUUUUUUUPPPPPPP LIXXXXXXXOOOOOOOOOSSSSSSSSSS | 13:32:10 |
zoë (she/her) | In reply to @webtier:unredacted.org WHAAAAAAAAATTTTTSSSSSSUUUUUUUPPPPPPP LIXXXXXXXOOOOOOOOOSSSSSSSSSS mostly my lix+nixos-running server, for the last 154 days, when i first started learning/using nix :p | 13:35:10 |
webtier | Sounds great! | 13:36:28 |
webtier | What's up with #running-main:lix.systems ? I'm using flakes and want to migrate and saw this room in the docs | 13:40:24 |
webtier | Oh wait, now it works, well, Fractal is weird! | 13:41:35 |
K900 | It's for people running Lix from main | 13:41:36 |
sterni | Did I run into a GC timing with these builds or what?
https://buildkite.com/afnix/lix/builds/869
https://buildkite.com/afnix/lix/builds/870
https://buildkite.com/afnix/lix/builds/871 | 13:50:01 |
sterni | I can't reproduce any of these failures in case, so would be helpful if someone could try bonking these pipeline runs | 13:52:29 |
raitobezarius | yes, it's my fault | 14:53:14 |
raitobezarius | kicked again | 14:53:36 |
sterni | seems to persist, maybe is the sqlite db corrupted on the builder? | 14:56:34 |
sterni | ah nvm looked at the wrong thing | 14:56:54 |
sterni | * seems to persist, maybe is the sqlite db corrupted on the builder? | 14:57:10 |
raitobezarius | build03 has this persistent issue, but I already nuked the store and this was not sufficient | 15:02:21 |
raitobezarius | I took out the builder | 15:02:28 |
sterni | sounds ominous | 15:02:49 |
raitobezarius | I think it's stupid | 15:03:03 |
antifuchs | hm, is there a recommended thing for updating stuff like go module hashes, or is nix-prefetch with --eval the best we got? I am trying to use that in CI but it depends on so much ambient stuff to work that I'm not sure how to set up for it. | 17:32:57 |
antifuchs | (needs a nixpkgs channel that it passes to the eval closure, then something is required for fetchgit to be capable of fetching git inputs, and by now I'm ready to throw up my hands and be very unhappy at it) | 17:34:01 |
| Orion joined the room. | 17:44:06 |
emily | nix-update? | 21:48:28 |
| 15 Mar 2026 |
antifuchs | hmmmm, kinda? but that doesn't seem to play too well with npins (which is what my custom packages' sources all use)... | 00:40:09 |