<gchristensen>
zimbatm: it looks like you mistakenly pushed a cherry-pick directly to the nixos-* channel branch, instead of the release branch
<gchristensen>
we probably need to re-cherry pick that to the release branch and then force-push to nixos-20.09
<gchristensen>
we can't trivially prevent this, though we could possibly have the channel updater script add a status to the commit, and require that status commit on pushes for that branch
<infinisil>
Wait shouldn't the nixos-* branches be protected?
<infinisil>
Hm though I'm not sure what they are protected against, maybe just force pushes
<gchristensen>
they are, but if you allow anyone to push, admins can push
<infinisil>
Ahh
<gchristensen>
(and the channel update account can push)
<gchristensen>
gotta run -- hopefully someone can decide the right thing to do and do it :)
NinjaTrappeur has quit [Quit: WeeChat 2.9]
NinjaTrappeur has joined #nixos-dev
<jtojnar>
ryantm: yeah, I re-added it few days ago, perhaps the bot just was not deployed since?
<{^_^}>
rfcs#72 (by mboes, 10 weeks ago, open): [RFC 0072] Switch to CommonMark for documentation
shlevy has quit [Ping timeout: 240 seconds]
<rajivr>
When using nix flakes how can I can convert something like `imports = [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> ];` into a "pure" form?
<arianvp>
rajivr: nixos modules system passes modulesPath as an argument
<ajs124>
rajivr: shouldn't this not be called when home.stateVersion is 20.09 or higher? if so, just set the state version to that.
<ajs124>
what could go wrong?
<rajivr>
ajs124 Oh. I am on 20.03 for my nixpkgs. `flake.nix` was only available on `home-manager` master, so I decided to switch to that only for `home-manager`. That is how I ended up with the error.
<niksnut>
gchristensen: hm never heard of it
<aminechikhaoui>
niksnut do you know off hand what would be the major differences between aws s3 cp of a nar file and what the nix s3 client does ? I assume multi-part download won't happen from awscli unless the Etag shows muti parts ?
<aminechikhaoui>
I got a colleague having really slow nix copies using nix-store -r but trying the aws s3 cp of the same nar file is pretty quick
<aminechikhaoui>
so that was a bit odd
<niksnut>
I don't know of any differences
<niksnut>
other than that we're using the c++ library
<aminechikhaoui>
niksnut I thought maybe there was connection timeouts which I've seen with some people before but this one I haven't seen any warnings like that so quite mysterious
<zimbatm>
gchristensen: oh no, sorry
<gchristensen>
no worries :) it is an easy mistake to make
<zimbatm>
is it blocking the channel publication?
<gchristensen>
yeah, channels can't move forward because nixos-20.09 can't fast-forward to release-20.09
<gchristensen>
so I think we need to force-push nixos-20.09
<zimbatm>
agreed, let me remove my cherry-pick
<zimbatm>
I need to disable the branch protection temporarily
<zimbatm>
ok the cherry-pick has been removed. I also updated the branch protection so it also applies to admins.
<gchristensen>
oh you can do that?
<gchristensen>
nice
<gchristensen>
zimbatm??
<gchristensen>
zimbatm++ (whoops, new keyboard layout)
<{^_^}>
zimbatm's karma got increased to 18
<zimbatm>
you scared me :)
noonien has quit [Quit: Connection closed for inactivity]
<Profpatsch>
gchristensen: the ofborg darwin checks haven’t been working for me for 2–3 months. I’m guessing a known problem? Do we want to remove them?
orivej has quit [Ping timeout: 258 seconds]
<Profpatsch>
They are just forever queued
<gchristensen>
no macs :(
<Profpatsch>
Just for ofborg or also none for hydra?
<Profpatsch>
We do have a few macbooks flying around here in the office
<Profpatsch>
(That nobody uses)
Cale has quit [Ping timeout: 272 seconds]
<LnL>
yeah, mine died and it had been the only one for a while
<ryantm>
Jan Tojnar: thanks, I didn't notice. I've deployed it now.
Cale has joined #nixos-dev
justanotheruser has joined #nixos-dev
<worldofpeace>
spacekookie: niksnut Mic92 I hope you all saw my email
<Mic92>
worldofpeace: yes. we will call out for new rfc steering comittee leader
<Mic92>
It was due in November anyway
<worldofpeace>
oh okay, I didn't know it was due for November 😸
cole-h has joined #nixos-dev
urkk has quit [Ping timeout: 260 seconds]
adisbladis has left #nixos-dev ["ERC (IRC client for Emacs 28.0.50)"]
rajivr has quit [Quit: Connection closed for inactivity]
ris has joined #nixos-dev
__Sander__ has joined #nixos-dev
bennofs has joined #nixos-dev
orivej has joined #nixos-dev
bennofs_ has quit [Ping timeout: 240 seconds]
tokudan has quit [Remote host closed the connection]
<infinisil>
Want to pretty-print all of nixpkgs? Well with this you can: `lib.generators.toPretty { nextState = builtins.trace; recursionLimit = 3; } pkgs`
<gchristensen>
oh no
<infinisil>
Want it to be limited to the first 1000 lines only? lib.generators.toPretty { nextState = line: count: if count > 0 then builtins.trace line (count - 1) else { return = null; }; initialState = 1000; recursionLimit = 3; } pkgs
<infinisil>
The possibilities are endless
<infinisil>
Only printing lines that contain "hello": nextState = line: state: if lib.hasInfix "hello" line then builtins.trace line state else state