worldofpeace changed the topic of #nixos-dev to: NixOS Development (#nixos for questions) | NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 | https://hydra.nixos.org/jobset/nixos/trunk-combined https://channels.nix.gsc.io/graph.html | https://r13y.com | 20.09 RMs: worldofpeace, jonringer | https://logs.nix.samueldr.com/nixos-dev
rj has joined #nixos-dev
orivej_ has quit [Ping timeout: 268 seconds]
jonringer has quit [Remote host closed the connection]
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
rajivr has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
kini has quit [Remote host closed the connection]
kini has joined #nixos-dev
scott has quit [Quit: Ping timeout (120 seconds)]
scott has joined #nixos-dev
janneke has quit [Quit: janneke quits Mes'sing]
janneke has joined #nixos-dev
plumm has quit [Ping timeout: 265 seconds]
plumm has joined #nixos-dev
orivej has joined #nixos-dev
cole-h has quit [Ping timeout: 240 seconds]
<elvishjerricco> What could be adding SYSTEMD_READY=0 to a device in stage 2? I'm trying to work out why a luks device opened in my custom initrd gets SYSTEMD_READY=0 in stage 2. Looking in a shell in stage 1, udevadm info does not show any SYSTEMD_READY=0, so I figure it has to be a stage 2 thing.
tomberek has quit [Quit: Connection closed]
cjb has quit [Quit: end of day]
<domenkozar[m]> I'm playing around with a backport action that would allow us to open a backport PR for a PR targeting master. We would need to change label "needs: backport to stable" to something that includes the name of the branch like "needs: backport to release-20.09".
<MichaelRaskin> domenkozar[m]++
<{^_^}> domenkozar[m]'s karma got increased to 41.99999999999998
<domenkozar[m]> I wonder if there would be any issues with the rename?
orivej has quit [Ping timeout: 240 seconds]
<LinuxHackerman> domenkozar: Would we? I think it would be cool if it could open PRs for all "stable" branches, e.g. both 20.09 and 21.05 for a month after the 21.05 release
orivej has joined #nixos-dev
<domenkozar[m]> In that case you'd apply two labels, one for each branch.
<domenkozar[m]> I wouldn't want it to be more automatic than that
<LinuxHackerman> fair enough
<sterni> I'm not sure if labels are the right interface given that the labeling action has the habit of removing human-set labels everytime it runs
<qyliss> sterni: only ones it knows about
kraem[m] has quit [Quit: Idle for 30+ days]
<sterni> at least something, that's good
<qyliss> I'd vote for automatically PRing to every current stable branch, because I think, especially as a non-stable-user, it's difficult to keep in my head whuch branches are currently supported
<qyliss> but there's no reason we have to have that right out of the gate either way
<qyliss> I haven't checked, but I bet the still currently supported but soon to be EOL branches miss out on backports
<domenkozar[m]> right, part of the problem is that requires a lot more work to get working with the current backporting actions vs. just plugging the current ones in
<qyliss> let's try out manually-targeted backports first and go from there then :)
<domenkozar[m]> alright, I'm going to write to discourse about the label renaming before I break something.
Synthetica has joined #nixos-dev
<MichaelRaskin> qyliss: and then auto-targeting could be done by pure label mangling for better concern separation, I guess? Or do actions not stack like that?
<qyliss> i don't know anything about them
__monty__ has joined #nixos-dev
<pie_> ok so it looks like the unstable manual switched to multi-page https://nixos.org/manual/nix/unstable/ is there any way to still get a single page manual?
urkk has left #nixos-dev [#nixos-dev]
<gchristensen> I don't think so, the docs were ported from xml to markdown
plumm has quit [Quit: Textual IRC Client: www.textualapp.com]
plumm has joined #nixos-dev
<pie_> :((((((
<gchristensen> :))))) whats' up?
<lukegb> pie_: if you click the printer icon in the top right
<lukegb> you get the single-page version
<ekleog> oh I'm late
<pie_> 0_0
<pie_> "that makes no sense"
<pie_> sounds like a ux bug to me :P
* pie_ wonders if there is an issue yet
<ekleog> well feel free to report it upstream :p
<pie_> which upstream here though
<pie_> and where
<gchristensen> what is th ebug report?
<ekleog> oh fun actually I had opened an issue for that 😅 https://github.com/rust-lang/mdBook/issues/676
<{^_^}> rust-lang/mdBook#676 (by Ekleog, 3 years ago, open): One-page link without printing pop-up
<ekleog> I think the fact there's a search box plus it's already possible to get access to it for the few people who want it means this issue was classified as very-low-prio and thus not handled yet
<pie_> gchristensen: "it doesnt make sense to click the print button to get a single page version"
<pie_> also im not sure why the single page version has anything to do with printing
<pie_> name the button "view full page and/or print" would make more sense
<ekleog> not sure the value added by patching this is worth maintaining a non-upstream patch just for our own manual
<lukegb> I wouldn't mind us patching out the print on-load handler on the print page
<ekleog> imo a proper patch that adds a second button that doesn't have the print dialog would probably be accepted upstream, though I'm not sure how hard that'd be
<pie_> ekleog: it doesnt look that hard but im still a bit averse to working on PRs
<pie_> no good reason i just havent gotten around to practicing
<pie_> everything that needs to be patched superifcially seems to be in that file
<pie_> also that branch looks weird, if mathjax is enabled it wont print?
<ekleog> iiuc if mathjax is enabled it'll trigger the print dialog only after mathjax has finished rendering
<pie_> im not familiar with jinja or whareer this is
<pie_> ekleog: yeah but how, thats in the else branch
<ekleog> it's also in the if branch afaict
<pie_> s/yeah/ok sure/
<ekleog> there's just a `MathJax.Hub.Register.StartupHook('End', function() {` in-between
<ekleog> (this is the handlebars templating language I think, though I haven't touched it yet either)
<pie_> maybe i cant read but it looks to me like mathjax is in the true branch and print is in the false branch
<ekleog> ooh no there are two nested ifs i think
<ekleog> like the whole block is if is_print (ie. if it's being rendered to print.html I think)
<pie_> yeah
<ekleog> and then inside this whole block there's semantically: if mathjax { afterLoad(afterMathJax(print)) } else { afterLoad(print) }
<pie_> ok yeah i cant read
<pie_> didnt notice the inner print
<ekleog> ooh that happens ^^'
<pie_> what i dont get is print and full page should be orthogonal
<pie_> *single page
<pie_> why does the print button give you single page
<pie_> the print button should just give you the print dialog - which is pointless? and a single page vie wbutton should give the single page view
<lukegb> your browser already has a print button :p
jonringer has joined #nixos-dev
jonringer has quit [Remote host closed the connection]
jonringer has joined #nixos-dev
<pie_> lukegb: hence "which is pointless?"
<pie_> but maybe touch screen people or something
cole-h has joined #nixos-dev
pmy has quit [Ping timeout: 240 seconds]
pmy has joined #nixos-dev
rj has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
* lukegb leaves "please refer to §15.20.1.2.3 of the nixpkgs manual" as a PR comment, mostly as a joke
<gchristensen> jeeze
<lukegb> nixpkgs manual: more subsections than the Uniform Commercial Code
<gchristensen> lol
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
rj has quit [Client Quit]
rj has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
tomberek has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
<das_j> Oof what happened here: https://nixos.org/blog/index.html
<das_j> The posts are all over the place
<das_j> ahhh they are numbered by year
<das_j> that's… weird
<gchristensen> that is weird
<supersandro2000> yeah thats weird
<lukegb> cc garbas[m]
<Ericson2314> qyliss: seeing my response on the netbsd pr?
<Ericson2314> the follow up one that does the bootstrapping things is the one I'm actually exited about
<Ericson2314> rpc issue ended up --- surprise! --- being me making too many changes at once, missing the obvious :)
emily has quit [Ping timeout: 245 seconds]
rj has quit [Ping timeout: 240 seconds]
ma27[m] has quit [Ping timeout: 260 seconds]
regnat[m] has quit [Ping timeout: 245 seconds]
maralorn has quit [Ping timeout: 245 seconds]
Dandellion has quit [Ping timeout: 245 seconds]
davidak[m] has quit [Ping timeout: 245 seconds]
<hexa-> >> Our core projects (Grafana, Grafana Loki, and Grafana Tempo) are moving to AGPL.
<lukegb> Yeah... :(
<hexa-> Yeah! :)
emily has joined #nixos-dev
ma27[m] has joined #nixos-dev
rj has joined #nixos-dev
<lukegb> They claim that plugins are still going to be ASL licensed; I don't see how that's possible without something like the GCC Runtime Library exception
<lukegb> I guess "plugins and the GPL" is a whole thing, and the Linux kernel has an even more convoluted approach so... whatever, I don't care actually
<eyJhb> Sad
<gchristensen> -> chat?
<eyJhb> Stops some of the bigger companies from using it
Dandellion has joined #nixos-dev
regnat[m] has joined #nixos-dev
davidak[m] has joined #nixos-dev
maralorn has joined #nixos-dev
<hexa-> i don't give a damn about bigger companies
<hexa-> you're getting this for free
<hexa-> deal with it
<gchristensen> (-> chat :))
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
<gchristensen> is this a cool warning? trace: Warning: mixing python2.7-flake8-3.8.4's python /nix/store/pp0fp5zds7wqhyx6zqnnxl2aqzf4a51r-python-2.7.18 when building hi-bogus which uses /nix/store/d44wd6n98f93hjr6q1d1phhh1hw7a17d-python3-3.8.8
<samueldr> gchristensen: seems to be lacking commas and/or "and"
<gchristensen> conceptually*
<samueldr> I think so
<samueldr> maybe it lacks guidance
<samueldr> like, sure, it's getting mixed... now what?
<gchristensen> yeah
<gchristensen> "well ... uh ... fix it"
<gchristensen> I can't spell propagated first try ever
tomberek has quit [Quit: Connection closed]
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
<colemickens> if only we had Jim Carey spelling it in a movie (this is how I learned to spell "b-e-a-uuuutiful")
pmy has quit [Read error: Connection reset by peer]
pmy has joined #nixos-dev
<gchristensen> it was in the original script but the line lacked the punch
tomberek has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
catern has joined #nixos-dev
pmy has quit [Read error: Connection reset by peer]
pmy has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
rj has quit [Remote host closed the connection]
rj has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
__monty__ has quit [Quit: leaving]
rj has joined #nixos-dev
lassulus has quit [Ping timeout: 245 seconds]
lassulus has joined #nixos-dev
rj has quit [Ping timeout: 240 seconds]
rj has joined #nixos-dev
abathur has quit [Quit: abathur]
supersandro2000 has quit [Remote host closed the connection]
supersandro2000 has joined #nixos-dev
sdier has quit []
rj has quit [Ping timeout: 240 seconds]
supersandro2000 is now known as Guest17333
supersandro2000 has joined #nixos-dev
Guest17333 has quit [Ping timeout: 260 seconds]
Synthetica has quit [Quit: Connection closed for inactivity]