worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
proofofkeags has quit [Ping timeout: 256 seconds]
orivej has quit [Ping timeout: 246 seconds]
shibboleth has quit [Quit: shibboleth]
orivej has joined #nixos
doublex has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
orivej has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
codygman has quit [Ping timeout: 265 seconds]
codygman has joined #nixos
<ogkloo> so I think this pi might be dead, but not in the way I thought... it doesn't seem to connect to my network over any interface I hand it, including ethernet.
<{^_^}> [nixpkgs] @romildo opened pull request #94495 → liquidprompt: unstable-2018-05-21 -> 1.12.0 → https://git.io/JJV2r
<ogkloo> (after switching it over to raspbian)
<clever> ogkloo: does the hdmi at least show something?
<ogkloo> Yes! That part works
<clever> ogkloo: got a usb keyboard to login with?
<ogkloo> yep
<clever> lsusb? `ip link` ?
<ogkloo> booting it. Moved it around to try to get it onto ethernet.
<ogkloo> well it *was* displaying over hdmi. Maybe it's just being slow to boot
<{^_^}> [nixpkgs] @jonringer opened pull request #94496 → ledger: 3.1.3 -> 3.2.1 → https://git.io/JJVaE
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JJVag
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/4701e112165 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @worldofpeace merged pull request #94398 → elementary-planner: 2.4.5 -> 2.4.6 → https://git.io/JJa1X
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJVaa
<ogkloo> ip link just shows lo and eth0, lsusb shows root hub, usb to ethernet, ethernet, and then usb mouse and keyboard.
<clever> ogkloo: does eth0 have ip ip? is it up or down? does `tcpdump -i eth0 -n` show packets going in both directions? does `ifconfig` show non-zero counters for both directions?
proofofkeags has joined #nixos
bbennett371 has joined #nixos
<ogkloo> brb running a giant ethernet cable across my house to try this
c0c0 has quit [Ping timeout: 256 seconds]
Neo--- has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #93621 → atom: Fix #92487 → https://git.io/JJWDJ
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJVao
proofofkeags has quit [Ping timeout: 246 seconds]
christianbundy has joined #nixos
<christianbundy> how does nix compare to guix when it comes to bootstrapping from source (reduced binaries)?
bbennett371 has quit [Ping timeout: 272 seconds]
bbennett371 has joined #nixos
<clever> christianbundy: everything starts with a naked static busybox binary, and a tar containing gcc+libc and some very basic utils (cp and stuff)
<clever> christianbundy: this nix expr will return a 32bit busybox, but a tar containing the 64bit->64bit gcc
<christianbundy> clever: thanks! are there any efforts to reduce the number / size of binaries?
<ogkloo> ... i'm dumb. Apparently ethernet connected devices don't show up in my router's config.
<ogkloo> Explains a lot. Time to get aarch64 working. tyty clever
<clever> christianbundy: lines 142-180 then create a dummy pkgs tree, with libc, gcc, binutils, coreutils, and gnugrep mocked out, to use the bootstrap-tools
<clever> christianbundy: then when the code in lines 183-214 builds any attribute (other then binutils/libc/perl), it will use those mocked versions, while building the real gcc/coreutils and so on
<clever> christianbundy: each phase mocks out fewer ones, until everything has been rebuilt from source, as defined in nixpkgs
<clever> christianbundy: and nix will reuse anything that hasnt been changed
bbennett371 has quit [Ping timeout: 246 seconds]
orivej has quit [Ping timeout: 240 seconds]
<clever> christianbundy: this expr is then used to create a new bootstrap-tools tar, to re-make the seed for future versions
<{^_^}> [nixpkgs] @worldofpeace pushed to release-20.03 « atom: Fix #92487 »: https://git.io/JJVap
<clever> [root@amd-nixos:~]# nix-build '<nixpkgs/pkgs/stdenv/linux/make-bootstrap-tools.nix>' -o bootstrap
<clever> christianbundy: this will then build the bootstrap tar locally, so you can see what it contains
<clever> ack, its a set, need the right -A flag
<christianbundy> clever: thanks for adding all that context
<christianbundy> it looks like there are ~2167 binaries in that tarball, are there any efforts to reduce that number?
<clever> that sounds kind of high...
<clever> christianbundy: i see 28 binaries and 91 symlinks to play with argv[0]
<christianbundy> oops, I just looked at the total number of files
<christianbundy> I thought that was *only* the binary seed
<clever> [root@amd-nixos:~]# nix-build '<nixpkgs/pkgs/stdenv/linux/make-bootstrap-tools.nix>' -o bootstrap -A build
<clever> bootstrap/pack is the contents of the tar, bootstrap/on-server is the tar+busybox
<clever> there is also a shell script...
<christianbundy> clever: have you seen the work guix has been doing on bootstrapping? it feels like maybe we have different context
<clever> ive heard a bit about it
<christianbundy> cool, I suppose I'm curious whether nix is aimed toward anything similar
<clever> ive not been involved with changes to the bootstrap, i just read the nix code when i got curious
<clever> this shell script gets ran by busybox, and its job is to redo the patchelf on the bootstrap-tools
<clever> because all of the bootstrap-tools are expecting libraries in a certain dir, and wont function when you unpack them to the wrong place
<christianbundy> I'm with you, I'm just wondering if there's any active work toward changing that
<clever> lines 9-18 find the runtime linker
<{^_^}> [nixpkgs] @worldofpeace merged pull request #94479 → xfce.xfce4-whiskermenu-plugin: 2.4.4 -> 2.4.6 → https://git.io/JJVRU
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJVVT
<clever> line 22 will use the runtime linker as an interpreter, to run an unpactched cp, to copy patchelf
<clever> and 28 will then use the unpatched patchelf to patchelf patchelf!
<clever> (and all other binaries)
<{^_^}> [nixpkgs] @worldofpeace merged pull request #94477 → xfce.xfce4-timer-plugin: 1.7.0 -> 1.7.1 → https://git.io/JJVBE
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJVVk
<christianbundy> right, I'm less asking about the exact specifics on the current bootstrap and more asking about whether bootstrapping from a smaller binary seed is something that nix developers are working on
<christianbundy> like, is anyone working on removing gcc from the binary seed?
<clever> i think for that, you would want to look at the git history, and ask the people who are working on this part of the code, i see matthewbauer and gchristensen have made changes to it recently
<christianbundy> or is that outside the interest / scope of the nix project?
<christianbundy> cool, I'll try to catch them on irc sometime!
<clever> christianbundy: it is of interest to me, i saw a blog once, where a crazy guy bootstraped from a text editor, not even a hex editor
<clever> he picked opcodes that could be represented with ascii, to write a hex editor
<christianbundy> that's absolutely wild
<clever> and then used that to make an assembler that lacked symbol support
<christianbundy> any chance you have a link?
<clever> then used that to make an assembler with symbol and back-reference support
<clever> the blog has since vanished from the internet
<christianbundy> dang
<christianbundy> I wanted to try to add it to http://bootstrappable.org/
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94497 → faudio: 20.07 -> 20.08 → https://git.io/JJVVq
<clever> let me check my bookmarks...
<clever> maybe archive.org has it...
<metasyntactic> where are core dumps stored in nixos?
<clever> metasyntactic: coredumpctl
<christianbundy> kinda crazy that scala/kotlin/ghc aren't bootstrappable from source
<{^_^}> [nixpkgs] @jonringer merged pull request #94489 → python3Packages.pyipp: init at 0.10.1 → https://git.io/JJVuW
<{^_^}> [nixpkgs] @jonringer pushed 3 commits to master: https://git.io/JJVV1
<clever> christianbundy: heh, now that i look closer, i have a 2017 archive.org in my bookmarks
<clever> christianbundy: https://bootstrapping.miraheze.org/wiki/Main_Page is also in the same folder
<clever> christianbundy: it even has a bcompiler github link!
<clever> christianbundy: the biggest problem i can see with such a thing, is making it capable enough that it can compile a "real" compiler
o1lo01ol1o has joined #nixos
<christianbundy> clever: yeah, I think guix writes a barebones compiler in Scheme that compiles TCC, and *that* compiles gzip/make/etc until you have enough utilities to build gcc
maier has joined #nixos
<clever> christianbundy: bcompiler ultimately ends at a weird c-like language: https://github.com/certik/bcompiler/blob/master/bcc.bc
<clever> christianbundy: but i cant see why nixpkgs cant just "steal" the entire guix bootstrap process, and just translate it into a nix expr
tmaekawa has joined #nixos
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<christianbundy> clever: I'm sure they can, I guess I'm just wondering if that's a thing that people would do
<clever> let me see if i can wrap bcompiler in nix, just for fun!
<christianbundy> I've spent the past ~week trying to turn arch into gentoo and I'm realizing that I should probably pay more attention to the culture of the distro before trying my weird experiments
proofofkeags has joined #nixos
philr has joined #nixos
<christianbundy> because with arch, you have direct circular deps (e.g. vala makedepends on vala) and I'd prefer to have a few binary bootstraps rather than having cycles in my dependency graph
maier has quit [Ping timeout: 264 seconds]
proofofkeags has quit [Ping timeout: 256 seconds]
<clever> cp: applet not found
<clever> ok, this could be fun!
<clever> seems i only have ash, mkdir, tar, unxz, and zxcat
<clever> christianbundy: guessing i need a custom busybox with cp added in?
<clever> i'll just use pkgs.busybox initially
h0m1 has quit [Ping timeout: 244 seconds]
orivej has joined #nixos
h0m1 has joined #nixos
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
markus1189 has quit [Ping timeout: 256 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2df0fda951e (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
<clever> christianbundy: you can now just `nix-build -A bcc` and it will run thru every stage in the blog, and spit out a bcc binary
<clever> but it relies on busybox to provide ash, mkdir, chmod, and cat
<{^_^}> [nixpkgs] @kalbasit merged pull request #94470 → bazel-kazel: 0.0.7 -> 0.0.10 → https://git.io/JJVly
<{^_^}> [nixpkgs] @kalbasit pushed commit from @r-ryantm to master « bazel-kazel: 0.0.7 -> 0.0.10 (#94470) »: https://git.io/JJVrU
<{^_^}> [nixpkgs] @mweinelt merged pull request #94457 → postfix: 3.5.4 -> 3.5.6 → https://git.io/JJVG3
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJVrm
<{^_^}> [nixpkgs] @jonringer merged pull request #94487 → python3Packages.async-upnp-client: init at 0.14.14 → https://git.io/JJV0A
<{^_^}> [nixpkgs] @jonringer pushed 3 commits to master: https://git.io/JJVrs
<clever> christianbundy: *doh*, forgot the builder.sh, its in the new master commit
<{^_^}> [nixpkgs] @jonringer merged pull request #94490 → python3Packages.openwebifpy: init at 3.1.1 → https://git.io/JJVu2
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/JJVru
pachumicchu[m] is now known as pacman99
Rusty1 has joined #nixos
incognito9999_ has joined #nixos
incognito9999 has quit [Read error: Connection reset by peer]
CodeSpelunker has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94499 → gortr: 0.14.5 -> 0.14.6 → https://git.io/JJVKf
pacman99 has quit [Quit: authenticating]
pacman991 has joined #nixos
pacman991 is now known as pacman99
pacman99 is now known as Guest61847
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94500 → gotestsum: 0.5.1 -> 0.5.2 → https://git.io/JJV6i
<{^_^}> [nixpkgs] @worldofpeace merged pull request #94472 → xfce.xfwm4: 4.14.2 -> 4.14.4 → https://git.io/JJV4Q
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJV6X
Fare has joined #nixos
user_0x58 has quit [Remote host closed the connection]
Guest61847 has quit [Quit: issued !quit command]
user_0x58 has joined #nixos
enick_320 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94501 → gromit-mpx: 1.3 -> 1.3.1 → https://git.io/JJVip
davidv7 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @samueldr merged pull request #83678 → boot.loader.grub: add theme option → https://git.io/JvQb2
<{^_^}> [nixpkgs] @samueldr pushed 2 commits to master: https://git.io/JJVij
enick_320 is now known as pachumicchu
christianbundy has quit [Ping timeout: 256 seconds]
ogkloo has quit [Quit: WeeChat 1.4]
pachumicchu is now known as enick_320
enick_320 is now known as pachumicchu
CodeSpelunker has quit [Quit: CodeSpelunker]
CodeSpelunker has joined #nixos
<hpfr[m]> Is a 256MB EFI partition sufficient? how much space do boot entries take up?
<hpfr[m]> since you end up with a lot
<clever> hpfr[m]: depends on how many generations you have, and if things like the kernel/initrd differ between each one
stephank2 has joined #nixos
bbennett371 has joined #nixos
<clever> a kernel is 4mb for me, and initrd is 15mb, so lets say 20mb per generation worst case (if you change the kernel on every rebuild)
<clever> 256mb would let you hold ~11 generations
<hpfr[m]> thanks
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
<clever> boot.loader.grub.configurationLimit
<clever> Maximum of configurations in boot menu. GRUB has problems when there are too many entries.
<clever> hpfr[m]: this option can set a cap on how many generations get copied to /boot/
spacefrogg has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94503 → hcxdumptool: 6.0.7 -> 6.1.0 → https://git.io/JJVPz
stephank has quit [Ping timeout: 264 seconds]
stephank2 is now known as stephank
bbennett371 has quit [Ping timeout: 244 seconds]
bbennett371 has joined #nixos
tmaekawa has quit [Remote host closed the connection]
rosenlicht[m] has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94504 → hcxtools: 6.0.3 -> 6.1.0 → https://git.io/JJVPw
<hpfr[m]> it's 2020 I use GNU/systemd/linux, not grub ;)
bbennett371 has quit [Ping timeout: 272 seconds]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @jonringer reopened pull request #94247 → vulkan-headers: 1.2.131.1 -> 1.2.148 → https://git.io/JJ2fj
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/a624ce3e32c (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94505 → helmfile: 0.119.1 -> 0.125.1 → https://git.io/JJVPN
teehemkay has quit [Ping timeout: 244 seconds]
noonien has quit [Ping timeout: 260 seconds]
pjt_tmp has joined #nixos
hoek has quit [Ping timeout: 244 seconds]
noonien has joined #nixos
o1lo01ol1o has quit [Ping timeout: 260 seconds]
ajmcmiddlin_ has joined #nixos
teehemkay has joined #nixos
adamse has joined #nixos
rosenlicht[m] has left #nixos ["User left"]
patrickod_ has joined #nixos
alunduil has joined #nixos
hoek has joined #nixos
<clever> hpfr[m]: systemd-boot has its own option of the same name
<hpfr[m]> nice, thanks clever++
<{^_^}> clever's karma got increased to 489.9999999999998
<hpfr[m]> lmao fp
<hpfr[m]> I'm using the graphical iso now, but starting the display manager via systemd doesn't seem to bind it to a tty
<hpfr[m]> systemctl status says's it's running, but I can't seem to view it
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94506 → honggfuzz: 2.2 -> 2.3.1 → https://git.io/JJVX8
<hpfr[m]> this is why my next architecture will use duodecimal, the superior base-12
<hpfr[m]> isn't it normally on tty7?
<clever> yeah
<clever> what does the journal say?
<{^_^}> [nixpkgs] @jonringer merged pull request #93686 → vimplugins: Update default branch for tslime.vim → https://git.io/JJlMe
<{^_^}> [nixpkgs] @jonringer pushed commit from @pseudomuto to master « Update default branch for tslime.vim »: https://git.io/JJVXu
<hpfr[m]> starting X11, started X11, sddm initializing, sddm starting, sddm logind interface found, then nothing clever
<clever> try ctrl+alt+f7 ?
<clever> or chvt 7?
<ToxicFrog> I've been having the same problem on my nixos-unstable liveUSB; logging in on tty1 as root and running `systemctl restart display-manager` usually fixes it.
jmeredith has joined #nixos
<hpfr[m]> chvt 7 brought me to an empty screen with a flashing underscore, which is better than alt+f7 or ctrl+alt+f7 did. I'll try the restart
<{^_^}> [nixpkgs] @jonringer opened pull request #94507 → vimPlugins: update → https://git.io/JJVXi
<hpfr[m]> frankly the graphical iso should boot directly to graphical lol, this is an accessibility issue
maier has joined #nixos
<hpfr[m]> oh shit I forgot this was kernel 5.4
<hpfr[m]> this is a new laptop with a ryzen 4500u, I probably need 5.7
<hpfr[m]> is there unstable versions of the ISO?
Supersonic112 has joined #nixos
noonien has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @RaghavSood closed pull request #93640 → plex: 1.19.4.2935 -> 1.19.5.3112 → https://git.io/JJlvV
<hpfr[m]> there isn't even a webui for channels.nixos.org? is this fastly's fault?
proofofkeags has joined #nixos
<hpfr[m]> I had to guess https://channels.nixos.org/nixos-unstable, luckily it redirected me
<{^_^}> [nixpkgs] @jonringer merged pull request #94348 → aws-okta: 1.0.2 -> 1.0.4 → https://git.io/JJa3i
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « aws-okta: 1.0.2 -> 1.0.4 »: https://git.io/JJVXd
maier has quit [Ping timeout: 240 seconds]
Supersonic has quit [Ping timeout: 240 seconds]
Supersonic112 is now known as Supersonic
proofofkeags has quit [Ping timeout: 240 seconds]
ogkloo has joined #nixos
<srxl> About how stable (in terms of api changing) are flakes at the moment?
CodeSpelunker has quit [Quit: CodeSpelunker]
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/7dc4385dc7b (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
markus1189 has joined #nixos
<{^_^}> [nixpkgs] @djanatyn opened pull request #94508 → flip: init at v1.40-pre → https://git.io/JJV1r
kraeXen has joined #nixos
<hpfr[m]> ok, the graphical iso is just broken. the unstable version didn't work in the same way as the stable version, while manjaro xfce just werked (tm)
spudly has joined #nixos
<clever> hpfr[m]: if you install from CLI, then you can better iterate on the install, to find the solution
<hpfr[m]> iterate on the install?
<clever> install once, then use nixos-rebuild on that, to iterate until it works
<hpfr[m]> oh yeah, I normally do that and I will do that, but I needed gparted to move partitions
<clever> ah, about all i can think of there is `ssh -X` to run gparted remotely
<hpfr[m]> but I'm guessing once I install my nix config it'll just work and I won't know why the iso didn't work. I don't use plasma
<hpfr[m]> i feel like a criminal when I use ssh -X
<clever> i never use the graphical iso, i just ssh in from an already working machine
<hpfr[m]> yeah that would probably be easier
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94509 → jdupes: 1.17.0 -> 1.18.2 → https://git.io/JJV1y
<hpfr[m]> also, manjaro xfce iso is over twice the size of the nixos graphical iso, so good job nixos i guess
<hpfr[m]> not sure why this usb 3 port writes at 20 MB/s when this drive is supposed to do 300 MB/s
<{^_^}> [nixpkgs] @jonringer opened pull request #94510 → libplacebo: allow for latest glslang → https://git.io/JJV1F
<hpfr[m]> welp, turns out all the reviews say the write speeds are terrible, so that's on me lol
<hpfr[m]> thought samsung could be trusted
<kraeXen> mega oof
<kraeXen> manjaro is bloated I agree, as I'm on it rn I can say that with no backlash
<kraeXen> I'm planning to hop on artix+nix soon
<kraeXen> just need to get everything sorted first
<hpfr[m]> just use nixos, coward /s
<kraeXen> no, I want the AUR and openrc
<kraeXen> no systemd crap
<kraeXen> in fact, using nix on another minimal OS seems to be more challenging, at least from the info I've gathered online
<hpfr[m]> fair. just use guix then, I would switch to guix if I wasn't stuck with systemd and hardware
<clever> kraeXen: you can still make your own openrc based distro around nix, like i did with runit (not-os)
<kraeXen> I don't particularly like guix to be fair
<hpfr[m]> why
<colemickens> oops
<kraeXen> I see the merit in full GNU and free software, and maybe someday I'll make the switch, but I don't really care for the guix package manager (I suppose nix could fix that), but it's fairly new and I like bleeding edge, but not that much
<kraeXen> a little too far on the spectrum for me anyway
<hpfr[m]> if you can handle openrc you can handle guix haha
<clever> kraeXen: you can still get fully free software, if you just leave allowUnfree at the default of false
proofofkeags has joined #nixos
<kraeXen> hpfr[m]: it's less about handling it, and more about having comfort alongside minimalism and dependability/reproducability
<hpfr[m]> for purely package management, guix seems more comfortable to me than nix, but we're in the nix channel so I shouldn't really be taking this tack lol
<hpfr[m]> I guess if you need nonfree stuff that's not flatpakable or dockerizable, nix is more useful, but I feel like you can only get so reproducible with nonfree sw anyway
proofofkeags has quit [Ping timeout: 240 seconds]
<kraeXen> true, true, and I only use 2-4 nonfree software pieces anyway... For guix the USA mirror times are soo bad...
<kraeXen> I also like arch, what can I say
<kraeXen> and that artix logo man
<kraeXen> ooh, and I can get a leg up on the "btw I use arch" meme :)
<kraeXen> I digress
<kraeXen> but perhaps at some point I'll give it a shot
<{^_^}> [nixpkgs] @marsam opened pull request #94511 → .github/workflows: narrow pull_request event types → https://git.io/JJVMZ
<{^_^}> [nixpkgs] @jonringer merged pull request #94353 → bmake: 20200629 -> 20200710 → https://git.io/JJaZk
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « bmake: 20200629 -> 20200710 »: https://git.io/JJVMW
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94512 → jx: 2.1.90 -> 2.1.121 → https://git.io/JJVMl
<{^_^}> [nixpkgs] @jonringer merged pull request #94332 → traefik: 2.2.4 -> 2.2.8 → https://git.io/JJ2jM
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « traefik: 2.2.4 -> 2.2.8 »: https://git.io/JJVM4
<{^_^}> [nixpkgs] @jonringer merged pull request #94396 → vulture: init at 1.6 → https://git.io/JJaXg
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/JJVME
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94513 → k6: 0.27.0 -> 0.27.1 → https://git.io/JJVMu
alexbakker has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
justanotheruser has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94514 → kmon: 1.3.0 -> 1.3.5 → https://git.io/JJVDk
matthewcroughan has quit [Ping timeout: 240 seconds]
<mog> i wnat to override the "./install-grub.pl;" with my own can i just put my own version of system.build.installBootLoader in an override?
<clever> mog: with mkForce, maybe, but youll also need to find the xml file
<clever> mog: it might be simpler to use -I nixpkgs=
<mog> the problem im trying to solve is this, we build our menuentries for grub like this linux ($drive1)//kernels/d36slr4z57rmb87ggb7695x3sym4bgkh-linux-5.7.11-bzImage systemConfig=/nix/store/kybhb03dlhhyjkarsifxz1l7vxwy9pnf-nixos-system-zaphod-20.09pre236419.a45f68ccac4 init=/nix/store/kybhb03dlhhyjkarsifxz1l7vxwy9pnf-nixos-system-zaphod-20.09pre236419.a45f68ccac4/init loglevel=4
<mog> im trying to end up with linux /kernels/d36slr4z57rmb87ggb7695x3sym4bgkh-linux-5.7.11-bzImage systemConfig=/nix/store/kybhb03dlhhyjkarsifxz1l7vxwy9pnf-nixos-system-zaphod-20.09pre236419.a45f68ccac4 init=/nix/store/kybhb03dlhhyjkarsifxz1l7vxwy9pnf-nixos-system-zaphod-20.09pre236419.a45f68ccac4/init loglevel=4
proofofkeags has joined #nixos
<mog> because pureboot doesnt know how to deal with the variable part, and is on the correct drive always
fling has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94515 → kondo: 0.3 -> 0.4 → https://git.io/JJVDG
<mog> hmm i think ill just fake it with system.activationScripts even if it is scummy
<ivan> on hydra-unstable in nixpkgs master I am seeing a lot of 'Aborted: [31;1merror:[0m[34;1m --- Error --- hydra-queue-runner[0m cannot add path '/nix/store/m4gp7z8w3r0m4r0hairfr21qvwxnzrp5-hydra-perl-deps' because it lacks a valid signature'
<ivan> for a variety of builds
<ivan> do nixStable and nixUnstable disagree on how signatures work right now?
<hpfr[m]> kraeXen: you can use guix like nix, as just a package manager on top of artix
<kraeXen> ik, but I like arch, and for now I'll stick with an arch-based distro
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94516 → kpt: 0.31.0 -> 0.32.0 → https://git.io/JJVD4
o1lo01ol1o has joined #nixos
kraeXen has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94517 → kube-router: 1.0.0 -> 1.0.1 → https://git.io/JJVDH
o1lo01ol1o has quit [Ping timeout: 240 seconds]
bbennett371 has joined #nixos
cjpbirkbeck has quit [Quit: Goodbye, take care]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94518 → lazygit: 0.20.6 -> 0.20.9 → https://git.io/JJVDd
bbennett371 has quit [Ping timeout: 260 seconds]
domogled has quit [Quit: domogled]
Rusty1 has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94519 → lean: 3.16.5 -> 3.18.4 → https://git.io/JJVyS
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/00501bd1340 (from 54 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
cyraxjoe has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94520 → libbytesize: 2.3 -> 2.4 → https://git.io/JJVyh
maier has joined #nixos
maier has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/7dc4385dc7b (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
<Mic92> ivan: it should be the same.
<ivan> thanks
<Mic92> is your path signed at all.
<Mic92> ?
proofofkeags has quit [Remote host closed the connection]
proofofkeags has joined #nixos
<Mic92> I don't use hydra but you either need to make your builder sign paths or you need to make the user hydra is running on a trusted user so it can use unsigned paths.
<Mic92> nix path-info --sigs /run/current-system
<Mic92> nix path-info --sigs /nix/store/m4gp7z8w3r0m4r0hairfr21qvwxnzrp5-hydra-perl-deps
Henson has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
proofofkeags has quit [Ping timeout: 240 seconds]
<ivan> Mic92: yeah that lists a signature and "ultimate"
<ivan> I just rebuilt and set nix to nixUnstable so let me see if hydra works
gnidorah has joined #nixos
<{^_^}> #92284 (by gnidorah, 4 weeks ago, open): lazpaint: init at 7.1.3
<Mic92> gnidorah delphi is still a thing?
<Mic92> ivan: it don't think it's very likely that they both disagree about signatures (also you never should say never), because that should also break with the binary cache.
user_0x58 has quit [Remote host closed the connection]
user_0x58 has joined #nixos
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
palo1 has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #92284 → lazpaint: init at 7.1.3 → https://git.io/JJk6v
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV9J
palo has quit [Ping timeout: 240 seconds]
palo1 is now known as palo
gnidorah has quit [Read error: No route to host]
gnidorah has joined #nixos
orivej has quit [Ping timeout: 264 seconds]
tmaekawa has joined #nixos
me has joined #nixos
me is now known as Guest93283
cole-h has quit [Quit: Goodbye]
<{^_^}> [nixpkgs] @Mic92 merged pull request #83915 → skim: fix vim-plugin output → https://git.io/Jv5jg
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV9n
<Guest93283> I want to set up nix shell with clangd for autocompletion with emacs lsp-mode but the lsp cannot find the <iostream> library. I tried to compile the code it ran just fine but still clangd is not able to find the library.
justanotheruser has joined #nixos
<Guest93283> I also checked when entering the shell there was no process for clangd running.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94521 → liquibase: 3.10.1 -> 3.10.2 → https://git.io/JJV94
nature has joined #nixos
<gnidorah> Mic92: looks like its still alive O_o
<{^_^}> [nixpkgs] @Mic92 merged pull request #94499 → gortr: 0.14.5 -> 0.14.6 → https://git.io/JJVKf
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV9M
<{^_^}> [nixpkgs] @Mic92 merged pull request #94500 → gotestsum: 0.5.1 -> 0.5.2 → https://git.io/JJV6i
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV9S
tmaekawa has quit [Quit: tmaekawa]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94522 → lite: 1.06 -> 1.11 → https://git.io/JJV99
nature has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #94501 → gromit-mpx: 1.3 -> 1.3.1 → https://git.io/JJVip
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/JJV9j
spudly- has joined #nixos
spudly- has joined #nixos
spudly- has quit [Changing host]
spudly has quit [Ping timeout: 256 seconds]
spudly- is now known as spudly
Guest93283 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94523 → mailcore2: 0.6.3 -> 0.6.4 → https://git.io/JJVHL
<{^_^}> [nixpkgs] @Mic92 merged pull request #94505 → helmfile: 0.119.1 -> 0.125.1 → https://git.io/JJVPN
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJVHt
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94524 → mdbook: 0.4.0 -> 0.4.1 → https://git.io/JJVHN
o1lo01ol1o has joined #nixos
revtintin has joined #nixos
pjt_tmp has quit [Ping timeout: 265 seconds]
o1lo01ol1o has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94525 → micronaut: 1.3.6 -> 1.3.7 → https://git.io/JJVQm
zupo has joined #nixos
user_0x58 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94526 → mill: 0.7.4 -> 0.8.0 → https://git.io/JJVQc
bbennett371 has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #94514 → kmon: 1.3.0 -> 1.3.5 → https://git.io/JJVDk
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJVQK
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94527 → minder: 1.9.0 -> 1.9.1 → https://git.io/JJVQX
bbennett371 has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @asbachb opened pull request #94528 → openjdk: 11.0.7 -> 11.0.8 → https://git.io/JJVQh
Heirlung has quit [Ping timeout: 244 seconds]
Heirlung- has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #94491 → dua: 2.8.1 -> 2.10.2 → https://git.io/JJVuK
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJV7U
Heirlung- is now known as Heirlung
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94529 → libsForQt5.mlt: 6.20.0 -> 6.22.0 → https://git.io/JJV7I
andymandias has quit [Ping timeout: 265 seconds]
andymandias has joined #nixos
maier has joined #nixos
<{^_^}> [nixpkgs] @marsam closed pull request #94511 → .github/workflows: narrow pull_request event types → https://git.io/JJVMZ
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94530 → mockgen: 1.4.3 -> 1.4.4 → https://git.io/JJV73
orivej has joined #nixos
maier has quit [Ping timeout: 240 seconds]
stephaneyfx has quit [Quit: Leaving]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @ju1m opened pull request #94531 → initrd-network: fix flushBeforeStage2 → https://git.io/JJV7R
<hsngrmpf[m]> Does anybody know of an up to date armv7l cache? The caches listed on https://nixos.wiki/wiki/User:Samueldr/NixOS_on_ARM#armv6l_and_armv7l seem all outdated
<{^_^}> [nixpkgs] @vcunat opened pull request #94532 → mesa.drivers: build with patchelf's master → https://git.io/JJV7u
<{^_^}> [nixpkgs] @adisbladis merged pull request #94493 → podman: 2.0.3 -> 2.0.4 → https://git.io/JJVgO
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/JJV7P
<{^_^}> [nixpkgs] @adisbladis merged pull request #94494 → buildah: 1.15.0 -> 1.15.1 → https://git.io/JJVg3
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/JJV7M
<{^_^}> [nixpkgs] @Mic92 merged pull request #94524 → mdbook: 0.4.0 -> 0.4.1 → https://git.io/JJVHN
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV7y
<{^_^}> [nixpkgs] @Mic92 merged pull request #94522 → lite: 1.06 -> 1.11 → https://git.io/JJV99
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JJV79
<{^_^}> [nixpkgs] @vcunat pushed commit from @taku0 to release-20.03 « firefox-esr: 68.10.0.esr -> 68.11.0esr »: https://git.io/JJV7H
<{^_^}> [nixpkgs] @zowoq opened pull request #94533 → fzf: 0.21.1 -> 0.22.0 → https://git.io/JJV7F
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94534 → navidrome: 0.24.0 -> 0.27.0 → https://git.io/JJV7b
<{^_^}> [nixpkgs] @marsam merged pull request #94401 → dune_2: 2.6.1 -> 2.6.2 → https://git.io/JJaSs
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJV7h
orivej has quit [Ping timeout: 265 seconds]
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/6eadc110053 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94535 → nfpm: 1.3.2 -> 1.5.0 → https://git.io/JJV5L
Fare has quit [Ping timeout: 244 seconds]
ddellacosta has quit [Ping timeout: 240 seconds]
<Izorkin> Mic92: I did not understand the question - https://github.com/NixOS/nixpkgs/pull/87867 need added to PR CAP_SYS_RESOURCE ?
<{^_^}> #87867 (by Izorkin, 11 weeks ago, open): nixos/netadata: enable simple sandboxing
<{^_^}> [nixpkgs] @kini closed pull request #86158 → acl2: fix AArch64 Linux build → https://git.io/JfqAs
proofofkeags has joined #nixos
<Mic92> Izorkin: yes. I think we don't have that plugin yet, but maybe in future? At minimum there should be added as a commented out line in case someone wants to use it in future.
<Mic92> Does this make sense?
<{^_^}> [nixpkgs] @filalex77 merged pull request #94515 → kondo: 0.3 -> 0.4 → https://git.io/JJVDG
<{^_^}> [nixpkgs] @filalex77 pushed 2 commits to master: https://git.io/JJV5B
<{^_^}> [nixpkgs] @filalex77 merged pull request #94533 → fzf: 0.21.1 -> 0.22.0 → https://git.io/JJV7F
<{^_^}> [nixpkgs] @filalex77 pushed 2 commits to master: https://git.io/JJV5R
<{^_^}> [nixpkgs] @filalex77 merged pull request #94518 → lazygit: 0.20.6 -> 0.20.9 → https://git.io/JJVDd
<{^_^}> [nixpkgs] @filalex77 pushed 2 commits to master: https://git.io/JJV50
<{^_^}> [nixpkgs] @vcunat pushed 7 commits to release-20.03: https://git.io/JJV5E
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94536 → nomacs: 3.15.1616 -> 3.16.224 → https://git.io/JJV5u
<{^_^}> [nixpkgs] @ShamrockLee opened pull request #94537 → pyspread: Correct dependencies and make wrapper → https://git.io/JJV5z
proofofkeags has quit [Ping timeout: 256 seconds]
drakonis has quit [Quit: WeeChat 2.8]
orivej has joined #nixos
gnidorah has quit [Quit: Connection closed for inactivity]
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
turlando has quit [Quit: Leaving]
turlando has joined #nixos
turlando has quit [Client Quit]
turlando has joined #nixos
asymptotically has joined #nixos
captn3m0 has joined #nixos
captn3m0- has quit [Ping timeout: 240 seconds]
Cale has quit [Remote host closed the connection]
<Izorkin> Mic92: Later I will update PR
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94539 → openbazaar-client: 2.4.6 -> 2.4.7 → https://git.io/JJVFm
<{^_^}> [nixpkgs] @gebner merged pull request #94519 → lean: 3.16.5 -> 3.18.4 → https://git.io/JJVyS
<{^_^}> [nixpkgs] @gebner pushed 2 commits to master: https://git.io/JJVFW
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<Reventlov> Hi.
<Reventlov> Do you know some way of getting completion on .nix files and nixos options, in vscode ?
orivej has quit [Quit: No Ping reply in 180 seconds.]
<Mic92> Reventlov: to my knowledge this is only provided by emacs. There is https://github.com/nix-community/rnix-lsp but its completion is basic
orivej has joined #nixos
<Mic92> They basically complete from the lexical scope: https://github.com/nix-community/rnix-lsp/blob/master/src/lookup.rs
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94540 → operator-sdk: 0.18.2 -> 0.19.2 → https://git.io/JJVFM
nature has joined #nixos
noudle has joined #nixos
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
bbennett371 has joined #nixos
<{^_^}> [nixpkgs] @zowoq merged pull request #94265 → github actions: update and add to codeowners → https://git.io/JJ2CJ
<{^_^}> [nixpkgs] @zowoq pushed 5 commits to master: https://git.io/JJVbJ
mallox has joined #nixos
<{^_^}> [nixpkgs] @offlinehacker merged pull request #94513 → k6: 0.27.0 -> 0.27.1 → https://git.io/JJVMu
<{^_^}> [nixpkgs] @offlinehacker pushed 2 commits to master: https://git.io/JJVbY
bbennett371 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @offlinehacker merged pull request #94386 → cava: 0.7.1 -> 0.7.2 → https://git.io/JJare
<{^_^}> [nixpkgs] @offlinehacker pushed 2 commits to master: https://git.io/JJVbZ
<{^_^}> [nixos-hardware] @ehmry pushed 3 commits to reform: https://git.io/JJVbW
sab7iryudpgf6[m] has quit [Quit: Idle for 30+ days]
o1lo01ol1o has joined #nixos
<Reventlov> oh well, thanks Mic92
gcoakes[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
solomon[m] has quit [Quit: Idle for 30+ days]
zannzen[m] has quit [Quit: Idle for 30+ days]
adit[m] has quit [Quit: Idle for 30+ days]
catharsis_[m] has quit [Quit: Idle for 30+ days]
basilbunting[m] has quit [Quit: Idle for 30+ days]
rgamma[m] has quit [Quit: Idle for 30+ days]
Luigi[m]1 has quit [Quit: Idle for 30+ days]
asymptotically has quit [Quit: Leaving]
malik has joined #nixos
sabry97[m] has quit [Quit: Idle for 30+ days]
sonerhalis[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
o1lo01ol1o has quit [Ping timeout: 264 seconds]
drewr has joined #nixos
asymptotically has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94541 → osm2pgsql: 1.2.2 -> 1.3.0 → https://git.io/JJVbE
serrvan has joined #nixos
mallox has quit [Quit: WeeChat 2.9]
maier has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
maier has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94542 → osu-lazer: 2020.725.0 -> 2020.801.0 → https://git.io/JJVNf
serrvan has quit [Ping timeout: 260 seconds]
davidv7 has joined #nixos
dermetfan has joined #nixos
knupfer has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
xwvvvvwx has joined #nixos
__monty__ has joined #nixos
fendor_ has quit [Remote host closed the connection]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
sangoma has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94543 → papirus-icon-theme: 20200702 -> 20200801 → https://git.io/JJVAK
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
knupfer1 has joined #nixos
zupo has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @Ma27 merged pull request #94488 → drawio: 13.5.1 -> 13.5.7 → https://git.io/JJVuc
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJVAQ
zupo has quit [Client Quit]
<{^_^}> [nixpkgs] @Ma27 merged pull request #94521 → liquibase: 3.10.1 -> 3.10.2 → https://git.io/JJV94
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJVAF
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
zupo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94544 → pgmetrics: 1.9.2 -> 1.9.3 → https://git.io/JJVAj
xelxebar_ has joined #nixos
malik has quit [Remote host closed the connection]
xelxebar has quit [Ping timeout: 240 seconds]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
malook has joined #nixos
zupo has quit [Client Quit]
turlando has quit [Ping timeout: 246 seconds]
domogled has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94545 → picard-tools: 2.23.1 -> 2.23.3 → https://git.io/JJVxZ
knupfer1 has joined #nixos
dsg has joined #nixos
dsg has quit [Client Quit]
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
<hpfr[m]> anyone ever have a problem with windows in GNOME being extremely wide
<hpfr[m]> like much wider than the screen
dsg has joined #nixos
user_0x58 has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/71412714101 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #94535 → nfpm: 1.3.2 -> 1.5.0 → https://git.io/JJV5L
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJVxu
dsg has quit [Read error: Connection reset by peer]
dsg has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
orivej has quit [Quit: No Ping reply in 180 seconds.]
turlando has joined #nixos
orivej has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #94517 → kube-router: 1.0.0 -> 1.0.1 → https://git.io/JJVDH
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJVxS
knupfer1 has joined #nixos
noudle has quit []
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
revtintin has quit [Quit: WeeChat 1.9.1]
knupfer1 has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
liff has joined #nixos
orivej has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94546 → pivx: 4.1.1 -> 4.2.0 → https://git.io/JJVpm
liff has quit [Client Quit]
liff has joined #nixos
smatting_ has joined #nixos
knupfer has quit [Ping timeout: 265 seconds]
knupfer1 is now known as knupfer
orivej has quit [Ping timeout: 260 seconds]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
smatting_ has quit [Ping timeout: 260 seconds]
simba1 has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @Ma27 merged pull request #94476 → cargo-tarpaulin: 0.14.0 -> 0.14.2 → https://git.io/JJVBR
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJVp6
knupfer1 has joined #nixos
domogled1 has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
<monokrome> hmm
<monokrome> Seems like the version of Tor browser in the tor-browser-bundle-bin package doesn't exist any more on Tor's servers due to a recent security issue
domogled has quit [Ping timeout: 264 seconds]
domogled1 is now known as domogled
<monokrome> I was going to fix it but tbh I can't get the test tooling to work so I gave up
<{^_^}> [nixpkgs] @vcunat pushed 7 commits to release-20.03: https://git.io/JJVhv
domogled has quit [Client Quit]
knupfer1 has joined #nixos
malook has quit [Ping timeout: 264 seconds]
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/ccd458053b0 (from 2 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
bbennett371 has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
malook has joined #nixos
bbennett371 has quit [Ping timeout: 244 seconds]
knupfer1 has joined #nixos
bbennett371 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
bbennett371 has quit [Ping timeout: 260 seconds]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @zowoq pushed to master « .editorconfig: add deps.nix »: https://git.io/JJVhj
maier has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
maier has quit [Ping timeout: 240 seconds]
sentinal8473 has quit [Remote host closed the connection]
knupfer1 has joined #nixos
sentinal8473 has joined #nixos
oldsk00l has joined #nixos
sentinal8473 has quit [Client Quit]
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
sb0 has joined #nixos
doyougnu has joined #nixos
knupfer1 has joined #nixos
<ToxicFrog> Ok, I don't think the `networking.domain` setting is working right
<ToxicFrog> `networking.host = "ancilla"; networking.domain = "ancilla.ca";`
<ToxicFrog> `egrep '(domain|search)' /etc/resolv.conf` => `domain lan`
<{^_^}> [nixpkgs] @Ma27 pushed to master « cargo-tarpaulin: disable aarch64 and i686 build »: https://git.io/JJVja
<{^_^}> [nixpkgs] @primeos merged pull request #94510 → libplacebo: allow for latest glslang → https://git.io/JJV1F
<{^_^}> [nixpkgs] @primeos pushed commit from @jonringer to master « libplacebo: allow for latest glslang (#94510) »: https://git.io/JJVjr
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
malook has quit [Ping timeout: 260 seconds]
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @Ma27 merged pull request #94441 → i3: 4.18.1 -> 4.18.2 → https://git.io/JJVUQ
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJwe3
knupfer has quit [Ping timeout: 240 seconds]
<prusnak> is there a way how to run Nix on iOS/iPadOS similarly to Nix-on-Droid
<prusnak> ?
knupfer has joined #nixos
itshaydendev has joined #nixos
__monty__ has quit [Quit: leaving]
knupfer1 has joined #nixos
bbennett371 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @bachp opened pull request #94548 → openjdk14: 14.0.1 -> 14.0.2 → https://git.io/JJwe1
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
Fare has joined #nixos
arjen-jonathan has joined #nixos
knupfer1 has joined #nixos
jakob_rs has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
user_0x58 has quit [Ping timeout: 240 seconds]
user_0x58 has joined #nixos
sb0 has quit [Quit: Leaving]
<jakob_rs> Does nix-command have something like `--check`?
arjen-jonathan has quit [Quit: WeeChat 2.8]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
alexherbo2_ has joined #nixos
alexherbo2 has joined #nixos
itshaydendev has quit [Ping timeout: 256 seconds]
knupfer1 has joined #nixos
ToxicFrog has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
<LnL> not currently AFAIK
knupfer1 has joined #nixos
c0c0 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #93908 → ocamlPackages.mdx: 1.6.0 → 1.7.0 → https://git.io/JJRyg
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.mdx: 1.6.0 → 1.7.0 »: https://git.io/JJwf6
knupfer1 has quit [Ping timeout: 240 seconds]
sangoma has quit [Ping timeout: 240 seconds]
malook has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
higemaru has quit [Remote host closed the connection]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
jakob_rs has quit [Quit: WeeChat 2.8]
c0c0 has quit [Quit: WeeChat 2.7.1]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #84545 → timezonemap: init at 0.4.5 → https://git.io/JvAZ7
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJwJQ
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94549 → sabnzbd: 2.3.9 -> 3.0.0 → https://git.io/JJwJ5
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
jophish has joined #nixos
knupfer1 has joined #nixos
malook has quit [Quit: malook]
bbennett371 has quit [Ping timeout: 260 seconds]
bbennett371 has joined #nixos
ent has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
bbennett371 has quit [Ping timeout: 272 seconds]
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
euandreh has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #94528 → openjdk: 11.0.7 -> 11.0.8 → https://git.io/JJVQh
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJwUu
shibboleth has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @StijnDW opened pull request #94551 → nixos/dokuwiki: fix https redirect → https://git.io/JJwUP
<{^_^}> [nixpkgs] @vbgl merged pull request #93168 → dune-release: 1.3.3 → 1.4.0 → https://git.io/JJsXf
<{^_^}> [nixpkgs] @vbgl pushed commit from @sternenseemann to master « dune-release: 1.3.3 → 1.4.0 »: https://git.io/JJwUM
sangoma has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
sangoma has quit [Ping timeout: 240 seconds]
ddellacosta has joined #nixos
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
maier has joined #nixos
<{^_^}> [nixpkgs] @06kellyjac opened pull request #94552 → deno: 1.2.1 -> 1.2.2 → https://git.io/JJwT6
v0|d has quit [Ping timeout: 240 seconds]
dermetfan has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Ekleog opened pull request #94553 → rss2email: 3.11 -> 3.12 → https://git.io/JJwTQ
cjpbirkbeck has joined #nixos
maier has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94554 → sd: 0.7.5 -> 0.7.6 → https://git.io/JJwTN
zyklotomic has joined #nixos
cyris212 has joined #nixos
bbennett371 has joined #nixos
Thra11 has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #93751 → quilter: 2.2.4 -> 2.5.0 → https://git.io/JJ8hB
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JJwkZ
matthewcroughan has joined #nixos
bbennett371 has quit [Ping timeout: 260 seconds]
bbennett371 has joined #nixos
<Thra11> Does bootstrapping nixos involve two different builds of a single version of perl (and the same with gettext and possibly others)?
<bqv> yes
bbennett371 has quit [Ping timeout: 244 seconds]
<Thra11> Is it a case of building a minimal version which is then used to bootstrap stuff to build a proper, optimised version, or is it something else?
<bqv> it's about circular dependencies, so yes
domogled has joined #nixos
<Thra11> clever: The armv7l binary cache at http://hydra.earthtools.ca/jobset/arm/nixpkgs-arm-unstable/channel/latest mentioned by the wiki (https://nixos.wiki/wiki/NixOS_on_ARM#Additional_caches) doesn't appear to exist. Has it moved or gone away forever?
LnL has joined #nixos
LnL is now known as Guest83099
Guest83099 has quit [Client Quit]
LnL- has joined #nixos
LnL- has joined #nixos
LnL- has quit [Changing host]
dermetfan has joined #nixos
LnL- has quit [Client Quit]
LnL- has joined #nixos
LnL- has quit [Client Quit]
LnL- has joined #nixos
LnL- has quit [Client Quit]
LnL- has joined #nixos
LnL- has quit [Client Quit]
<{^_^}> [nixpkgs] @filalex77 merged pull request #94554 → sd: 0.7.5 -> 0.7.6 → https://git.io/JJwTN
<{^_^}> [nixpkgs] @filalex77 pushed 2 commits to master: https://git.io/JJwLP
ratorx has joined #nixos
LnL- has joined #nixos
ratorx has quit [Remote host closed the connection]
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #94516 → kpt: 0.31.0 -> 0.32.0 → https://git.io/JJVD4
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JJwLA
Rusty1 has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #94539 → openbazaar-client: 2.4.6 -> 2.4.7 → https://git.io/JJVFm
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JJwLp
<{^_^}> [nixpkgs] @raboof opened pull request #94556 → mastodon-bot: 1.0.2 -> 1.0.4 → https://git.io/JJwte
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94557 → terragrunt: 0.23.31 -> 0.23.32 → https://git.io/JJwtB
christianbundy has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #94544 → pgmetrics: 1.9.2 -> 1.9.3 → https://git.io/JJVAj
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwt9
nDuff has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #94552 → deno: 1.2.1 -> 1.2.2 → https://git.io/JJwT6
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwt5
justanotheruser has quit [Ping timeout: 272 seconds]
Profpatsch has left #nixos ["WeeChat 2.8"]
<{^_^}> [nixpkgs] @marsam merged pull request #94541 → osm2pgsql: 1.2.2 -> 1.3.0 → https://git.io/JJVbE
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwqx
<{^_^}> [nixpkgs] @marsam merged pull request #94447 → bjumblr: 0.2 -> 1.4.0 → https://git.io/JJVL8
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwmU
<{^_^}> [nixpkgs] @bhipple opened pull request #94558 → nixpkgs-lint: ignore user's overlays → https://git.io/JJwmT
<{^_^}> [nixpkgs] @marsam merged pull request #94492 → ettercap: 0.8.3 -> 0.8.3.1 → https://git.io/JJVzo
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwmk
<{^_^}> [nixpkgs] @roberth merged pull request #75584 → Configuration file formats for JSON, INI, YAML and TOML → https://git.io/JeH29
<{^_^}> [nixpkgs] @roberth pushed 7 commits to master: https://git.io/JJwmq
<{^_^}> [nixpkgs] @marsam merged pull request #94453 → amfora: 1.3.0 -> 1.4.0 → https://git.io/JJV3Q
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwmm
<{^_^}> [nixpkgs] @marsam merged pull request #94435 → fluent-bit: 1.5.0 -> 1.5.2 → https://git.io/JJVfJ
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwml
christianbundy has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #94437 → flyway: 6.5.0 -> 6.5.3 → https://git.io/JJVfP
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwmg
christianbundy has joined #nixos
pmwhite has joined #nixos
justanotheruser has joined #nixos
nDuff has quit [Quit: zzz]
maier has joined #nixos
maier has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #94071 → nixos/snapserver: update module to work with snapcast 0.20 → https://git.io/JJEMm
<{^_^}> [nixpkgs] @mweinelt pushed 3 commits to master: https://git.io/JJwYZ
<{^_^}> [nixpkgs] @marsam merged pull request #94512 → jx: 2.1.90 -> 2.1.121 → https://git.io/JJVMl
<{^_^}> [nixpkgs] @marsam pushed 4 commits to master: https://git.io/JJwYw
bbennett371 has joined #nixos
codygman has quit [Ping timeout: 240 seconds]
codygman has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #94428 → gosec: 2.3.0 -> 2.4.0 → https://git.io/JJaNW
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JJwYS
<{^_^}> [nixpkgs] @bhipple merged pull request #94548 → openjdk14: 14.0.1 -> 14.0.2 → https://git.io/JJwe1
<{^_^}> [nixpkgs] @bhipple pushed 2 commits to master: https://git.io/JJwYQ
<{^_^}> [nixpkgs] @marsam merged pull request #94440 → ardour: 6.0 -> 6.2 → https://git.io/JJVU3
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJwYd
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
bbennett371 has quit [Ping timeout: 272 seconds]
abathur has quit [Ping timeout: 240 seconds]
noudle has joined #nixos
<hsngrmpf[m]> Can anybody give me a hint how to install the nix package manager on a raspbian )
medvid has quit [Quit: WeeChat 2.3]
medvid has joined #nixos
<Thra11> hsngrmpf[m]: What type of raspberry pi is rasbian runnin on?
<{^_^}> [nixpkgs] @wjlroe opened pull request #94559 → zig: fix build → https://git.io/JJwOu
<hsngrmpf[m]> <Thra11 "hsngrmpf: What type of raspberry"> rpi4
<hsngrmpf[m]> I could successfully build `nix build -f "<nixpkgs>" pkgsCross.raspberryPi.nix` but not sure how to get this onto the raspberry.
orivej has joined #nixos
<Thra11> hsngrmpf[m]: Is raspbian aarch64, or still armv7l running on an aarch64 cpu?
<hsngrmpf[m]> armv7l
codygman has quit [Ping timeout: 240 seconds]
codygman has joined #nixos
cole-h has joined #nixos
<christianbundy> Hey, is there a way to get the latest version of nodejs working?
<christianbundy> looks like node 14 hasn't been packaged yet
<{^_^}> [nixpkgs] @doronbehar opened pull request #94560 → pjsip: split outputs to reduce closure → https://git.io/JJw3g
parsifal has joined #nixos
parsifal has quit [Client Quit]
ManiacOfMadness has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #94531 → initrd-network: fix flushBeforeStage2 → https://git.io/JJV7R
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJw36
<infinisil> > nodejs-14_x
<{^_^}> "<derivation /nix/store/6sd6cqvx621xlc4iy5mnpprdfnf27v1s-nodejs-14.7.0.drv>"
<infinisil> > unstable.nodejs-14_x
<{^_^}> "<derivation /nix/store/6sd6cqvx621xlc4iy5mnpprdfnf27v1s-nodejs-14.7.0.drv>"
<infinisil> > stable.nodejs-14_x
<{^_^}> attribute 'nodejs-14_x' missing, at (string):318:1
<infinisil> christianbundy: It's in unstable
<superbaloo> when a derivation has multiple outputs, how do you query a specific one?
<bqv> > ffmpeg.dev
<{^_^}> "<derivation /nix/store/1f93iaxznqzsixr76m2rmxdrh3j9s226-ffmpeg-4.3.1.drv>"
<bqv> > ffmpeg.bin
<{^_^}> "<derivation /nix/store/1f93iaxznqzsixr76m2rmxdrh3j9s226-ffmpeg-4.3.1.drv>"
<bqv> > ffmpeg.doc
<{^_^}> "<derivation /nix/store/1f93iaxznqzsixr76m2rmxdrh3j9s226-ffmpeg-4.3.1.drv>"
<superbaloo> nix-store --query --outputs blah.drv gives a list of all of them
<bqv> ok bad example but you get the idea
<superbaloo> well, I get the source derivation with that
<superbaloo> :/
<bqv> > firefox.outputs
<{^_^}> [ "out" ]
<christianbundy> infinisil: thanks! is there somewhere I can learn more about what goes into 'unstable'?
<christianbundy> or how it moves into 'stable'?
<bqv> > libgmp.outputs
<{^_^}> undefined variable 'libgmp' at (string):318:1
<{^_^}> [nixpkgs] @marsam merged pull request #94438 → istioctl: 1.6.5 -> 1.6.6 → https://git.io/JJVJ0
<bqv> superbaloo: which pacage
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JJwsk
<infinisil> christianbundy: stable in the bot here is actually just an alias to nixos_20.03, that's the current stable NixOS release
<bqv> probably faster than me guessing at one with multiple outputs...
<superbaloo> nix-store --query --outputs --force-realize $(nix-instantiate -E 'with import <nixpkgs> {}; tmux')
<infinisil> christianbundy: There's only a release every 6 months, at which point the master branch becomes the new stable one
<bqv> > tmux.outputs
<{^_^}> [ "out" "man" ]
<bqv> > tmux.out
<{^_^}> "<derivation /nix/store/20bi8ipp9myl6qyjyvnhc3cfj63584az-tmux-3.1b.drv>"
<bqv> > tmux.man
<{^_^}> "<derivation /nix/store/20bi8ipp9myl6qyjyvnhc3cfj63584az-tmux-3.1b.drv>"
* bqv thonk
<superbaloo> :)
<infinisil> christianbundy: And once a new NixOS version has released, there generally won't be any version updates to it
Thra11_ has joined #nixos
<bqv> > tmux.out.outPath
<{^_^}> "/nix/store/jwlbzilcvj4g008hb6j91290iizjrfk7-tmux-3.1b"
<bqv> > tmux.man.outPath
<superbaloo> haaa!
<{^_^}> "/nix/store/1lqjq69n66670sia50y41cn65gnrl1rg-tmux-3.1b-man"
<bqv> there we go
Thra11 has quit [Ping timeout: 246 seconds]
<bqv> it's just a repl quirk, i guess
<bqv> the former should work
<bqv> cc @ infinisil
<superbaloo> now I have to understand how to evaluate that :D
drakonis has joined #nixos
jumper149 has joined #nixos
<christianbundy> infinisil: oh sweet, thanks!
zupo has joined #nixos
drakonis has quit [Quit: WeeChat 2.8]
doyougnu` has joined #nixos
ddellacosta has quit [Ping timeout: 256 seconds]
dermetfan has quit [Ping timeout: 260 seconds]
doyougnu has quit [Ping timeout: 256 seconds]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @ttuegel merged pull request #93903 → kfloppy: init at 20.04.3 → https://git.io/JJR1O
<{^_^}> [nixpkgs] @ttuegel pushed 2 commits to master: https://git.io/JJwsD
ManiacOfMadness has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
o1lo01ol1o has quit [Ping timeout: 260 seconds]
__monty__ has joined #nixos
<{^_^}> [nixpkgs] @cpcloud opened pull request #94561 → shipyard: init at 0.0.37 → https://git.io/JJwG4
teto has joined #nixos
alexherbo2__ has joined #nixos
alexherbo2__ has quit [Client Quit]
christianbundy has quit [Ping timeout: 240 seconds]
zerocostabstrac4 has joined #nixos
gustavderdrache has joined #nixos
<{^_^}> #89885 (by matthewbauer, 7 weeks ago, merged): fetchurl: allow empty hash
<superbaloo> If I read this correctly, this only builds if you got the patches from https://github.com/NixOS/nix/pull/3674 right?
<{^_^}> nix#3674 (by matthewbauer, 7 weeks ago, merged): Allow empty hash in derivations
<superbaloo> and 3674 is not included in any release of nix afaict
<superbaloo> (trying to understand this error: https://gist.github.com/baloo/098ff17d98597b26fc4ec426efa67b18)
<superbaloo> with nixpkgs master
abathur has joined #nixos
<superbaloo> (nix 2.3.7)
h0m1 has quit [Quit: WeeChat 2.9]
philr has quit [Ping timeout: 256 seconds]
h0m1 has joined #nixos
<superbaloo> nevermind, I'm reading this wrong
crazazy[m] has joined #nixos
CodeSpelunker has joined #nixos
h0m1 has quit [Client Quit]
h0m1 has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #60246 → nixos/modules/virtualization: Options to add an extra disk in virtualbox VM → https://git.io/fjsoh
<{^_^}> [nixpkgs] @Ericson2314 pushed 2 commits to master: https://git.io/JJwZT
maier has joined #nixos
maier has quit [Ping timeout: 246 seconds]
Neo--- has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94562 → bison: 3.6.4 -> 3.7.1 → https://git.io/JJwZO
<daddy_james[m]> how would one include firmware for a network device into the nix package manager?
<daddy_james[m]> I have a laptop with an obscure network device (rtl8191se) and I would like to use it with nixos
<daddy_james[m]> the firmware is already in debian repos
<evanjs> Asked in nixos-emacs, but unsure of the activity/involvement and etc there:
<evanjs> anybody know of functions or such that provide e.g. lib.types (from nix)?
<evanjs> emacs functions, sorry
<infinisil> > :v _show
<{^_^}> _show = x: if lib.isDerivation x then "<derivation ${x.drvPath}>" else x
<infinisil> > tmux.man.drvPath
<{^_^}> "/nix/store/20bi8ipp9myl6qyjyvnhc3cfj63584az-tmux-3.1b.drv"
<infinisil> bqv: Ah no it's not a mistake, all outputs have the same derivation file
<bqv> right, makes sense
<bqv> yeat
knupfer has joined #nixos
ixxie has joined #nixos
<evanjs> gah. easiest way to check a list of package(derivation)s for a specific package?
<evanjs> or rather, is there any sugar for that sort of thing? :P vs just a filter or etc
mwelt has joined #nixos
knupfer1 has joined #nixos
<mwelt> hi all. Short question to installing packages. `nix search nodejs` returns various versions of nodejs, but all have the same symbol (nodejs). So how exactly do I install a specific version? Or better yet, how do I install a package by package name and not by symbol?
<superbaloo> daddy_james[m]: there is a rtl8192su-firmware package which unlike its name indicates, handles rtl8191se
<daddy_james[m]> ah thanks
<mwelt> `nix search` isn't supported officially, and `nix-env -aq` returns package names, but requests package symbols for acatual -i option? Isn't this kind of inconsistent?
<daddy_james[m]> I was researching the .deb for the debian package and noticed it didn't contain a file for the 8191se
<infinisil> evanjs: Not sure what you mean
<daddy_james[m]> so I guess they're just identical
<superbaloo> they're different payload
<evanjs> lib.filter (x: lib.strings.hasInfix "nixos" (lib.strings.getName x)) config.mine.emacs.config.packages
<evanjs> that works ^
<superbaloo> but the way to load them is identical
<evanjs> and should explain what I mean lol
<teto> before I dive in, anyone has been able to use goneovim on nixos before ? https://github.com/akiyosi/goneovim
<evanjs> "which packages in this list contain <string>?"
<superbaloo> I guess the person that published the firmware-loader had a rtl8192su, and used that name
bbennett371 has joined #nixos
<superbaloo> you'll find the binary firmware here
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
<infinisil> evanjs: Wouldn't know how this could be done better than that :)
<evanjs> infinisil: sweet! just making sure it's as idiomatic as possible :D
<evanjs> on a more generic note, is there an easy way to get output like that (e.g. a list of drvs) to actually work with `nix eval`?
<evanjs> like `nix eval -f '<nixpkgs>' -f '<nixpkgs/nixos>' '(with import <nixpkgs> {}; with import <nixpkgs/nixos> {}; lib.filter (x: lib.strings.hasInfix "nixos" (lib.strings.getName x)) config.mine.emacs.config.packages)'` just dies
<evanjs> `--json` to the rescue :P
bbennett371 has quit [Ping timeout: 244 seconds]
knupfer has quit [Ping timeout: 265 seconds]
<evanjs> mmkay, and it looks like e.g. `lib.filterAttrs (x: y: lib.strings.hasInfix "nixos" (lib.strings.getName x)) emacsPackages` works for attrs
<{^_^}> [nixpkgs] @marsam merged pull request #81085 → vale: install documentation and example styles → https://git.io/JvuC6
<{^_^}> [nixpkgs] @marsam pushed 4 commits to master: https://git.io/JJwn0
knupfer has joined #nixos
cole-h has quit [Quit: Goodbye]
malik has joined #nixos
cosimone has joined #nixos
<Fare> gchristensen, on the docker image issue, is there a way I can help?
knupfer1 has joined #nixos
sangoma has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
ixxie has quit [Remote host closed the connection]
knupfer1 has joined #nixos
noogie has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94564 → aspellDicts.pt_BR: 20090702-0 -> 20131030-12-0 → https://git.io/JJwnj
drakonis has joined #nixos
knupfer1 has joined #nixos
tomaw has joined #nixos
spudly- has joined #nixos
spudly- has joined #nixos
spudly- has quit [Changing host]
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
stephaneyfx has joined #nixos
spudly has quit [Ping timeout: 256 seconds]
knupfer1 has joined #nixos
justanotheruser has quit [Ping timeout: 260 seconds]
CodeSpelunker has quit [Quit: CodeSpelunker]
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
growpotkin has joined #nixos
Cale has joined #nixos
Mateon1 has quit [Remote host closed the connection]
knupfer1 has joined #nixos
ddellacosta has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
Mateon1 has joined #nixos
<daddy_james[m]> superbaloo how exactly would I load it?
<daddy_james[m]> I'm a bit of a nix noob
<daddy_james[m]> I just tried to include the package in my configuration.nix and it didn't work
<{^_^}> [nixpkgs] @7c6f434c merged pull request #85903 → acl2: build standard library as well → https://git.io/JfLv6
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JJwcV
Mateon1 has quit [Remote host closed the connection]
asymptotically has quit [Remote host closed the connection]
WRMilling has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
<WRMilling> I feel like I have just made a new user mistake. Trying to install with nix-env gives me an error about: attribute 'nixpkgs' in selection path 'nixpkgs.sysbench' not found
knupfer has joined #nixos
<Ke> daddy_james: not knowledge, but I would try configs like hardware.enableAllFirmware
<Ke> or just
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
nikita` has joined #nixos
<Ke> hardware.firmware = with pkgs; [ rtl8192su-firmware ];
<Ke> which seems to be the backing implementation for that
<Ke> daddy_james: better remember that search interface, it is really useful
knupfer1 has joined #nixos
<daddy_james[m]> that makes a lot more sense than just including it as a package
<daddy_james[m]> I'm gunna try that and see if it works
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @7c6f434c merged pull request #92578 → Update Gambit, Gerbil and libraries → https://git.io/JJtCd
<{^_^}> [nixpkgs] @7c6f434c pushed 8 commits to master: https://git.io/JJwCf
<{^_^}> [nixpkgs] @primeos opened pull request #94565 → gammastep: init at 2.0.1 → https://git.io/JJwCJ
<Ke> note that these configs also have links to implementations so you can sort of see, what they do
Mateon1 has joined #nixos
<Ke> sometimes it's just hooked up to something else and it's not really linked in the docs so you end up doing the research yourself or just asking
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #94540 → operator-sdk: 0.18.2 -> 0.19.2 → https://git.io/JJVFM
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JJwCl
asymptotically has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c opened pull request #94566 → xscreensaver: fix xscreensaver-demo build → https://git.io/JJwCR
<Orbstheorem> Can I "enter" a different user-profile without switching my 'main' user-profile?
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
malik has quit [Remote host closed the connection]
higemaru has joined #nixos
m-f-g has joined #nixos
mwelt has quit [Ping timeout: 260 seconds]
knupfer has quit [Ping timeout: 256 seconds]
knupfer has joined #nixos
<{^_^}> [nixpkgs] @xzfc opened pull request #94567 → cached-nix-shell: 0.1.3 -> 0.1.4 → https://git.io/JJwCd
domogled has quit [Remote host closed the connection]
domogled has joined #nixos
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
m-f-g has quit [Quit: Leaving]
AmandaC_ has joined #nixos
AmandaC_ has quit [Remote host closed the connection]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
johnw has joined #nixos
knupfer1 has joined #nixos
noudle has quit []
ris has quit [Remote host closed the connection]
ris has joined #nixos
knupfer has quit [Ping timeout: 246 seconds]
knupfer1 is now known as knupfer
<infinisil> WRMilling: It's `nix-env -iA nixos.sysbench` on NixOS
abathur has quit [Ping timeout: 265 seconds]
knupfer1 has joined #nixos
maier has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
<daddy_james[m]> to install firmware, all you have to do is put it into /lib/firmware right?
<symphorien> /lib does not exist ;)
<daddy_james[m]> oh wait
<{^_^}> [nixpkgs] @mweinelt opened pull request #94568 → python3Packages.brother: init at 0.1.14 → https://git.io/JJwWW
<daddy_james[m]> debian moment
<symphorien> daddy_james[m]: https://nixos.org/nixos/options.html#hardware+firmware
<daddy_james[m]> even with ```hardware.enableAllFirmware``` and ```nixpkgs.config.allowUnfree``` I still have issues :(
maier has quit [Ping timeout: 240 seconds]
<symphorien> did you try what Ke suggested at 20:24:43 my time ?
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
o1lo01ol1o has joined #nixos
h0m1 has quit [Quit: WeeChat 2.9]
h0m1 has joined #nixos
<grfn> is there a guide somewhere on how to override the version of a package built with buildRustPackage?
<grfn> overrideAttrs is failing because it's not properly overriding the cargoDeps
<daddy_james[m]> >did you try what Ke suggested at 20:24:43 my time ?
<daddy_james[m]> I tried that as well
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94569 → aspellDicts.de: 20030222-1 -> 20161207-7-0 → https://git.io/JJwWB
knupfer1 has joined #nixos
o1lo01ol1o has quit [Ping timeout: 240 seconds]
knupfer has quit [Ping timeout: 265 seconds]
knupfer1 is now known as knupfer
abathur has joined #nixos
superherointj has joined #nixos
knupfer has quit [Ping timeout: 265 seconds]
dermetfan has joined #nixos
<{^_^}> [nixpkgs] @Profpatsch merged pull request #94553 → rss2email: 3.11 -> 3.12.1 → https://git.io/JJwTQ
<{^_^}> [nixpkgs] @Profpatsch pushed 2 commits to master: https://git.io/JJwWD
knupfer has joined #nixos
johnw has quit [Quit: ZNC - http://znc.in]
bbennett371 has joined #nixos
grumble has joined #nixos
knupfer1 has joined #nixos
bbennett371 has quit [Ping timeout: 260 seconds]
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
endocrimes has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
nixy37179 has joined #nixos
abathur has quit [Ping timeout: 264 seconds]
abathur has joined #nixos
wolfshappen has joined #nixos
<infinisil> grfn: Hm it doesn't seem to be well supported, but I believe doing `.overrideAttrs (old: { cargoDeps = fetchCargoTarball { ... }; })` should work
AmandaC has quit [Quit: Toodles]
AmandaC has joined #nixos
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
quinn has joined #nixos
reanimus has quit [Ping timeout: 244 seconds]
reanimus has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94570 → python27Packages.autopep8: 1.5.3 -> 1.5.4 → https://git.io/JJwlZ
nature has quit [Ping timeout: 272 seconds]
knupfer has joined #nixos
<evanjs> is there any way to easily query packages.json.br from `nix eval` or the like?
<evanjs> I can see that options is queryable, but packages.json is only referenced/used from make-tarball, it seems
<evanjs> s/from/by, whatever lol
afreakk has quit [Ping timeout: 240 seconds]
<evanjs> tbh I might just be misinterpreting what this is doing https://github.com/travisbhartwell/nix-emacs/blob/master/nixos-packages.el
<evanjs> Seems like it wasn't fully implemented and hasn't been touched in a while; was seeing if I could get anything out of it
knupfer1 has joined #nixos
dsg has quit [Quit: leaving]
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
gustavderdrache has quit [Quit: Leaving.]
abathur has quit [Ping timeout: 256 seconds]
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
nikita` has quit [Quit: leaving]
abathur has joined #nixos
<evanjs> mmnope, it seems to expect nixos-package.json to just be there, it seems... :P
datakurre has joined #nixos
knupfer1 has joined #nixos
<evanjs> oh. derp. just the directory. it then writes the json for `hello` out into said directory
sangoma has quit [Quit: WeeChat 2.9]
knupfer has quit [Ping timeout: 256 seconds]
knupfer1 is now known as knupfer
dsg has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94571 → aspellDicts.pt_PT: 20070510-0 -> 20190329-1-0 → https://git.io/JJwlo
<{^_^}> [nixpkgs] @ehmry merged pull request #94250 → unbound: 1.10.1 -> 1.11.0 → https://git.io/JJ2TO
<{^_^}> [nixpkgs] @ehmry pushed commit from @r-ryantm to staging « unbound: 1.10.1 -> 1.11.0 »: https://git.io/JJwlK
knupfer1 has joined #nixos
knupfer has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @ehmry merged pull request #93971 → singularity: 3.2.1 -> 3.6.1 → https://git.io/JJ0yN
<{^_^}> [nixpkgs] @ehmry pushed commit from @jbedo to release-20.03 « singularity: 3.2.1 -> 3.6.1 »: https://git.io/JJwlP
knupfer has quit [Ping timeout: 264 seconds]
knupfer1 is now known as knupfer
wfranzini has joined #nixos
wfranzini has quit [Client Quit]
anderslu1dstedt has joined #nixos
knupfer has quit [Ping timeout: 256 seconds]
superherointj has quit [Quit: Leaving]
dermetfan has quit [Ping timeout: 256 seconds]
Mateon1 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94572 → chibi: 0.8 -> 0.9 → https://git.io/JJwlj
Mateon1 has joined #nixos
rardiol has quit [Ping timeout: 264 seconds]
orivej has quit [Ping timeout: 260 seconds]
rardiol has joined #nixos
maier has joined #nixos
teto has quit [Quit: WeeChat 2.9]
rardiol_ has joined #nixos
rardiol has quit [Read error: Connection reset by peer]
<infinisil> > chibi.meta.description
<{^_^}> "Small Footprint Scheme for use as a C Extension Language"
anderslundstedt has joined #nixos
<{^_^}> [nixpkgs] @asbachb opened pull request #94573 → openjdk: 8u242b08 -> 8u265b01 → https://git.io/JJw8Y
WRMilling has quit [Remote host closed the connection]
maier has quit [Ping timeout: 246 seconds]
anderslu1dstedt has quit [Ping timeout: 256 seconds]
o1lo01ol1o has joined #nixos
rardiol_ has quit [Ping timeout: 240 seconds]
drakonis has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed to master « oraclejdk8: update jce hash »: https://git.io/JJw88
<{^_^}> [nixpkgs] @Ma27 pushed to release-20.03 « oraclejdk8: update jce hash »: https://git.io/JJw8B
rardiol has joined #nixos
bbennett371 has joined #nixos
drakonis has joined #nixos
boxscape has joined #nixos
__monty__ has quit [Quit: leaving]
alexherbo2_ has quit [Ping timeout: 246 seconds]
bbennett371 has quit [Ping timeout: 272 seconds]
orivej has joined #nixos
alexherbo2 has quit [Ping timeout: 240 seconds]
andymandias has quit [Ping timeout: 265 seconds]
andymandias has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #94397 → exoscale-cli: 1.14.0 -> 1.15.0 → https://git.io/JJa1O
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JJw8N
<{^_^}> [nixpkgs] @c00w opened pull request #94574 → vend: Use nix-community fork of vend. → https://git.io/JJw4e
<lally> Hi, in getting the "current Nix store schema is version 10, but I only support 7", what versions of nix-store are relevant for each version? So I can follow the appropriate dump/restore instructions.
cmk_zzz has joined #nixos
afreak has joined #nixos
cmk_zzz_ has quit [Ping timeout: 256 seconds]
kraeXen has joined #nixos
Cale_ has joined #nixos
m0rphism has quit [Quit: WeeChat 2.7.1]
Rusty1 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
m0rphism has joined #nixos
<{^_^}> [nixpkgs] @zowoq opened pull request #94575 → .github/workflows/editorconfig.yml: separate fetch and check steps → https://git.io/JJwBm
muranic has joined #nixos
kraeXen has quit [Ping timeout: 240 seconds]
cole-h has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #94545 → picard-tools: 2.23.1 -> 2.23.3 → https://git.io/JJVxZ
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JJwBn
<muranic> Trying to get used to using configs for all of my stuff. This is for an always-on VPN. But when I close my laptop and wake it up again, I need to restart the systemd service to get connection. Any way to automate that? https://pastebin.com/v7GBYPW8
orivej_ has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
<ivan> mullvad has wireguard endpoints, you could just use those instead
<ivan> wireguard is connectionless and will retry after 5 seconds or so
<muranic> I couldn't really figure out a Wireguard configuration, especially with split tunneling.
jumper149 has quit [Quit: WeeChat 2.9]
growpotkin has joined #nixos
<wucke13> How does one override the linux_testing_bcachefs expression to build the latest version from master?
<aleph-> muranic: Always tailscale. There's a module for it. :) CC: danderson
shibboleth has quit [Quit: shibboleth]
Cale_ has quit [Quit: Leaving]
waleee-cl has quit [Quit: Connection closed for inactivity]
Cale has quit [Remote host closed the connection]
Cale has joined #nixos
<muranic> aleph- Seems like a centralized solution? Unless I'm misunderstanding it
<aleph-> That is correct
<aleph-> Split tunneling shouldn't be an issue. By default it won't route 0.0.0.0 over it
<ivan> generally the point of using mullvad is to have a 0.0.0.0 route though
kalbasit has joined #nixos
kalbasit_ has joined #nixos
<aleph-> Eh true. I saw the bit about split tunneling and assumed they didn't want to
kalbasit_ has quit [Remote host closed the connection]
o1lo01ol1o has quit [Remote host closed the connection]
kalbasit has quit [Remote host closed the connection]
<muranic> My wireguard config wasn't getting any connection so I eventually settled for OpenVPN. https://pastebin.com/WBu3MV65
kalbasit has joined #nixos
<notgne2> is there any way to make SystemD services defined in home-manager able to run without the user being logged in?
<kalbasit> How to use shell completions installed by installShellCompletion? For instance, how can I enable shell completions for golangci-lint?
<aleph-> Need to use loginctl iirc notgne2
orivej_ has quit [Ping timeout: 272 seconds]
<aleph-> Let me grab my weechat service config for the other bit
<bqv> aleph-: centralized and nonfree, ouch
o1lo01ol1o has joined #nixos
<bqv> notgne2: enable linger
<bqv> Can't be done declaratively, weirdly
<notgne2> just came across that now, is there a way to do it inside of nixos already? or should I do some activation script thingy
afreakk has joined #nixos
afreak has quit [Quit: leaving]
<bqv> It's a oneshot command, up to you if you wanna put it in activation or just do it
<clever> Thra11_: i moved the hydra to another domain, https://hydra.angeldsis.com/ but its not building very much armvl right now
<wucke13> I got somewhat forward on compiling bcachefs master. However, the build fails while patching scripts/Makefile.modinst . Is there a way to omit this patch?
o1lo01ol1o has quit [Ping timeout: 260 seconds]
doyougnu` has quit [Ping timeout: 260 seconds]
asymptotically has quit [Quit: Leaving]
o1lo01ol1o has joined #nixos
<kini> I have a package that needs two source archives to be downloaded, and one extracted inside a subdirectory of another. Is there an easy way to compose fetchurl to do this?
<simpson> kini: You can put `srcs` instead of `src`, and make it a list of sources. You'll have to write a bit of custom unpacking logic.
<simpson> kini: Here's an example from some code I wrote a couple weeks ago https://github.com/monte-language/typhon/blob/master/nix-support/capn.nix#L5-L13
o1lo01ol1o has quit [Ping timeout: 260 seconds]
tobiasBora2 has quit [Ping timeout: 240 seconds]
<wucke13> What is the name of the derivation which is built by nixos-rebuild?
<kini> simpson: Nice, thanks! I see an example in the nixpkgs manual as well when searching the page for "srcs". Also, long time no see :) Just popped back into the PSU IRC server but it looks relatively empty now, haha.
<wucke13> clever: How can I get a shell like with nix-shell --run-env for that?
stephaneyfx has quit [Quit: Leaving]
<simpson> kini: Huh, didn't realize it came back up. Maybe I'm banned~ No worries.
<clever> wucke13: what are you trying to do? (also, line 293)
tobiasBora2 has joined #nixos
<wucke13> clever: I want to build a nixos system with linux_testing_bcachefs being overriden to the latest version from master
<aleph-> bqv: I mean the client is OSS, the solo plan is free as in beer, and there is a OSS impl of the... auth server iirc
muranic has quit [Remote host closed the connection]
<wucke13> So far the build starts but fails again, because of the patch for scripts/Makefile.modinst
<clever> wucke13: then just run nix-build on the right linux attr, skip the whole nixos layer
<higemaru> is there a way to add a shell to `/etc/shells` in configuration.nix? I'm trying to set the shell for user git to git-shell.
<wucke13> clever: Ok, I will try
<clever> /home/clever/apps/nixpkgs/nixos/modules/programs/zsh/zsh.nix: environment.shells =
<clever> higemaru: try looking up that option in the docs
<higemaru> clever: ok, thanks!
<clever> higemaru: looks like most of the magic, is to add a shellPath attr to the derivation
<clever> > pkgs.bash.shellPath
<{^_^}> "/bin/bash"
<clever> thats how pkgs.bash magically knows which binary to run
<higemaru> clever: excellent :] looks like this is where I can change my $EDITOR as well.
<{^_^}> [nixpkgs] @7c6f434c merged pull request #94566 → xscreensaver: fix xscreensaver-demo build → https://git.io/JJwCR
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JJw0P
<wucke13> clever: How do I just remove the modinst-arg-list-too-long patch from the linux_testing_bcachefs build using overrides?
<clever> wucke13: removing things is a bit more tricky, often simpler to just clone nixpkgs, and edit the file
<higemaru> thanks clever!
<wucke13> I would prefer not to do that, if it is possible. Where is this patch even included?
maier has joined #nixos
<infinisil> wucke13: You should be able to `.override { kernelPatches = <only the patches you want>; }`
<wucke13> infinisil: Thanks! Where would I find the list of all other patches? Oviously I only want to remove those which are not needed any more
<infinisil> wucke13: linux patches are usually added in all-packages.nix
<infinisil> So `nix-instantiate --find-file nixpkgs/pkgs/top-level/all-packages.nix` should show you that file
<infinisil> In which you should be able to find `linux_testing_bcachefs` assigned
<{^_^}> #84687 (by jonringer, 16 weeks ago, merged): linuxPackages_testing_bcachefs.fwts-efi-runtime: remove failing patch
<infinisil> Seems that it was removed from master due to it failing
<wucke13> infinisil: Ah tahnk you, TDIL :)
maier has quit [Ping timeout: 256 seconds]
MichaelRaskin has quit [Quit: MichaelRaskin]
<{^_^}> [nixpkgs] @f4814 opened pull request #94578 → chromium: Add missing dependency on coreutils → https://git.io/JJwEL
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 240 seconds]
mbrgm_ is now known as mbrgm
cosimone has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @tfmoraes opened pull request #94579 → meshlab: 2020.03 -> 2020.07 → https://git.io/JJwEO
boxscape has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #94580 → bspwm: 0.9.9 -> 0.9.10 → https://git.io/JJwEz
abathur has quit [Ping timeout: 260 seconds]
philr has joined #nixos
bbennett371 has joined #nixos
<hexa-> warning: unable to download 'https://cache.nixos.org/nar/1k8b079g75ak9jfjn8qjafg2xi66442mzc8gqz03p9dnadpd400r.nar.xz': HTTP error 503; retrying in 315 ms
<hexa-> hrm
<hexa-> and it works again
bbennett371 has quit [Ping timeout: 260 seconds]
abathur has joined #nixos