worldofpeace changed the topic of #nixos to: NixOS stable: 19.09 \o/ https://discourse.nixos.org/t/nixos-19-09-release/4306/2 || 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/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2018 || For best support,
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74392 → freeradius: 3.0.19 -> 3.0.20 → https://git.io/JeXPC
scribbler has quit [Quit: scribbler]
<{^_^}> [nixpkgs] @jonringer merged pull request #74340 → pythonPackage.XlsxWriter: 1.2.1 -> 1.2.6 → https://git.io/JeXEu
<{^_^}> [nixpkgs] @jonringer pushed commit from @jluttine to master « pythonPackage.XlsxWriter: 1.2.1 -> 1.2.6 »: https://git.io/JeXPB
obadz has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74393 → ibus-engines.hangul: 1.5.1 -> 1.5.2 → https://git.io/JeXPz
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74394 → imlib2: 1.5.1 -> 1.6.0 → https://git.io/JeXPa
horner has joined #nixos
<{^_^}> [nixpkgs] @rouhannb opened pull request #74396 → zafiro-icons: 0.9 -> 1.0 → https://git.io/JeXPo
worldofpeace_ has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #74019 → pythonPackages.sunpy: 1.0.2 -> 1.0.6 → https://git.io/Jei7U
<{^_^}> [nixpkgs] @jonringer pushed to master « pythonPackages.sunpy: 1.0.2 -> 1.0.6 »: https://git.io/JeXPi
worldofpeace_ has joined #nixos
jfroche has quit [Quit: Trying new keys combinaisons: ALT F4]
waleee-cl has quit [Quit: Connection closed for inactivity]
jfroche has joined #nixos
xkapastel has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74397 → joker: 0.12.9 -> 0.13.0 → https://git.io/JeXPN
Synthetica has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @jtojnar opened pull request #74398 → xfce.xfce4-verve-plugin: 1.1.0 → 2.0.0 → https://git.io/JeXPh
worldofpeace_ has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @jtojnar closed pull request #74393 → ibus-engines.hangul: 1.5.1 -> 1.5.2 → https://git.io/JeXPz
leungbk has joined #nixos
selfsymmetric-mu has quit [Remote host closed the connection]
worldofpeace_ has joined #nixos
mexisme has joined #nixos
<{^_^}> [nixpkgs] @jonringer opened pull request #74399 → python3Packages.uproot: fix tests → https://git.io/JeXXk
jluttine has quit [Ping timeout: 240 seconds]
iqubic has joined #nixos
genesis has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #74400 → python3Packages.atomman: 1.2.8 -> 1.3.0 → https://git.io/JeXXL
doublex has quit [Ping timeout: 250 seconds]
drakonis has joined #nixos
<{^_^}> [nixpkgs] @jonringer opened pull request #74401 → Revert "python: imbalanced-learn: 0.4.3 -> 0.5.0" → https://git.io/JeXXO
mbrgm_ has joined #nixos
m0rphism has quit [Ping timeout: 240 seconds]
mbrgm has quit [Ping timeout: 240 seconds]
mbrgm_ is now known as mbrgm
abstracted has joined #nixos
abstracted has quit [Remote host closed the connection]
sam_d has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #74175 → eventstore: 5.0.2 -> 5.0.5 → https://git.io/JePzl
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « eventstore: 5.0.2 -> 5.0.5 »: https://git.io/JeXXR
orivej has joined #nixos
jfroche has quit [Ping timeout: 276 seconds]
noudle has quit []
selfsymmetric-mu has joined #nixos
<elvishjerricco> So I want to add a binary to initrd with the extraUtils stuff, but it has a path to another binary baked into it. The other binary is already in extraUtils, so I just need to replace the path in the binary.
<elvishjerricco> `sed -i 's|${foo}|$out| $out/bin/bar` didn't work though; it caused the binary to appear to ldd to be statically linked, so it's corrupted somehow.
sam_d has joined #nixos
xel has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74402 → gnome3.iagno: 3.34.2 -> 3.34.3 → https://git.io/JeXXa
<clever> elvishjerricco: the length of strings within the ELF file must not change
<clever> elvishjerricco: since it heavily uses offsets to point to things, and shrinking something will move everything after it
<clever> elvishjerricco: what binary is it? and if you dont patch, it should still work
<elvishjerricco> clever: Oh derp, yea I guess `$out` probably has different length than `${foo}`
<elvishjerricco> clever: I'm messing with doing a systemd-based initrd, so the binary is systemd, which hardcodes the path to the `mount` command. I'd rather not pull in the whole `utillinuxMinimal` derivation when just the binaries would do
<elvishjerricco> But also, references get nuked, so systemd thinks `mount` is at `/nix/store/eeeeeeeeeeee-util-linux`, which obviously doesn't work
<clever> ah
<elvishjerricco> clever: Not sure what to do now :P
<clever> yeah, thats a bit tricky
<clever> for testing, you could just disable nuking references and let it bloat a bit
<clever> and if things work, then look into patching systemd better
<elvishjerricco> Yea, I'm doing that now
<xel> I am attempting to use the rust library `minifb` which uses the rust library `x11-dl` to support X11. However, it ends up crashing when I try to create a window with the error message `opening library failed (libX11.so.6: cannot open shared object file: No such file or directory); opening library failed (libX11.so: cannot open shared object file: No such file or directory)`. Before attempting to run I have installed `xorg.libX11` and
<xel> added it to my shell with `nix-shell -p xorg.libX11`. Unfortunately the error message still happens after that, anything that I'm missing?
<clever> xel: try adding the directory for libX11.so to LD_LIBRARY_PATH ?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74403 → jython: 2.7.1 -> 2.7.2b2 → https://git.io/JeXXD
<xel> alright, i'll try that quickly
worldofpeace_ has quit [Ping timeout: 250 seconds]
horner has quit [Quit: zzZzZzZzZZZzzz…]
<elvishjerricco> clever: Sidenote, do you think a properly systemd-ified initrd for nixos might be upstreamable?
<clever> elvishjerricco: i'm a bit torn, on the one hand, our existing initrd works fine, and systemd may get in the way of some things, and just ugh more systemd infestations! lol
<clever> elvishjerricco: but on the other hand, that would open up things like `systemd-analyze blame` working at the initrd level
<xel> that desn't seem to work, though I'm not sure if I'm adding it correctly, is this right? `LD_LIBRARY_PATH=$LD_LIBRARY_PATH:iywp6iw365pm47x5g2jh0imv246f9i3d-libX11-1.6.8/lib cargo run`
<xel> oops nvm i see my mistake lol
<clever> yep, /nix/store is missing
<xel> yep now libXcursor is missing which means that worked!
worldofpeace_ has joined #nixos
<elvishjerricco> clever: Yea, plus parallelizing initrd stuff, allowing arbitrarily complex disk/lvm/luks/zfs graphs, and better plymouth support
<elvishjerricco> what would systemd get in the way of?
<elvishjerricco> but yea it could be a little annoying to have MOAR systemd :P
<clever> > lib.makeLibraryPath [ zlib ncurses ]
<{^_^}> "/nix/store/8wanm00dzn5vlajz1rznbf6dbj8931d6-zlib-1.2.11/lib:/nix/store/yfpiz0n3dykir9r2skbxlvcard9xp275-ncurses-6.1-20190112/lib"
<clever> xel: your shell.nix can generate a string for you
<xel> clever: new to nixos, what is shell.nix?
<clever> ,libraries xel
<{^_^}> xel: Don't install libraries through nix-env or systemPackages, use nix-shell instead. See https://nixos.wiki/wiki/FAQ/Libraries for details.
<xel> Thanks so much, I was considering switching off of NixOS even though I really prefer the way it works over anything else I've used
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74404 → intel-compute-runtime: 19.34.13959 -> 19.44.14658 → https://git.io/JeXX7
xel has quit [Quit: Leaving]
leungbk has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @jtojnar merged pull request #74402 → gnome3.iagno: 3.34.2 -> 3.34.3 → https://git.io/JeXXa
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JeXXd
steell has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74405 → ipset: 7.3 -> 7.4 → https://git.io/JeXXA
lucasvo has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74406 → jsoncpp: 1.9.1 -> 1.9.2 → https://git.io/JeXXx
johnw has quit [Ping timeout: 265 seconds]
johnw has joined #nixos
werner291 has quit [Remote host closed the connection]
mexisme has quit [Ping timeout: 265 seconds]
thc202 has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74407 → grive2: 0.5.0 -> 0.5.1 → https://git.io/JeX1T
wildtrees has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74408 → jimtcl: 0.78 -> 0.79 → https://git.io/JeX1I
nuncanada has quit [Quit: Leaving]
nuh^ has quit []
mexisme has joined #nixos
tofm^ has joined #nixos
<nh2> has anybody had any luck yet with `pkgsMusl.rustc`? I can't manage to build it
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74409 → gtkwave: 3.3.102 -> 3.3.103 → https://git.io/JeX13
<nh2> I tried to check how Alpine does it (https://git.alpinelinux.org/aports/tree/community/rust/APKBUILD?id=351e828ddb447e649acfc38775596d290f92cb05) but haven't figured out how to solve `Error loading shared library libgcc_s.so.1: No such file or directory` on NixOS yet
jluttine has joined #nixos
silver has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74410 → icewm: 1.6.0 -> 1.6.3 → https://git.io/JeX1n
h0m1 has quit [Ping timeout: 252 seconds]
h0m1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74411 → incrtcl: 4.0.4 -> 4.2.0 → https://git.io/JeX18
lucasvo has joined #nixos
shibboleth has quit [Remote host closed the connection]
seanparsons has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74412 → hmmer: 3.2.1 -> 3.3 → https://git.io/JeX1z
lucasvo has quit [Ping timeout: 268 seconds]
notgne2 has quit [Quit: ZNC 1.7.4 - https://znc.in]
notgne2 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74413 → janet: 1.4.0 -> 1.5.1 → https://git.io/JeX16
seanparsons has joined #nixos
drakonis has quit [Quit: WeeChat 2.6]
drakonis has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74414 → jalv: 1.6.2 -> 1.6.4 → https://git.io/JeX1M
doublex has joined #nixos
leungbk has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74415 → gthumb: 3.8.1 -> 3.8.2 → https://git.io/JeX1y
xel has joined #nixos
<{^_^}> [nixpkgs] @jonringer opened pull request #74416 → python3Packages.behave: use pytest_4 → https://git.io/JeX1Q
<nh2> I got some progress on the rust+musl, had to use `export LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH"` and update `bootstrap.nix` with the upstream binary
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74417 → jetty: 9.4.22.v20191022 -> 9.4.24.v20191120 → https://git.io/JeX1d
mexisme has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #74418 → python3Packages.imbalanced-learn: disable version tests → https://git.io/JeX1A
<{^_^}> [nixpkgs] @jonringer merged pull request #74329 → aws-sam-cli: 0.22.0 -> 0.34.0 → https://git.io/JeX8s
<{^_^}> [nixpkgs] @jonringer pushed 3 commits to master: https://git.io/JeX1p
nek0 has quit [Quit: ZNC 1.7.4 - https://znc.in]
nek0 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74401 → Revert "python: imbalanced-learn: 0.4.3 -> 0.5.0" → https://git.io/JeXXO
<{^_^}> [nixpkgs] @jonringer pushed to master « Revert "python: imbalanced-learn: 0.4.3 -> 0.5.0" »: https://git.io/JeXMe
<{^_^}> [nixpkgs] @jonringer merged pull request #74400 → python3Packages.atomman: 1.2.8 -> 1.3.0 → https://git.io/JeXXL
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.atomman: 1.2.8 -> 1.3.0 »: https://git.io/JeXMv
<{^_^}> [nixpkgs] @jonringer merged pull request #74399 → python3Packages.uproot: fix tests → https://git.io/JeXXk
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.uproot: fix tests »: https://git.io/JeXMf
<{^_^}> [nixpkgs] @jonringer merged pull request #74202 → python3Packages.papis: remove restrictive version bounds → https://git.io/JePoI
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.papis: remove restrictive version bounds »: https://git.io/JeXMJ
<nh2> dtz: do you know what would be the best way to add the musl variant of the binary rust compiler here? https://github.com/NixOS/nixpkgs/blob/e0907e2ae9ae541cb7c2257a7d0e095dab67463a/pkgs/development/compilers/rust/bootstrap.nix#L7
<nh2> dtz: I'm asking because `stdenv.hostPlatform.system == "x86_64-linux"` is true also for musl, should I add a flag?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74419 → highlight: 3.53 -> 3.54 → https://git.io/JeXMU
<nh2> dtz: or `isMusl` in this case?
NoctisLa1 has joined #nixos
NoctisLabs has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @jonringer closed pull request #72846 → kismet: 2016-07-R1 -> 2019-09-R1 → https://git.io/Je2hR
lovesegfault has joined #nixos
<lovesegfault> samueldr: Just to add to what I mentioned earlier: https://hydra.nixos.org/build/107458322
NoctisLabs has joined #nixos
<lovesegfault> the entire channel release has been waiting, for hours, on a 2min Aarch64 job
NoctisLa1 has quit [Read error: Connection reset by peer]
steell has quit [Ping timeout: 265 seconds]
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74420 → haproxy: 2.0.8 -> 2.0.9 → https://git.io/JeXMq
aw has joined #nixos
leungbk has quit [Ping timeout: 268 seconds]
spacefrogg has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74183 → fasm-bin: 1.73.16 -> 1.73.18 → https://git.io/JePgy
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « fasm-bin: 1.73.16 -> 1.73.18 »: https://git.io/JeXMY
xkapastel has quit [Quit: Connection closed for inactivity]
NoctisLa1 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74189 → auctex: 12.1 -> 12.2 → https://git.io/JePaw
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « auctex: 12.1 -> 12.2 »: https://git.io/JeXM3
NoctisLabs has quit [Ping timeout: 265 seconds]
lovesegfault has quit [Ping timeout: 250 seconds]
NoctisLabs has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74421 → intel-media-sdk: 19.3.0 -> 19.3.1 → https://git.io/JeXMG
NoctisLa1 has quit [Ping timeout: 240 seconds]
NoctisLabs has quit [Read error: Connection reset by peer]
NoctisLabs has joined #nixos
klntsky has quit [Ping timeout: 260 seconds]
abathur has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74422 → ibus-engines.typing-booster-unwrapped: 2.7.0 -> 2.7.2 → https://git.io/JeXMn
<{^_^}> [nixpkgs] @jonringer merged pull request #74416 → python3Packages.behave: use pytest_4 → https://git.io/JeX1Q
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.behave: use pytest_4 »: https://git.io/JeXMC
klntsky has joined #nixos
felixfoertsch has joined #nixos
NoctisLabs has quit [Read error: Connection reset by peer]
NoctisLabs has joined #nixos
leungbk has joined #nixos
felixfoertsch23 has quit [Ping timeout: 268 seconds]
NoctisLa1 has joined #nixos
NoctisLabs has quit [Ping timeout: 268 seconds]
lukash_|away has quit [Ping timeout: 245 seconds]
lukash_|away has joined #nixos
lovesegfault has joined #nixos
oscarvarto has joined #nixos
<oscarvarto> Hi! How could I install virtualbox-guest-additions for an Ubuntu guest?
<oscarvarto> When I choose that option from VirtualBox menu, it asks me to download it, then fails
<oscarvarto> :/
<oscarvarto> I am confused.
<oscarvarto> (I basically want the complete screen to be used)
<{^_^}> [nixpkgs] @jonringer merged pull request #74356 → gmime3: 3.2.3 -> 3.2.5 → https://git.io/JeXaN
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « gmime3: 3.2.3 -> 3.2.5 »: https://git.io/JeXMM
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74423 → gnome3.gvfs: 1.42.1 -> 1.42.2 → https://git.io/JeXMy
<{^_^}> [nixpkgs] @jonringer merged pull request #74309 → anydesk v5.4.1.->v5.5.0 → https://git.io/JeXGT
<{^_^}> [nixpkgs] @jonringer pushed commit from @mkg20001 to master « fix: anydesk »: https://git.io/JeXMS
oscarvarto has quit [Quit: oscarvarto]
leungbk has quit [Ping timeout: 245 seconds]
lukash_|away has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74424 → intel-graphics-compiler: 1.0.2714.1 -> 1.0.2878 → https://git.io/JeXM5
lukash_|away has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74425 → kubectx: 0.7.0 -> 0.7.1 → https://git.io/JeXMb
lovesegfault has quit [Ping timeout: 265 seconds]
justanotheruser has quit [Ping timeout: 276 seconds]
Chiliparrot has joined #nixos
lukash_|away has quit [Ping timeout: 250 seconds]
lukash_|away has joined #nixos
abathur has quit [Quit: abathur]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74426 → klaus: 1.4.0 -> 1.5.0 → https://git.io/JeXDe
endformationage has quit [Ping timeout: 268 seconds]
zebrag has quit [Ping timeout: 240 seconds]
zebrag has joined #nixos
leungbk has joined #nixos
lovesegfault has joined #nixos
lovesegfault has quit [Ping timeout: 250 seconds]
leungbk has quit [Quit: ERC (IRC client for Emacs 26.3)]
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74353 → gjs: 1.58.1 -> 1.58.2 → https://git.io/JeXaw
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « gjs: 1.58.1 -> 1.58.2 »: https://git.io/JeXD3
lukash_|away has quit [Ping timeout: 246 seconds]
lukash_|away has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74428 → keepassxc: 2.5.0 -> 2.5.1 → https://git.io/JeXDn
lukash_|away has quit [Ping timeout: 268 seconds]
lukash_|away has joined #nixos
justanotheruser has joined #nixos
obadz has joined #nixos
lukash_|away has quit [Ping timeout: 268 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
o1lo01ol1o has quit [Remote host closed the connection]
lukash_|away has joined #nixos
NoctisLa1 has quit [Quit: WeeChat 2.6]
drakonis has quit [Ping timeout: 250 seconds]
lukash_|away has quit [Ping timeout: 250 seconds]
lukash_|away has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74429 → kanboard: 1.2.11 -> 1.2.12 → https://git.io/JeXDa
superbaloo has quit [*.net *.split]
grw has quit [*.net *.split]
n1x_ has quit [*.net *.split]
pepesza has quit [*.net *.split]
glines has quit [*.net *.split]
greymalkin has quit [*.net *.split]
dweller has quit [*.net *.split]
edcragg has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
samueldr has quit [*.net *.split]
tarruda has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
rixed has quit [*.net *.split]
gambpang has quit [*.net *.split]
Guest86933 has quit [*.net *.split]
lvmond has quit [*.net *.split]
stew has quit [*.net *.split]
luigy has quit [*.net *.split]
ixiqem has quit [*.net *.split]
djanatyn has quit [*.net *.split]
boegel has quit [*.net *.split]
domogled has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74430 → kallisto: 0.46.0 -> 0.46.1 → https://git.io/JeXDr
superbaloo has joined #nixos
grw has joined #nixos
gambpang has joined #nixos
dweller has joined #nixos
pepesza has joined #nixos
edcragg has joined #nixos
bob_twinkles has joined #nixos
greymalkin has joined #nixos
samueldr has joined #nixos
n1x_ has joined #nixos
Guest86933 has joined #nixos
stew has joined #nixos
tarruda has joined #nixos
lvmond has joined #nixos
luigy has joined #nixos
rixed has joined #nixos
djanatyn has joined #nixos
glines has joined #nixos
Aleksejs has joined #nixos
ixiqem has joined #nixos
boegel has joined #nixos
Rusty1 has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74431 → kodelife: 0.8.6.101 -> 0.8.7.105 → https://git.io/JeXDK
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74432 → kotlin: 1.3.50 -> 1.3.60 → https://git.io/JeXDD
<{^_^}> [nixpkgs] @hedning opened pull request #74433 → gjs: 1.58.2 -> 1.58.3 → https://git.io/JeXDH
vk3wtf_ has quit [Quit: WeeChat 2.4]
o1lo01ol1o has joined #nixos
felixfoertsch has quit [Quit: ZNC 1.7.3 - https://znc.in]
felixfoertsch has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
o1lo01ol1o has quit [Ping timeout: 240 seconds]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @hedning merged pull request #74423 → gnome3.gvfs: 1.42.1 -> 1.42.2 → https://git.io/JeXMy
<{^_^}> [nixpkgs] @hedning pushed commit from @r-ryantm to master « gnome3.gvfs: 1.42.1 -> 1.42.2 (#74423) »: https://git.io/JeXDA
vk3wtf has joined #nixos
Chiliparrot has joined #nixos
NoctisLabs has joined #nixos
mexisme has joined #nixos
zupo has joined #nixos
domogled has quit [Quit: domogled]
<{^_^}> [nixpkgs] @jonringer merged pull request #74426 → klaus: 1.4.0 -> 1.5.0 → https://git.io/JeXDe
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « klaus: 1.4.0 -> 1.5.0 »: https://git.io/JeXyl
<{^_^}> [nixpkgs] @jonringer merged pull request #74418 → python3Packages.imbalanced-learn: disable version tests → https://git.io/JeX1A
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.imbalanced-learn: disable version tests »: https://git.io/JeXy8
<{^_^}> [nixpkgs] @jonringer merged pull request #74199 → python3Packages.gunicorn: add setuptools → https://git.io/JePr4
<{^_^}> [nixpkgs] @jonringer pushed to staging « python3Packages.gunicorn: add setuptools »: https://git.io/JeXy4
palo1 has joined #nixos
palo has quit [Ping timeout: 276 seconds]
palo1 is now known as palo
<{^_^}> [nixpkgs] @jonringer opened pull request #74434 → python3Packages.slicedimage: add tifffile dependency → https://git.io/JeXyw
<{^_^}> [nixpkgs] @jonringer opened pull request #74435 → python3Packages.hvplot: add colorcet dependency → https://git.io/JeXyr
remirol has joined #nixos
lorimer has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74436 → libidn2: 2.2.0 -> 2.3.0 → https://git.io/JeXyi
<{^_^}> [nixpkgs] @jonringer merged pull request #65745 → pythonPackages.send2trash: 1.4.2 -> 1.5.0 → https://git.io/fj9Eu
<{^_^}> [nixpkgs] @jonringer pushed to master « pythonPackages.send2trash: 1.4.2 -> 1.5.0 »: https://git.io/JeXyP
tofm^ has quit []
lukash_|away has quit [Ping timeout: 240 seconds]
lukash_|away has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74435 → python3Packages.hvplot: add colorcet dependency → https://git.io/JeXyr
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.hvplot: add colorcet dependency »: https://git.io/JeXyQ
<{^_^}> [nixpkgs] @jonringer merged pull request #74434 → python3Packages.slicedimage: add tifffile dependency → https://git.io/JeXyw
<{^_^}> [nixpkgs] @jonringer pushed to master « python3Packages.slicedimage: add tifffile dependency »: https://git.io/JeXyd
zupo has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @hedning merged pull request #74433 → gjs: 1.58.2 -> 1.58.3 → https://git.io/JeXDH
<{^_^}> [nixpkgs] @hedning pushed to master « gjs: 1.58.2 -> 1.58.3 (#74433) »: https://git.io/JeXyN
zupo has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #74177 → nixos/neard: init → https://git.io/JePzw
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JeXyx
<{^_^}> [nixpkgs] @jonringer pushed 265 commits to staging-next: https://git.io/JeXSU
zupo has quit [Ping timeout: 276 seconds]
zupo has joined #nixos
lovesegfault has quit [Quit: WeeChat 2.6]
rauno has quit [Ping timeout: 250 seconds]
rauno has joined #nixos
andi- has quit [Ping timeout: 245 seconds]
andi- has joined #nixos
knupfer has joined #nixos
rauno has quit [Ping timeout: 250 seconds]
vonfry has joined #nixos
misterwhatever has quit [Ping timeout: 245 seconds]
<vonfry> I try to write a drv for omnetpp. It needs qtbase's QtGlobal, which stays in qtbase.dev. I code in into nativeBuildInputs, but CFLAGS in configure phase doesn't contain that path, it only has qtbase/*/include. I want to have qtbase-dev/*/include.
knupfer has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @vbgl opened pull request #74437 → ocamlPackages.git: 2.1.0 → 2.1.2 → https://git.io/JeXS4
bahamas has joined #nixos
<{^_^}> [nixpkgs] @filalex77 opened pull request #74438 → topgrade: 3.4.0 -> 3.5.0 → https://git.io/JeXSR
pie_ has quit [Ping timeout: 245 seconds]
pie_ has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
zupo has quit [Client Quit]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74439 → lilv: 0.24.4 -> 0.24.6 → https://git.io/JeXSg
Heirlung has quit [Quit: ZNC - http://znc.in]
philr has joined #nixos
iqubic` has joined #nixos
Heirlung has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74440 → libratbag: 0.10 -> 0.11 → https://git.io/JeXS1
iqubic has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @d-goldin opened pull request #74441 → pythonPackages.bugseverywhere: removing, abandoned → https://git.io/JeXSM
xel has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74442 → libmbim: 1.20.0 -> 1.20.2 → https://git.io/JeXSD
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74443 → libdigidocpp: 3.14.0 -> 3.14.1 → https://git.io/JeXSS
<{^_^}> [nixpkgs] @d-goldin opened pull request #74444 → pythonPackages.ws4py: disabling for python2 → https://git.io/JeXS9
<{^_^}> [nixpkgs] @flokli merged pull request #74391 → bazel: 1.2.0 -> 1.2.1 → https://git.io/JeXi1
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JeXSH
justanotheruser has quit [Ping timeout: 245 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74445 → libisoburn: 1.5.0 -> 1.5.2 → https://git.io/JeXS5
<{^_^}> [nixpkgs] @mmahut merged pull request #74157 → cypress 3.5.0 -> 3.6.1 → https://git.io/JePRe
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JeXSA
Ariakenom has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74446 → lightdm_gtk_greeter: 2.0.6 -> 2.0.7 → https://git.io/JeX9v
Chiliparrot has joined #nixos
rauno has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74447 → libsolv: 0.7.7 -> 0.7.9 → https://git.io/JeX9U
bew has joined #nixos
<{^_^}> [nixpkgs] @marius851000 opened pull request #74448 → ytcc: 1.8.1 -> 1.8.2 → https://git.io/JeX9L
vonfry has quit [Ping timeout: 252 seconds]
vonfry has joined #nixos
alexherbo2 has joined #nixos
inkbottle has joined #nixos
vonfry has quit [Client Quit]
<bew> Hello! I'm trying to build https://github.com/juliosueiras/terraform-lsp with nix-build, but it always tries to use a folder /build for the build (looks like $NIX_BUILD_TOP defaults to this)
justanotheruser has joined #nixos
<bew> How can I configure this?
zebrag has quit [Ping timeout: 240 seconds]
<bew> (my nix install is as a user, on a centos distro)
<bew> (and I can't create the /build directory)
chloekek has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74449 → libfilezilla: 0.18.2 -> 0.19.1 → https://git.io/JeX9Z
zupo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74450 → libxl: 3.8.5 -> 3.8.7 → https://git.io/JeX9B
zupo has quit [Client Quit]
Jackneill has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74451 → libmaxminddb: 1.3.2 -> 1.4.2 → https://git.io/JeX9a
rurie has joined #nixos
gxt has joined #nixos
bew has quit [Ping timeout: 276 seconds]
cfricke has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74452 → live555: 2019.10.20 -> 2019.11.22 → https://git.io/JeX9b
Makaveli7 has joined #nixos
nexgen has joined #nixos
ng0 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74453 → libseccomp: 2.4.1 -> 2.4.2 → https://git.io/JeX9j
magnetophon has quit [Ping timeout: 268 seconds]
zuh0 has joined #nixos
logzet has joined #nixos
civodul has joined #nixos
zupo has joined #nixos
smatting has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
nexgen has quit [Ping timeout: 250 seconds]
bahamas has quit [Ping timeout: 276 seconds]
boolman has joined #nixos
<{^_^}> [nixpkgs] @Luis-Hebendanz closed pull request #68862 → pyocclient: init at 0.4 → https://git.io/JeXHY
<boolman> when is kernel 5.4 coming to the unstable channel?
<eyJhb> boolman: is it in nixpkgs?
<eyJhb> Else you can make a PR :D
<typetetris> Hi there is a nixcon already planned for 2020?
<boolman> eyJhb: ye its in the nixpkgs repo
<coderobe> how would i go about changing mountpoints in my nix config?
<eyJhb> boolman: no clue then... It is 8 days old by now - https://howoldis.herokuapp.com/
<eyJhb> But you could pick it yourself :D
bahamas has joined #nixos
<notgne2> coderobe: your hardware-configuration.nix should have some good clues
<eyJhb> ryantm: do you have some kind of automation for creating PRs etc.?
<ddima> ehmry: A bot running https://github.com/ryantm/nixpkgs-update
<ddima> err, sorry, eyJhb
<{^_^}> [nixpkgs] @sikmir opened pull request #74454 → xournalpp: 1.0.15 -> 1.0.16 → https://git.io/JeXHn
<eyJhb> ddima: perfect! That was what I guessed too, I just remember a comment from ryantm that somebody "complained" about it and he/she/what said he/she/what could just stop creating PRs :p
<ddima> because of the "noise"?
<eyJhb> Yeah :D
<ddima> I mean, one could debate whether #nixos is the best place for those given the volume vs. #nixos-dev or a dedicated channel, but it's also like not impossible to ignore messages based on regex or so.
<ddima> But it's nice to have them somewhere where most people working on nixpkgs see them, and this is one of those places.
smatting has quit [Ping timeout: 250 seconds]
thc202 has joined #nixos
<eyJhb> Yup, I think it is 100% fine for them here ;)
m0rphism has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #74390 → wireguard-tools: fix dependencies → https://git.io/JeXia
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXHK
craige has quit [Ping timeout: 246 seconds]
craige has joined #nixos
fendor has joined #nixos
vonfry has joined #nixos
joshuagl has joined #nixos
<coderobe> clever: so i've tried implementing the /-on-tmpfs deal, and it looks like i'll have to persist /etc at least
<coderobe> or can i fully configure /etc from the nix config, too?
<coderobe> i mean, it boots. but nobody can log in. presumably because /etc/passwd is not persisting :P
<{^_^}> [nixpkgs] @ehmry opened pull request #74455 → nim: 1.0.2 -> 1.0.4 → https://git.io/JeXH5
alexherbo2 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #74448 → ytcc: 1.8.1 -> 1.8.2 → https://git.io/JeX9L
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXHd
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74456 → multitail: 6.4.2 -> 6.5.0 → https://git.io/JeXHA
justanotheruser has quit [Ping timeout: 252 seconds]
stears has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #74454 → xournalpp: 1.0.15 -> 1.0.16 → https://git.io/JeXHn
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXHx
stears has joined #nixos
<typetetris> Woa .. how is an xserver version in nixos updated? I just found out about `tarballs.list` in `pkg/servers/x11/xorg`. Does it mean increase each version on each line by hand, run the generator and hope it all works together? Rinse and repeat?
<{^_^}> [nixpkgs] @Mic92 merged pull request #74441 → pythonPackages.bugseverywhere: removing, abandoned → https://git.io/JeXSM
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXHh
<clever> coderobe: users.users.foo.initialHashedPassword
<clever> coderobe: that defines the pw hash to use, when /etc/passwd was missing
<clever> coderobe: and you will want to set uid's for all users you define like that, or they will randomly change, causing you to not own your own home
<coderobe> i see
<coderobe> any other major gotchas i should be aware of?
<clever> nowhere for the journal to go, so when things do fail, you wont have logs of why
<coderobe> oh that's fine
FRidh has joined #nixos
<clever> cant think of any others at the moment
<clever> and /etc/nixos is optional, you can use -I nixos-config=/path/to/configuration.nix when you nixos-rebuild, to make it load a different path
<clever> or use nixops to build it remotely
nikivi has quit [Write error: Connection reset by peer]
Nikita has joined #nixos
<notgne2> /etc/passwd is generated by stage2 of the boot process iirc, you have to merge a rejected PR to have it exist statically
<{^_^}> [nixpkgs] @Mic92 pushed commit from @iclanzan to release-19.09 « Add iptables to wireguard-tools »: https://git.io/JeXQJ
Nikita is now known as Guest92895
Guest92895 is now known as nikivi
<clever> notgne2: and users.users.foo.initialHashedPassword can be used to deal with things being missing on that first generation
<{^_^}> [nixpkgs] @Mic92 merged pull request #74449 → libfilezilla: 0.18.2 -> 0.19.1 → https://git.io/JeX9Z
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXQk
smatting has joined #nixos
<coderobe> how do i go about editing other config files in this setup? is there some generic interface in configuration.nix that allows me to modify arbitrary config files?
<evils> anyone know how to do architecture dependent depedendencies right? if ((oceSupport || withOCC) && stdenv.isAarch64) then withOCC = true;
<evils> woeps, that's not a paste link xD https://paste.ee/p/YQG51
<{^_^}> [nixpkgs] @Mic92 merged pull request #74432 → kotlin: 1.3.50 -> 1.3.60 → https://git.io/JeXDD
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXQt
<clever> coderobe: environment.etc is used to generate all other files in /etc/
<evils> OCE fails to build on aarch64, but OCC is a viable alternative (i assume putting OCE in the inputs and not using it on aarch64 will not cause my build to fail)
<coderobe> ah
<eyJhb> I should really do tmpfs for / as well
<clever> evils: anything present in buildInputs is required to build first, so just having it there and not using will still depend on it
<evils> clever: ah, thanks, know of a package doing this correctly?
<clever> coderobe: that reminds me, be aware of any services storing data to /var and such
<clever> evils: just use an if statement to conditionally add it to buildInputs, or lib.optional
<clever> coderobe: things like postgresql and such
drakonis has joined #nixos
<evils> clever: doh, misread, yea i'm not passing it as a buildInput
<evils> clever: but i'm kinda stuck on how to set the variable i use switch that optional
justanotheruser has joined #nixos
<eyJhb> There is something "optional" some place
<clever> > lib.optional true 42
<{^_^}> [ 42 ]
<clever> > lib.optional false 42
<{^_^}> [ ]
<eyJhb> ^^
<eyJhb> If only I could remember stuff
<evils> clever: if that's for my benefit, i'm using the variable right, the issue isn't the buildInput part, it's this https://paste.ee/p/YQG51
<clever> evils: ah, if statements dont work like that
<evils> i need to override the bool depending on the architecture and i don't know how to do it
<clever> evils: they take the form of `if condition then expr1 else expr2`
<evils> clever: yea i know xD but this illustrates the behaviour i'm looking for
<clever> let withOCC = (oceSupport || withOCC) && stdenv.isAarch64;
Chiliparrot has joined #nixos
<clever> && already returns a bool
<clever> oceSupport = ! stdenv.isAarch64
<coderobe> hrm, wonder what the sanest way of persisting networkmanager wifi network configs would be
<coderobe> just mounting storage to the config dirs?
<eyJhb> coderobe: I think gchristensen have a submount inside /etc that persists
<clever> coderobe: i think you can use environment.etc to generate a symlink to a more persistent dir
<coderobe> eyJhb: for the entirety of /etc?
<clever> hmmm, maybe a systemd prestart or activationScript, if that cant
<eyJhb> coderobe: Nope, only WiFi related stuff. But I am not 100% sure, I just seem to remember that wast he way
<eyJhb> That might be possible as well! Not sure, and gchristensen is prop not awake yet
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74457 → metabase: 0.33.2 -> 0.33.6 → https://git.io/JeXQG
<xwvvvvwx> Very curious about this tmpfs-/ thing. What's the performance like? Do you need a really big swap partition? Does your RAM get filled up with infrequently accessed files?
<clever> gchristensen's variant is using a normal zfs fs for /, but wipes it on bootup, so no ram costs
<evils> clever: like this? https://paste.ee/p/EX6Ph, gets me an infite recursion
<eyJhb> So etc. to symlink it
<eyJhb> That's true
<clever> withOCC = ((withOCC || oceSupport) && stdenv.isAarch64);
<clever> eyJhb: withOCC depends on withOCC
<clever> need to rename one of them
<evils> but it in fact depends on it xD
<clever> it cant depend on itself
<evils> damn functional languages and their logic :P
<clever> eyJhb: ah, thats even simpler then i thought
<clever> eyJhb: i think the way that works, is your supposed to source = ./foo.txt, nix will then copy that to the store, and replace it with "/nix/store/hash-foo.txt", and then nixos will make a symlink to the store
<clever> eyJhb: but if you just shove a quoted path in, that path will stay as-is, and it will symlink something impure!
<xwvvvvwx> ccccccjddncunfjgduftgnlugkneknggdvkgkrjlbtrd
<clever> xwvvvvwx: i hope thats a OTP
<xwvvvvwx> yes
<xwvvvvwx> so sick of this happening
<eyJhb> clever: but that is the point of doing that right? Symlinking something impusre
<eyJhb> impure*
<xwvvvvwx> disabling yubiotp as we speak :D
<clever> eyJhb: exactly
<eyJhb> I should really do something like.. gchristensen I think then.. But that means I have to reinstall with ZFS as well
<eyJhb> Doing it in /../home would be nice as well
<clever> users.users.root.symlinks, oh, thats new to me
<clever> coderobe: and may be of use to you, if you want state in /root to persist
<clever> but i dont see it in the nixos docs...
<coderobe> hmmm
<evils> clever++
<{^_^}> clever's karma got increased to 258
<notgne2> how do I debug `nm-online -s` not succeeding (but `nm-online` working fine)
<eyJhb> If NixOS ever gets a karma shop then clever will be rich!
<coderobe> i'll probably use gchristensen's approach
<coderobe> though i'll need to figure out some more paths, like kde config etc
<notgne2> KDE config is really annoying honestly
<clever> oh, thats why its not in the docs!
<notgne2> I never figured out a good way of modifying half of the values in it (for home-manager support) and it breaks in other simpler ways too
sigmundv has joined #nixos
<notgne2> last time I used it, opening desktop settings would crash, and I couldn't find what config file could possibly be causing it amongst the 50 or so it creates
<notgne2> using a new user account of course worked fine
<pbb> what could be the cause for /dev/disk/by-partuuid being empty even though blkid /dev/sd* can find lots of partuuids??
<clever> pbb: i think ive only seen that shortly after re-formatting, udev only creates the symlinks when the device is first inserted
<pbb> it happens after a reboot in initrd and btrfs can not find the raid members because of that
<pbb> very weird things going on
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74458 → mkp224o: 1.3.0 -> 1.4.0 → https://git.io/JeXQw
<clever> pbb: the initrd may have a more limited udev that cant create it, can you configure btrfs to just look in /dev/ ?
<pbb> hmm I don't see a way to configure it
<notgne2> I'm getting "dhclient.c:2442: Failed to send 300 byte long packet over eth1 interface.", which is weird given eth1 is down (intentionally), how can I make networkmanager stop trying to use this interface
<notgne2> its of course mentioned nowhere in my config
<clever> notgne2: it probably auto-detects all interfaces, i just use plain dhcpcd and wpa_supplicant
<pbb> I guess I should try to run "btrfs device scan" before mounting
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74459 → mda_lv2: 1.2.2 -> 1.2.4 → https://git.io/JeXQX
<notgne2> clever: on this machine it's hardcoded in with ipv4.addresses etc
<notgne2> is networkmanager even required for this?
<clever> notgne2: id say ditch network manager as fast as you can :P
<clever> notgne2: something ive been playing with lately is bonding, to deal with handover
<typetetris> Is there a script to create a "channel" from a nixpkgs git repo working dir? (i.e. making the directory containing the nixexprs.tar.xz and binary-cache-url ?)
<clever> notgne2: this will link the wifi and wired interfaces, and configure it to use whichever is up, but prefer the wired, and use the same mac for both
<clever> notgne2: so i can just unplug the ethernet, and it will seamlessly switch to wifi, without changing IP's or dropping tcp conns
<Izorkin> etu: aanderse: please check PR #73908
<{^_^}> https://github.com/NixOS/nixpkgs/pull/73908 (by Izorkin, 6 days ago, open): Update php packages
<clever> and if i plug the ethernet back in, the speed goes up
bahamas has quit [Ping timeout: 240 seconds]
xkapastel has joined #nixos
<eyJhb> clever: sweet setup
<clever> if you dont force the mac's, then bonding picks the mac of one of the IF's
<clever> i think the wired
<notgne2> clever: I'll probably use that on a few of my home machines
<clever> but that caused my IP to change, and i didnt have access to the router at the time to fix dhcp config
<clever> you can likely just drop the mac stuff and it will still work
<eyJhb> Would be nice to randomly change MAC on each reboot
<eyJhb> At least at Uni
<notgne2> also I figured out my issue on this server, it was having networkmanager enabled
<notgne2> it's not needed for how I configured the network anyway
<notgne2> and having it enabled and unused makes it equally as likely to break things as when you actually are using it
justanotheruser has quit [Ping timeout: 265 seconds]
chloekek has quit [Ping timeout: 250 seconds]
<clever> eyJhb: i know one uni, that used full WPA-EAP/RSN for auth, you had to use a username and password to connect to the wifi!
justanotheruser has joined #nixos
<Yaniel> my uni does that
<eyJhb> clever: Ehmmm... Is taht bad? That is how EDUROAM works :p
<clever> eyJhb: not really bad, just rare
<Yaniel> they used to have their own system that works that way + eduroam, now they moved to just eduroam
<clever> thats the best way to setup wifi where you can disallow one user without having to tell everybody the new pw, on a daily basis
<clever> but nobody uses it
<eyJhb> I have to configure my laptop to use that right now...
<clever> look at the mess hotels have, lol
bahamas has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74460 → nanoflann: 1.3.0 -> 1.3.1 → https://git.io/JeXQb
<eyJhb> Yaniel: sounds suspicous a lot like AAU
<clever> bloody open wifi and a captive portal
<clever> somebody teach a hotel how to do proper wpa auth!
<clever> https://github.com/NixOS/nixpkgs/pull/73299 also, wpa_supplicant fails to auto-detect your wifi card, if bonding is loaded at all
<{^_^}> #73299 (by toonn, 2 weeks ago, merged): nixos/wpa_supplicant: fix unit-start script
<clever> its fixed in master, and a work-around is in the PR
<notgne2> what's a nice way of getting the git rev a nix channel is following
<Yaniel> there is a nixpkgs-channels repo
vonfry has quit [Ping timeout: 246 seconds]
<eyJhb> Yaniel: was I correct ? :D
<Yaniel> eyJhb: no
<notgne2> my idea was for my morph network to use the nixpkgs rev specified in a txt file, with a script to update it based off whatever version I want the network to follow
<eyJhb> Damn. Btw. what do people use for connecting to new networks? E.g. nmtui-connect does not support the auth used on eduroam
<notgne2> idea is so cross machine you can always deploy without worrying about channels, and shouldn't have to manaully update the rev ever
<notgne2> if I used the nixpkgs-channels repo I'd still need to specify a rev or a sha256 to satisfy builtins.fetchGit
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74461 → memtest86-efi: 8.1 -> 8.2 → https://git.io/JeXQh
bahamas has quit [Ping timeout: 240 seconds]
vonfry has joined #nixos
<clever> notgne2: builtins.fetchTarball doesnt need a sha256, and you can use branch names in place of revs, there is also the channel: alias
<clever> > builtins.fetchTarball channel:nixos-unstable
<{^_^}> access to URI 'channel:nixos-unstable' is forbidden in restricted mode
<clever> that is a valid expression
<notgne2> using a branch name as rev makes it ask for a sha256 iirc
<clever> fetchTarball is impure, and can work without a sha256
<Yaniel> eyJhb: arch wiki suggests creating a profile manually
<eyJhb> Yeah, but it is always hell finding the correct optoins etc.
<eyJhb> options*
argent0 has joined #nixos
<Yaniel> fortunately you don't have to redo that all the time
<eyJhb> Yeah
<eyJhb> I found I had something like nm-connetion-editor
<eyJhb> Worked great :D
iyzsong has joined #nixos
rnhmjoj has quit [Changing host]
rnhmjoj has joined #nixos
rnhmjoj has joined #nixos
bahamas has joined #nixos
is_null has joined #nixos
vonfry has quit [Ping timeout: 240 seconds]
vonfry has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74462 → marvin: 19.1.0 -> 19.23.0 → https://git.io/JeX7J
<shyim> how can i skip patchShebang for my pkg?
chloekek has joined #nixos
drakonis has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #74181 → jellyfin: 10.4.1 -> 10.4.2 → https://git.io/JePg4
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeX7I
<shyim> @clever, thanks <3
fling has quit [Ping timeout: 250 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @adisbladis merged pull request #74145 → xorg.xorgserver: 1.20.5 -> 1.20.6 → https://git.io/JeP8z
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/JeX7L
vonfry has quit [Ping timeout: 268 seconds]
vonfry has joined #nixos
<pbb> I don't get this: I see "btrfs device scan" in my stage 1 script. When I boot, it fails to mount the rootfs. When I drop into the initrd shell, run btrfs device scan and repeat the exact mount command that failed, it works
<clever> pbb: it might be a timing thing, you type slower, so the devices appeared
<pbb> hmm
<clever> pbb: try adding a sleep to your initrd script?
<pbb> but the "btrfs device scan" is in postDeviceCommands
<pbb> I will try
<{^_^}> [nixpkgs] @adisbladis pushed to release-19.09 « pythonPackages.pipBuildHook: Add wheel dependency »: https://git.io/JeX73
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74463 → mkvtoolnix: 38.0.0 -> 40.0.0 → https://git.io/JeX7G
<pbb> clever: adding a sleep before the btrfs device scan sure fixes it
<pbb> clever++
<{^_^}> clever's karma got increased to 259
<pbb> but this should not happen in the first place, right?
<pbb> should I open a bug report?
<clever> pbb: yeah, sounds like it needs a bug report
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @Mic92 opened pull request #74464 → perf: build with python3 → https://git.io/JeX7n
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74465 → micronaut: 1.2.5 -> 1.2.6 → https://git.io/JeX7c
vonfry has quit [Quit: WeeChat 2.6]
<clever> pbb: the normal fs stuff, will loop until the device exists
<clever> pbb: but btrfs is complicated by needing multiple devices
<clever> pbb: zfs just tries to import in a loop until it works or hits a timeout
alexherbo21 has joined #nixos
<pbb> ok maybe that should also be added for btrfs
hervyqa has joined #nixos
<pbb> like, re-running btrfs device scan and trying to mount again, if the mount failed
alexherbo2 has quit [Ping timeout: 265 seconds]
<pbb> I hope systemd in the initramfs will make these things a bit nicer
<philipp[m]> I'm in a room #freenode_#nixos:matrix.org, that seems to have lost connection to freenode. Is there anything that can be done?
<clever> philipp[m]: you appear to be on irc to me
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74466 → mle: 1.4.1 -> 1.4.2 → https://git.io/JeX7W
leotaku has quit [Ping timeout: 268 seconds]
hervyqa has quit [Quit: hervyqa]
fendor has quit [Read error: Connection reset by peer]
hervyqa has joined #nixos
<{^_^}> [nixpkgs] @Kiwi opened pull request #74467 → simplenote: 1.9.1 -> 1.11.0 → https://git.io/JeX7a
bahamas has quit [Quit: leaving]
<{^_^}> [nixpkgs] @WilliButz merged pull request #74419 → highlight: 3.53 -> 3.54 → https://git.io/JeXMU
<{^_^}> [nixpkgs] @WilliButz pushed 2 commits to master: https://git.io/JeX7V
<{^_^}> [nixpkgs] @WilliButz merged pull request #74392 → freeradius: 3.0.19 -> 3.0.20 → https://git.io/JeXPC
<{^_^}> [nixpkgs] @WilliButz pushed 2 commits to master: https://git.io/JeX7w
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74469 → man: 2.8.7 -> 2.9.0 → https://git.io/JeX7i
lordcirth__ has quit [Remote host closed the connection]
lordcirth__ has joined #nixos
sondr3 has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout merged pull request #74461 → memtest86-efi: 8.1 -> 8.2 → https://git.io/JeXQh
<{^_^}> [nixpkgs] @cdepillabout pushed 2 commits to master: https://git.io/JeX7S
<{^_^}> [nixpkgs] @Mic92 opened pull request #74470 → Git python3 → https://git.io/JeX79
leotaku has joined #nixos
Chiliparrot has joined #nixos
lejonet1 is now known as lejonet
<{^_^}> [nixpkgs] @Kiwi opened pull request #74472 → wire-desktop: fix a segfault when changing profile picture → https://git.io/JeX7b
h0m1 has quit [Ping timeout: 276 seconds]
h0m1 has joined #nixos
rauno has quit [Ping timeout: 268 seconds]
h0m1 has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74473 → mruby: 2.0.1 -> 2.1.0 → https://git.io/JeX5e
gekketinus has joined #nixos
h0m1 has joined #nixos
dansho has joined #nixos
<{^_^}> [nixpkgs] @jtojnar closed pull request #71916 → slimThemes: fix version → https://git.io/Je0P7
__monty__ has joined #nixos
<ij> if I have docker container defined in nix, how should I best deploy it with nixops, so I can run a systemctl service with podman? if I just use the store path of the image, it will get transported automatically, but what about importing? how do I import it once?
horner has joined #nixos
hervyqa has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @WilliButz opened pull request #74474 → grafana: 6.4.5 -> 6.5.1 → https://git.io/JeX5I
<{^_^}> [nixpkgs] @Mic92 opened pull request #74475 → pcsclite: build with python3 → https://git.io/JeX5L
<{^_^}> [nixpkgs] @Mic92 opened pull request #74476 → libftdi1: build with python3 support → https://git.io/JeX5t
dansho has quit [Quit: Leaving]
Neo-- has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74477 → mpc_cli: 0.31 -> 0.33 → https://git.io/JeX5B
misterwhatever has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
andymandias_ has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @malbarbo opened pull request #74478 → libreoffice: add portuguese language support → https://git.io/JeX52
<{^_^}> [nixpkgs] @davidak closed pull request #71924 → slimThemes: use sane name and description → https://git.io/Je0XH
andymandias has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #74359 → libappindicator: remove python2 → https://git.io/JeXVq
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JeX5a
<deni> Anybody here uses dockerTools to produce docker images with nix? I'm having an issue where I have `let docker-entrypoint = writeScript "entrypoint.sh" '' .... ''` and then using it in dockerTools.buildLayeredImage in as Entrypoint = [ docker-entrypoint ] but getting the error "cannot coerce a function to a string"? Does anybody have any insight as to what is actually going on?
<{^_^}> [nixpkgs] @smaret opened pull request #74479 → pythonPackages.astroquery: fix build → https://git.io/JeX5r
misterwhatever has quit [Remote host closed the connection]
lux4 has quit [Quit: WeeChat 2.4]
<tilpner> deni: I don't use Docker, but you might want to paste the entire thing so we can syntax-check it
sweep has joined #nixos
sweep has quit [Changing host]
sweep has joined #nixos
<tilpner> Are you setting Entrypoint in config?
sweep is now known as genesis
<ij> deni, you're building a dockre image and those configs get directly baked into the container's config file. Once you actually compile it, you might have more problems because that config isn't checked rigorously when baking, only when docker uses.
<ij> but you haven't gotten that far yet
gekketinus has quit [Quit: Leaving]
<ij> deni, pasting the nix script would be nice indeed
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74480 → minder: 1.5.0 -> 1.5.1 → https://git.io/JeX5Q
fling has joined #nixos
vxid has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74481 → moosefs: 3.0.105 -> 3.0.107 → https://git.io/JeX5F
<vxid> Hi everyone. Quick question: the program gpg-preset-passphrase provided by gnupg is not available in my path by default. How can I call it in the shell or a script without messing with nix or supplying the entire path to the executable?
<__monty__> Anyone else having trouble building GHC 8.6.5? (I think I'm building 32bit ghc on a 64bit remote builder.)
<tilpner> vxid: Good question, for some reason it's in libexec instead of bin
silver has joined #nixos
<vxid> @tilpner: Yes, it seems to be "standard" for other distributions as well.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74482 → mtprotoproxy: 1.0.7 -> 1.0.8 → https://git.io/JeXdk
<tilpner> vxid: The manpage calls it "a utility to seed the internal cache", which might explain why it's been hidden away
werner291 has joined #nixos
__monty__ has quit [Quit: rebootying]
<tilpner> Unfortunately I don't see a good way to call it interactively without either Nix fiddling or a script that gets you the full path
<tilpner> Neither of those are terrible, so you'll have to relax your constraints
lpsmith has quit [Quit: ZNC 1.6.5 - http://znc.in]
<{^_^}> [nixpkgs] @globin merged pull request #74474 → grafana: 6.4.5 -> 6.5.1 → https://git.io/JeX5I
<{^_^}> [nixpkgs] @globin pushed 3 commits to master: https://git.io/JeXdL
lpsmith has joined #nixos
<vxid> Thanks. I'm a Nix beginner, so how can I get the absolute path of a package in nix, kind of like 'which'?
<tilpner> nix-build --no-out-link '<nixpkgs>' -A gnupg
<tilpner> But I have something better
<tilpner> runCommand "gpg-preset-passphrase" {} "mkdir -p $out/bin; ln -s ${gnupg.out}/libexec/gpg-preset-passphrase $out/bin/"
<tilpner> If you install that expression, gpg-preset-passphrase is exposed. Just make sure that gnupg is the package you're using
<vxid> So this symlinks gpg-preset-passphrase in the bin directory of my gnupg directory? Awesome
<tilpner> No, it links it to its own bin directory
<tilpner> Your existing gnupg bin directory is not modified
<vxid> Oh, ok. Where should I put this expression in my configuration.nix?
<tilpner> Whereever you installed gnupg
<tilpner> E.g. users.users.vxid.packages = [ (pkgs.runCommand ...) ];
<tilpner> systemPackages will work too
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @0x4A6F opened pull request #74483 → routinator: 0.6.2 -> 0.6.3 → https://git.io/JeXdZ
<tilpner> One of these days I'll remember
<tilpner> ... install(1) syntax
<tilpner> (Oh, doesn't support symlinks?)
<{^_^}> [nixpkgs] @malbarbo opened pull request #74484 → curl: add option to use wolfssl backend → https://git.io/JeXdc
<{^_^}> [nix] @edolstra pushed to master « Remove builtins.valueSize »: https://git.io/JeXdC
mexisme has quit [Ping timeout: 250 seconds]
<vxid> Thanks a lot, I am going to try this right away.
<vxid> I definitely need to take the time to properly learn the nix language, but I admit it seems a little daunting
<tilpner> It does, and using NixOS sort-of forces you to go all-in on Nix
iqubic` has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jtojnar pushed to master « libmypaint: use Python 3 »: https://git.io/JeXdl
<tilpner> Before sticking with NixOS, I tried it twice (?) while keeping parts of my setup out of Nix land, and it was not fun
talqu has joined #nixos
psyanticy has joined #nixos
Ariakenom has quit [Quit: WeeChat 2.6]
<vxid> tilpner: Including shell and text editor config files? I'd like to keep those out of Nix for portability reasons.
<tilpner> No, I was trying to make NixOS accept externally managed systemd services
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
<sondr3> yikes, that does indeed not sound fun
<tilpner> My shell config is in its own repo, and linked into place by Nix, but that is not required
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
<tilpner> My editor config is a mess we don't talk about
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
Ariakenom has joined #nixos
<vxid> Ok. I read that it was possible with something like home_manager but I don't know how mature this project is.
<{^_^}> [nixpkgs] @malbarbo opened pull request #74485 → e2fsprogs: allow static build → https://git.io/JeXdz
ssss has joined #nixos
<sondr3> I use home-manager for all my dotfiles and haven't had any issues whatsoever with it
<etu> vxid: Home manager is great :)
m0rphism1 has quit [Ping timeout: 268 seconds]
ssss is now known as foxs
Ariakenom has quit [Ping timeout: 252 seconds]
<vxid> sondr3: And are you using NixOS on all your devices? The all-united-under-Nix concept is appealing to me but I sometimes need to ssh to a box and i like being able to copy my small tmux/bash/vim whatever config file with me
__monty__ has joined #nixos
<sondr3> vxid: yeah, I'm using NixOS on my laptop and desktop, but I have a rPi running Raspbian and two servers running Debian. I just rsync the created configuration to those machines if I need them there
cfricke has quit [Quit: WeeChat 2.6]
GerdFlaig[m] has quit [Remote host closed the connection]
LinuXit has quit [Remote host closed the connection]
ZD[m] has quit [Remote host closed the connection]
wildtrees[m] has quit [Remote host closed the connection]
talvdav[m] has quit [Remote host closed the connection]
aymenstudios[m] has quit [Write error: Connection reset by peer]
aterius has quit [Read error: Connection reset by peer]
marijan[m] has quit [Read error: Connection reset by peer]
olejorgenb[m] has quit [Read error: Connection reset by peer]
david-sawatzke[m has quit [Read error: Connection reset by peer]
hackeryarn[m] has quit [Remote host closed the connection]
st3r4g has quit [Read error: Connection reset by peer]
cornu has quit [Write error: Connection reset by peer]
snupples[m] has quit [Read error: Connection reset by peer]
NickHu has quit [Write error: Connection reset by peer]
ndarwincorn has quit [Remote host closed the connection]
joepie91[m] has quit [Write error: Connection reset by peer]
kaychaks[m] has quit [Read error: Connection reset by peer]
nh2[m] has quit [Remote host closed the connection]
veleiro has quit [Read error: Connection reset by peer]
zummed[m] has quit [Remote host closed the connection]
MayeulC_backup has quit [Write error: Connection reset by peer]
bricewge has quit [Read error: Connection reset by peer]
atopuzov[m] has quit [Read error: Connection reset by peer]
roberth has quit [Write error: Connection reset by peer]
ronny has quit [Read error: Connection reset by peer]
icetan has quit [Read error: Connection reset by peer]
aanderse has quit [Read error: Connection reset by peer]
imj[m] has quit [Read error: Connection reset by peer]
am3on[m] has quit [Read error: Connection reset by peer]
bendlas has quit [Remote host closed the connection]
MilkManzJourDadd has quit [Read error: Connection reset by peer]
rycee has quit [Read error: Connection reset by peer]
codyopel has quit [Read error: Connection reset by peer]
li_matrix has quit [Read error: Connection reset by peer]
phyfey[m] has quit [Read error: Connection reset by peer]
balsoft has quit [Read error: Connection reset by peer]
escaP[m] has quit [Read error: Connection reset by peer]
Ox4A6F has quit [Read error: Connection reset by peer]
EuAndreh[m] has quit [Read error: Connection reset by peer]
alex[m]11 has quit [Read error: Connection reset by peer]
truby has quit [Read error: Connection reset by peer]
layus[m] has quit [Read error: Connection reset by peer]
craige[m] has quit [Read error: Connection reset by peer]
manveru[m] has quit [Read error: Connection reset by peer]
das-g[m] has quit [Read error: Connection reset by peer]
copy` has quit [Read error: Connection reset by peer]
bkl[m] has quit [Read error: Connection reset by peer]
zurdo has quit [Read error: Connection reset by peer]
thequux[m] has quit [Read error: Connection reset by peer]
tokudan[m] has quit [Read error: Connection reset by peer]
chreekat[m] has quit [Read error: Connection reset by peer]
sputny[m] has quit [Remote host closed the connection]
fasd has quit [Remote host closed the connection]
hpfr[m] has quit [Remote host closed the connection]
siraben has quit [Write error: Connection reset by peer]
shizonic has quit [Write error: Connection reset by peer]
spacekitteh[m] has quit [Write error: Connection reset by peer]
DanP[m] has quit [Write error: Connection reset by peer]
thefloweringash has quit [Read error: Connection reset by peer]
harkenedraven has quit [Write error: Connection reset by peer]
jtojnar has quit [Write error: Connection reset by peer]
Smith[m] has quit [Write error: Connection reset by peer]
MarkOtaris has quit [Write error: Connection reset by peer]
jwaksbaum[m] has quit [Write error: Connection reset by peer]
corpix[m] has quit [Write error: Connection reset by peer]
pinage404[m] has quit [Write error: Connection reset by peer]
eddyb has quit [Write error: Connection reset by peer]
peel1 has quit [Read error: Connection reset by peer]
abbafei[m] has quit [Remote host closed the connection]
bohan[m] has quit [Remote host closed the connection]
fpletz[m] has quit [Remote host closed the connection]
babariviere[m] has quit [Remote host closed the connection]
abbradar[m] has quit [Remote host closed the connection]
blahaj[m] has quit [Remote host closed the connection]
arianvp[m] has quit [Remote host closed the connection]
vaibhavsagar has quit [Remote host closed the connection]
Sisyphe[m] has quit [Write error: Connection reset by peer]
kecia[m] has quit [Read error: Connection reset by peer]
DenisLehmann[m] has quit [Write error: Connection reset by peer]
joelpet1 has quit [Write error: Connection reset by peer]
mirsal has quit [Write error: Connection reset by peer]
schmittlauch[m] has quit [Write error: Connection reset by peer]
bbigras has quit [Write error: Connection reset by peer]
momack2[m] has quit [Write error: Connection reset by peer]
yoho[m]1 has quit [Write error: Connection reset by peer]
nilsirl[m] has quit [Write error: Connection reset by peer]
goibhniu has quit [Write error: Connection reset by peer]
colemickens has quit [Write error: Connection reset by peer]
Seb[m] has quit [Write error: Connection reset by peer]
xavierm02 has quit [Write error: Connection reset by peer]
alexarice[m] has quit [Write error: Connection reset by peer]
Yakulu[m] has quit [Read error: Connection reset by peer]
gaisseml[m]1 has quit [Write error: Connection reset by peer]
luftmensch[m] has quit [Write error: Connection reset by peer]
timokau[m] has quit [Write error: Connection reset by peer]
coniferous-cube[ has quit [Write error: Connection reset by peer]
philipp[m] has quit [Write error: Connection reset by peer]
aloysius[m] has quit [Remote host closed the connection]
LiuWeiHua[m] has quit [Remote host closed the connection]
malteof[m] has quit [Remote host closed the connection]
MerlinGttlinger[ has quit [Read error: Connection reset by peer]
HappyEnt[m] has quit [Write error: Connection reset by peer]
abbec has quit [Write error: Connection reset by peer]
domenkozar[m] has quit [Write error: Connection reset by peer]
Minijackson[m] has quit [Read error: Connection reset by peer]
Vskilet has quit [Write error: Connection reset by peer]
jschievink has quit [Read error: Connection reset by peer]
clacke[m] has quit [Read error: Connection reset by peer]
sevcsik- has quit [Read error: Connection reset by peer]
wangoe[m] has quit [Write error: Connection reset by peer]
bikki[m] has quit [Write error: Connection reset by peer]
pachacuti[m] has quit [Write error: Connection reset by peer]
bachp has quit [Write error: Connection reset by peer]
clefru has quit [Read error: Connection reset by peer]
manu12[m] has quit [Write error: Connection reset by peer]
Noughtmare[m] has quit [Write error: Connection reset by peer]
ejpcmac has quit [Write error: Connection reset by peer]
roadt[m] has quit [Write error: Connection reset by peer]
gaisseml[m] has quit [Write error: Connection reset by peer]
danielrf[m] has quit [Write error: Connection reset by peer]
sylvie[m] has quit [Read error: Connection reset by peer]
groggy[m] has quit [Remote host closed the connection]
y0x3y[m] has quit [Remote host closed the connection]
tobim[m] has quit [Remote host closed the connection]
malajunk[m] has quit [Remote host closed the connection]
NoblesseOblige24 has quit [Read error: Connection reset by peer]
kirelagin has quit [Read error: Connection reset by peer]
contrun[m] has quit [Write error: Connection reset by peer]
jonge[m] has quit [Read error: Connection reset by peer]
rihardsk[m] has quit [Write error: Connection reset by peer]
setthemfree[m] has quit [Read error: Connection reset by peer]
worldofpeace has quit [Read error: Connection reset by peer]
attero has quit [Remote host closed the connection]
sonercirit[m] has quit [Read error: Connection reset by peer]
hiroshi[m] has quit [Read error: Connection reset by peer]
Thinkofname[m] has quit [Read error: Connection reset by peer]
pheoxy has quit [Read error: Connection reset by peer]
ninjatrappeur[m] has quit [Read error: Connection reset by peer]
regnat[m] has quit [Remote host closed the connection]
Victor[m]1 has quit [Read error: Connection reset by peer]
JaakkoLuttinen[m has quit [Read error: Connection reset by peer]
tyrion1 has quit [Read error: Connection reset by peer]
leons has quit [Read error: Connection reset by peer]
wrunt[m] has quit [Remote host closed the connection]
rnhmjoj has quit [Remote host closed the connection]
submoo[m] has quit [Remote host closed the connection]
gubaduba[m] has quit [Remote host closed the connection]
dtz has quit [Read error: Connection reset by peer]
sauyon[m] has quit [Read error: Connection reset by peer]
l33[m] has quit [Read error: Connection reset by peer]
quiet_laika[m] has quit [Read error: Connection reset by peer]
yangm has quit [Read error: Connection reset by peer]
TravisRt2botio[m has quit [Read error: Connection reset by peer]
slabity has quit [Read error: Connection reset by peer]
Nyanloutre[m] has quit [Remote host closed the connection]
provessor[m] has quit [Read error: Connection reset by peer]
frederic_chopwn[ has quit [Read error: Connection reset by peer]
ilya-fedin has quit [Read error: Connection reset by peer]
ma27[m] has quit [Read error: Connection reset by peer]
Christian[m]1 has quit [Read error: Connection reset by peer]
crabemis[m] has quit [Read error: Connection reset by peer]
cyberwolf[m] has quit [Write error: Connection reset by peer]
musicmatze has quit [Write error: Connection reset by peer]
wak-work has quit [Read error: Connection reset by peer]
fgaz has quit [Write error: Connection reset by peer]
mt[m] has quit [Write error: Connection reset by peer]
Brio[m] has quit [Remote host closed the connection]
jak[m]1 has quit [Remote host closed the connection]
MiloIgnis[m] has quit [Read error: Connection reset by peer]
Brian[m]4 has quit [Remote host closed the connection]
nbardiuk has quit [Write error: Connection reset by peer]
laas has quit [Write error: Connection reset by peer]
zmlww[m] has quit [Write error: Connection reset by peer]
arturo[m] has quit [Write error: Connection reset by peer]
chickenbuttscrat has quit [Write error: Connection reset by peer]
blitzclone_ has quit [Write error: Connection reset by peer]
simbergm has quit [Write error: Connection reset by peer]
segfault[m] has quit [Write error: Connection reset by peer]
IslandUsurper has quit [Write error: Connection reset by peer]
lel[m] has quit [Write error: Connection reset by peer]
marius851000[m] has quit [Write error: Connection reset by peer]
Notkea[m] has quit [Write error: Connection reset by peer]
mica[m] has quit [Write error: Connection reset by peer]
ZerataX has quit [Write error: Connection reset by peer]
frislie[m] has quit [Write error: Connection reset by peer]
florianjacob has quit [Write error: Connection reset by peer]
is0x3F has quit [Write error: Connection reset by peer]
null_radix[m] has quit [Write error: Connection reset by peer]
alienpirate5 has quit [Write error: Connection reset by peer]
pingveno[m] has quit [Write error: Connection reset by peer]
haslersn has quit [Read error: Connection reset by peer]
wedens[m] has quit [Read error: Connection reset by peer]
flacks has quit [Read error: Connection reset by peer]
Ariakenom has joined #nixos
vxid has quit [Remote host closed the connection]
<vxid> Interesting. i may go all Nix since I saw yesterday that some VPS providers have cheap NixOS servers. Being able to deploy my entire stack from a single config file would be awesome.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74486 → mariadb: 10.3.20 -> 10.4.10 → https://git.io/JeXd7
isgy[m] has quit [Remote host closed the connection]
macerbi[m]1 has quit [Write error: Connection reset by peer]
bennofs[m] has quit [Write error: Connection reset by peer]
Ericson2314 has quit [Write error: Connection reset by peer]
geemili has quit [Write error: Broken pipe]
midi[m] has quit [Write error: Connection reset by peer]
otini has quit [Remote host closed the connection]
VaNilLa[m] has quit [Write error: Connection reset by peer]
zer0xp[m] has quit [Write error: Connection reset by peer]
tails[m] has quit [Write error: Connection reset by peer]
Dandellion[m] has quit [Write error: Connection reset by peer]
arcnmx has quit [Write error: Connection reset by peer]
offlinehacker has quit [Write error: Connection reset by peer]
hagelslag[m] has quit [Write error: Connection reset by peer]
talqu has quit [Remote host closed the connection]
vxid has joined #nixos
<sondr3> vxid: yeah, a holiday project for me once I'm done with exams is moving my personal VPS to NixOS and use NixOps to manage it
Ariakenom has quit [Client Quit]
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
Ariakenom has joined #nixos
Ariakenom has quit [Client Quit]
<vxid> Do you manage any secrets (ssh or gpg keys, password-store etc) within Nix?
<{^_^}> [nixpkgs] @oxalica opened pull request #74487 → cargo-insta: new at 0.12.0 → https://git.io/JeXFv
<sondr3> Not yet, they live in their own ~/.secrets folder... but it is a hacky mess that I really hate
philr has quit [Ping timeout: 276 seconds]
pointfourone has quit [Ping timeout: 252 seconds]
Ariakenom has joined #nixos
<sondr3> I just haven't looked into including it with my configuration because you only need to configure it once per machine
skrzyp has quit [Ping timeout: 252 seconds]
fendor has joined #nixos
<Taneb> I'm trying to package Oolite and I'm having trouble
pointfourone has joined #nixos
<vxid> True. I have a separate password-store git repo which contains all my secrets, but it's another git pull I have to do on top of manually adding my keys. i'd like to automate this at some point.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74488 → moodle: 3.7.3 -> 3.8 → https://git.io/JeXFq
skrzyp has joined #nixos
<{^_^}> [nixpkgs] @globin merged pull request #74470 → Git: build with python3 → https://git.io/JeX79
<{^_^}> [nixpkgs] @globin pushed 2 commits to staging: https://git.io/JeXFO
<sondr3> I know people manage their secrets with Nix, mostly as git submodules that I guess contain nix expressions that they then import. I need to get around to figuring it out some day, my SSH configuration could benefit from some love
<lassulus> krops can use password-store as secret provider
<vxid> lassulus: https://tech.ingolf-wagner.de/nixos/krops/ ? Interesting
<sondr3> cool, krops looks interesting. I'm just wary when it says "well documented: No" in comparison to NixOps, in my mind the Nix project isn't very well documented lol
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74489 → memcached: 1.5.19 -> 1.5.20 → https://git.io/JeXFE
zupo has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #74361 → nss: 3.46.1 -> 3.47.1 → https://git.io/JeXV6
<{^_^}> [nixpkgs] @andir pushed 2 commits to staging: https://git.io/JeXFV
Ariakenom has quit [Ping timeout: 268 seconds]
Ariakenom has joined #nixos
vxid has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jtojnar pushed to master « mypaint: format with nixpkgs-fmt »: https://git.io/JeXF1
drozdziak1 has joined #nixos
<gchristensen> zimbatm: ^ :D
<{^_^}> [nixpkgs] @jtojnar pushed to master « mypaint: format with nixpkgs-fmt »: https://git.io/JeXFS
justanotheruser has quit [Ping timeout: 252 seconds]
<sondr3> how long until you run nixpkgs-fmt on the whole repo? :D
<gchristensen> probably never
<gchristensen> as far as the git history is concerned, jtojnar owns everything in that file -- which is fine since he's the maintainer
<sondr3> yeah, tounge in cheek from me. Is the plan to enable it for new PRs then? Or just let maintainers do as they please?
<gchristensen> no plan yet :)
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
<pbb> lassulus, sondr3: I'm working with krops right now, it's pretty awesome
<pbb> and I can confirm that the documentation is not worse than the documentation of the competitors :D
<pbb> I guess the code is enough documentation because it's so simple
<Miyu-saki> What does "needs database" in krops mean?
<pbb> nixops uses an sqlite database to track the state of the servers
<Miyu-saki> Right.
<pbb> krops doesn't need a database, which is very good for example when you work in teams
<Miyu-saki> Ohhh. Yeah, I see what you mean now.
<pbb> krops is basically just "copy all this stuff to the remote host and run nixos-rebuild"
<tilpner> Or just don't like unnecessary state, and the possibility of locking yourself out when bad things happen to that database
<gchristensen> nixops does need one, on the other hand
<Miyu-saki> Yeah, that's also what I'm thinking. NixOps keeps track of more things than the alternatives.
<Miyu-saki> Rather
<Miyu-saki> NixOps manages more than the alternatives.
gxt has quit [Ping timeout: 260 seconds]
<sondr3> can NixOps use a remote database? How does a team using NixOps manage them?
<Miyu-saki> OTOH, I guess it'd be cool if NixOps does track less.
<Miyu-saki> sondr3: Not a remote database, but. https://github.com/grafted-in/nixops-manager
<Miyu-saki> But yeah, I think there's room for improvement for comllaboration.
<pbb> I guess having remote database support for nixops would be a good solution for the team thing
<Miyu-saki> (Which is also something that's blocking us.)
<pbb> never thought of that possibility
<Miyu-saki> Personally, I think having some kind of fragmented database would be cool.
<DigitalKiwi> if your filesystem is an nfs any database is remote *taps head*
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74491 → monero-gui: 0.15.0.0 -> 0.15.0.1 → https://git.io/JeXbW
justanotheruser has joined #nixos
<Miyu-saki> Or at the very least, allow NixOps to work in some kind of read-only mode.
<Miyu-saki> I think it's an SQLite limitation itself tho
<betaboon> I've always opted to commit the nixops.state into git (encrypted ofc)
smatting has quit [Ping timeout: 240 seconds]
<Miyu-saki> betaboon: Yep. OTOH, imagine 2 people deploying at the same time. Eee
<betaboon> Miyu-saki: yeah that doesnt work. but I'm not sure how other toolchains handle that use-case either
<sondr3> I guess for a team the alternative is doing deploys from CI
o1lo01ol1o has joined #nixos
<pbb> betaboon: just don't have a state? why does nixops need to track this state locally anyways, when it can be stored on the remote hosts?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74492 → man-pages: 5.03 -> 5.04 → https://git.io/JeXbz
<DigitalKiwi> you make a key that there's only one of and whoever has the key gets to do deploys
<DigitalKiwi> like a bathroom pass
<Ariakenom> pbb: aws route tables dont have file systems
<pbb> Ariakenom: but you could read the state via tha api?
<Ariakenom> from which route table, if you havent stored the id?
<pbb> I don't know the details, can they be labelled and you specify the label in the configuration maybe?
o1lo01ol1o has quit [Ping timeout: 250 seconds]
<pbb> but that's a good point, NixOps has a much larger scope compared to alternatives, it can not only manage nixos systems but also other systems and resources
<betaboon> pbb: yeah as Ariakenom said thats why nixops needs state, for routes, vpcs, security-groups etc
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<betaboon> terraform has to do that as well.
<Ariakenom> It does feel like there should be a good chunk of stuff you can do without state though. that was my reaction too when looking into nixops, terraform and whatnot.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74493 → mcelog: 165 -> 166 → https://git.io/JeXbi
<betaboon> pbb Ariakenom i thinks this is a good read on why that is not as easy as it might seem at first: https://www.terraform.io/docs/state/purpose.html
<typetetris> Is there something like `--option substituters "<list of substituters>"` for nixos-rebuild ?
<clever> typetetris: it should work exactly like that
domogled has joined #nixos
<typetetris> clever, do I need to repeat the normal substituters or does it add to the list of normal substituters?
<clever> it will overrirde everything
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74495 → neovim-remote: 2.2.2 -> 2.2.3 → https://git.io/JeXbM
<typetetris> `extra-substituters` seems to be, what I want
<clever> typetetris: you can also `nix show-config | grep sub` to read the current value
<typetetris> clever: Oh, thanks, didn't think about that.
mniip has quit [Ping timeout: 619 seconds]
fendor has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @midchildan opened pull request #74496 → Fix fzf vim plugin path → https://git.io/JeXbH
alexherbo21 has quit [Quit: The Lounge - https://thelounge.chat]
<{^_^}> [nix] @edolstra pushed to master « Remove RPM spec file »: https://git.io/JeXbQ
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74497 → mlterm: 3.8.8 -> 3.8.9 → https://git.io/JeXb5
<{^_^}> [nixpkgs] @ryantm merged pull request #74431 → kodelife: 0.8.6.101 -> 0.8.7.105 → https://git.io/JeXDK
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JeXbA
Jarva has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #73813 → virt-manager: use setupPyGlobalFlags → https://git.io/Je6YY
<{^_^}> [nixpkgs] @FRidh pushed 4 commits to master: https://git.io/JeXbx
<{^_^}> [nixpkgs] @ryantm merged pull request #74412 → hmmer: 3.2.1 -> 3.3 → https://git.io/JeX1z
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JeXbh
<Jarva> Hey guys, I'm trying to install NixOS over Ubuntu using Lustrate, I followed the steps here https://nixos.org/nixos/manual/index.html#sec-installing-from-other-distro but when I rebooted I dropped into a grub prompt, not sure where to go from here
<Jarva> I can still boot into Ubuntu using my boot.bak folder
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Jarva> But I don't have a vmlinuz or initrd inside my new /boot, not sure when these would get generated
<{^_^}> [nixpkgs] @WilliButz opened pull request #74498 → go_1_13, grafana-6.5.1: backport to 19.09 → https://git.io/JeXbj
<clever> Jarva: you need to run the `switch-to-configuration boot` command, to make nixos update /boot fully
<Jarva> Yeah I did, and double checked by rerunning when booting Ubuntu from boot.bak
<clever> Jarva: efi or legacy booting?
<Jarva> efi
<clever> Jarva: try setting `boot.loader.grub.efiInstallAsRemovable = true;`, rebuild the nixos image, and run the new switch-to-configuration boot
m0rphism1 has joined #nixos
<Jarva> You say rebuild the nixos image, but there's no nixos-install in the steps for Lustrate, was unsure if I needed to
<{^_^}> [nixpkgs] @ryantm merged pull request #74413 → janet: 1.4.0 -> 1.5.1 → https://git.io/JeX16
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JeXNT
<clever> Jarva: you need to use something like `nix-build '<nixpkgs/nixos>' -A system -I nixos-config=./configuration.nix`
<Jarva> Ah that command
<Jarva> Yes I did that, will add that change
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « linux: Add CRYPTO_AEGIS128_SIMD for aarch64 »: https://git.io/JeXNL
<deni> tilpner: ij clever the error message was misleading (and on the wrong line. The issue was that I had env vars in the form ${FOO:-default} in there. I had to prefix those with '' to escape them.
mniip has joined #nixos
pointfourone has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @globin merged pull request #73805 → [r19.09] qt512.qtbase: add patch for CVE-2019-18281 → https://git.io/Je6kv
<{^_^}> [nixpkgs] @globin pushed 2 commits to staging-19.09: https://git.io/JeXNY
<Jarva> The command in the guide is `nix-env -p /nix/var/nix/profiles/system -f '<nixpkgs/nixos>' -I nixos-config=/etc/nixos/configuration.nix -iA system`
<Jarva> Does that work?
Rusty1 has joined #nixos
<clever> Jarva: you want --set rather then -i
<{^_^}> [nixpkgs] @B4dM4n opened pull request #74499 → xvfb-run: clean up and update package → https://git.io/JeXNs
<clever> Jarva: nix-env -p /nix/var/nix/profiles/system -f '<nixpkgs/nixos>' -I nixos-config=/etc/nixos/configuration.nix --set -A system
<Jarva> Okay, will retry boot with that then
rurie has quit [Ping timeout: 260 seconds]
<Jarva> I dropped into grub again :/
<clever> Jarva: can you take a photo of the grub?
<clever> Jarva: does the grub version say ubuntu?
<clever> does it have a nixos logo anywhere?
<Jarva> No it doesn't say anything
<Jarva> It's a prompt
<clever> rescue mode?
<Jarva> Just says grub version 2.02
<clever> sounds like it couldnt find a grub.conf
<clever> try using ls to poke around, and find one?
<clever> and cat to confirm which one it is
noudle has joined #nixos
<Jarva> boot.bak has a grub.cfg but /boot doesn't
<Jarva> So inside (hd0,gp3) there's /boot and /boot.bak
<Jarva> Inside (hd0,gpt1) there's /efi and /nixos
<Jarva> /efi/ubuntu/grub.cfg exists
Makaveli7 has quit [Quit: WeeChat 2.6]
alexherbo2 has joined #nixos
magnetophon has joined #nixos
<Jarva> That then points to (hd0,gpt3)/boot/grub/grub.cfg
<Jarva> which doesn't exist
<clever> Jarva: is boot.loader.grub.enable = true; set?
chloekek has quit [Ping timeout: 268 seconds]
<Jarva> Lemme check, if not then it's a really dumb mistake
lucasvo has joined #nixos
<Jarva> It was not
<{^_^}> [nixpkgs] @mmahut merged pull request #74457 → metabase: 0.33.2 -> 0.33.6 → https://git.io/JeXQG
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JeXNz
talqu has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #73803 → buildRustCrate: add lib output → https://git.io/Je6UP
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JeXNg
zupo has joined #nixos
<Jarva> So I have canTouchEfiVariables enabled, which conflicts with efiInstallAsRemovable
lsix_ has joined #nixos
domogled has quit [Read error: Connection reset by peer]
domogled has joined #nixos
<kahiru> why do you want to have both?
<Jarva> I don't, I just want a bootable system haha
<kahiru> fair enough
lucasvo has quit [Ping timeout: 252 seconds]
<Jarva> I had defaults there by default
<tilpner> >
<tilpner> > ''${FOO:-default}'' # deni
<{^_^}> "FOO:-default"
<tilpner> > ''${FOO: 42}''
<{^_^}> cannot coerce a function to a string, at (string):271:1
smatting has joined #nixos
rurie has joined #nixos
fendor has joined #nixos
ThatDocsLady has joined #nixos
chloekek has joined #nixos
ng0_ has joined #nixos
ng0 has quit [Ping timeout: 260 seconds]
ng0_ is now known as ng0
Jarva has quit [Remote host closed the connection]
ThatDocsLady has quit [Read error: Connection reset by peer]
<{^_^}> [nixos-homepage] @edolstra closed pull request #300 → [WIP] Adds unfree software (hidden by default → https://git.io/fjxaU
<{^_^}> [nixos-homepage] @edolstra reopened pull request #300 → [WIP] Adds unfree software (hidden by default → https://git.io/fjxaU
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74500 → nlohmann_json: 3.7.0 -> 3.7.3 → https://git.io/JeXNx
waleee-cl has joined #nixos
virus_dave has quit [Quit: virus_dave]
endformationage has joined #nixos
<{^_^}> [nixpkgs] @zimbatm merged pull request #74362 → solargraph: 0.37.2 -> 0.38.0 → https://git.io/JeXVM
<{^_^}> [nixpkgs] @zimbatm pushed commit from @azuzunaga to master « solargraph: 0.37.2 -> 0.38.0 (#74362) »: https://git.io/JeXAf
hisham is now known as CodeWarrior
<deni> tilpner: yes that's what I ended up using. Thanks
<deni> that's a nice bot....TIL
steell has joined #nixos
lucasvo has joined #nixos
alexherbo20 has joined #nixos
alexherbo2 has quit [Read error: Connection reset by peer]
domogled has quit [Quit: domogled]
<tilpner> deni: No, I was making a point that it doesn't need escaping, because Nix parses it as a URL
domogled has joined #nixos
<tilpner> Of course it would be really terrible to rely on this, but it does work
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74502 → opera: 64.0.3417.83 -> 65.0.3467.48 → https://git.io/JeXAs
<tilpner> (And it eats your ${}, so "it works" doesn't mean "it works how I meant it to")
is0x3F has joined #nixos
Ox4A6F has joined #nixos
zurdo has joined #nixos
cornu has joined #nixos
Ericson2314 has joined #nixos
laas has joined #nixos
EuAndreh[m] has joined #nixos
MilkManzJourDad4 has joined #nixos
Minijackson[m] has joined #nixos
Noughtmare[m] has joined #nixos
MiloIgnis[m] has joined #nixos
alex[m]11 has joined #nixos
abbradar[m] has joined #nixos
abbafei[m] has joined #nixos
aanderse has joined #nixos
abbec has joined #nixos
alexarice[m] has joined #nixos
hackeryarn[m] has joined #nixos
alienpirate5 has joined #nixos
am3on[m] has joined #nixos
arcnmx has joined #nixos
aloysius[m] has joined #nixos
arianvp[m] has joined #nixos
arturo[m] has joined #nixos
atopuzov[m] has joined #nixos
aterius has joined #nixos
attero has joined #nixos
bachp has joined #nixos
babariviere[m] has joined #nixos
balsoft has joined #nixos
bendlas has joined #nixos
bbigras has joined #nixos
bennofs[m] has joined #nixos
blahaj[m] has joined #nixos
bkl[m] has joined #nixos
bikki[m] has joined #nixos
bohan[m] has joined #nixos
blitzclone_ has joined #nixos
chreekat[m] has joined #nixos
chickenbuttscrat has joined #nixos
Brio[m] has joined #nixos
Christian[m]1 has joined #nixos
colemickens has joined #nixos
coniferous-cube[ has joined #nixos
clefru has joined #nixos
clacke[m] has joined #nixos
copy` has joined #nixos
corpix[m] has joined #nixos
crabemis[m] has joined #nixos
cyberwolf[m] has joined #nixos
craige[m] has joined #nixos
Dandellion[m] has joined #nixos
danielrf[m] has joined #nixos
VaNilLa[m] has joined #nixos
ndarwincorn has joined #nixos
david-sawatzke[m has joined #nixos
das-g[m] has joined #nixos
DenisLehmann[m] has joined #nixos
domenkozar[m] has joined #nixos
DanP[m] has joined #nixos
eddyb has joined #nixos
escaP[m] has joined #nixos
dtz has joined #nixos
fgaz has joined #nixos
florianjacob has joined #nixos
flacks has joined #nixos
frederic_chopwn[ has joined #nixos
fpletz[m] has joined #nixos
gaisseml[m] has joined #nixos
frislie[m] has joined #nixos
tails[m] has joined #nixos
gaisseml[m]1 has joined #nixos
geemili has joined #nixos
GerdFlaig[m] has joined #nixos
goibhniu has joined #nixos
groggy[m] has joined #nixos
hagelslag[m] has joined #nixos
gubaduba[m] has joined #nixos
HappyEnt[m] has joined #nixos
hiroshi[m] has joined #nixos
harkenedraven has joined #nixos
icetan has joined #nixos
imj[m] has joined #nixos
ilya-fedin has joined #nixos
hpfr[m] has joined #nixos
isgy[m] has joined #nixos
IslandUsurper has joined #nixos
jak[m]1 has joined #nixos
codyopel has joined #nixos
JaakkoLuttinen[m has joined #nixos
joelpet1 has joined #nixos
ejpcmac has joined #nixos
joepie91[m] has joined #nixos
jonge[m] has joined #nixos
jschievink has joined #nixos
jwaksbaum[m] has joined #nixos
jtojnar has joined #nixos
kaychaks[m] has joined #nixos
l33[m] has joined #nixos
kirelagin has joined #nixos
kecia[m] has joined #nixos
lel[m] has joined #nixos
layus[m] has joined #nixos
leons has joined #nixos
li_matrix has joined #nixos
ma27[m] has joined #nixos
LinuXit has joined #nixos
bricewge has joined #nixos
LiuWeiHua[m] has joined #nixos
manveru[m] has joined #nixos
luftmensch[m] has joined #nixos
macerbi[m]1 has joined #nixos
manu12[m] has joined #nixos
malteof[m] has joined #nixos
malajunk[m] has joined #nixos
marius851000[m] has joined #nixos
marijan[m] has joined #nixos
MayeulC_backup has joined #nixos
MarkOtaris has joined #nixos
Thinkofname[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
mirsal has joined #nixos
simbergm has joined #nixos
momack2[m] has joined #nixos
mt[m] has joined #nixos
nbardiuk has joined #nixos
musicmatze has joined #nixos
nh2[m] has joined #nixos
NickHu has joined #nixos
NoblesseOblige24 has joined #nixos
ninjatrappeur[m] has joined #nixos
nilsirl[m] has joined #nixos
olejorgenb[m] has joined #nixos
offlinehacker has joined #nixos
Nyanloutre[m] has joined #nixos
null_radix[m] has joined #nixos
otini has joined #nixos
Notkea[m] has joined #nixos
pachacuti[m] has joined #nixos
peel1 has joined #nixos
mica[m] has joined #nixos
phyfey[m] has joined #nixos
pheoxy has joined #nixos
philipp[m] has joined #nixos
pinage404[m] has joined #nixos
provessor[m] has joined #nixos
pingveno[m] has joined #nixos
quiet_laika[m] has joined #nixos
rihardsk[m] has joined #nixos
rnhmjoj has joined #nixos
roberth has joined #nixos
roadt[m] has joined #nixos
ronny has joined #nixos
rycee has joined #nixos
sauyon[m] has joined #nixos
Seb[m] has joined #nixos
schmittlauch[m] has joined #nixos
segfault[m] has joined #nixos
sevcsik- has joined #nixos
haslersn has joined #nixos
setthemfree[m] has joined #nixos
shizonic has joined #nixos
siraben has joined #nixos
Sisyphe[m] has joined #nixos
slabity has joined #nixos
snupples[m] has joined #nixos
Smith[m] has joined #nixos
sonercirit[m] has joined #nixos
spacekitteh[m] has joined #nixos
st3r4g has joined #nixos
sputny[m] has joined #nixos
tokudan[m] has joined #nixos
submoo[m] has joined #nixos
midi[m] has joined #nixos
talvdav[m] has joined #nixos
Brian[m]3 has joined #nixos
sylvie[m] has joined #nixos
thequux[m] has joined #nixos
regnat[m] has joined #nixos
thefloweringash has joined #nixos
timokau[m] has joined #nixos
tobim[m] has joined #nixos
TravisRt2botio[m has joined #nixos
truby has joined #nixos
tyrion1 has joined #nixos
veleiro has joined #nixos
vaibhavsagar has joined #nixos
contrun[m] has joined #nixos
Vskilet has joined #nixos
Victor[m]1 has joined #nixos
wangoe[m] has joined #nixos
wak-work has joined #nixos
wrunt[m] has joined #nixos
worldofpeace has joined #nixos
wildtrees[m] has joined #nixos
xavierm02 has joined #nixos
yoho[m]1 has joined #nixos
zer0xp[m] has joined #nixos
Yakulu[m] has joined #nixos
yangm has joined #nixos
ZerataX has joined #nixos
zmlww[m] has joined #nixos
zummed[m] has joined #nixos
xkapastel has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @flokli pushed to master « Revert "gitlab: fix updater shebang" »: https://git.io/JeXAZ
steell has quit [Ping timeout: 265 seconds]
Shouou has joined #nixos
lsix has quit [Quit: WeeChat 2.6]
lsix_ is now known as lsix
<{^_^}> [nixpkgs] @flokli opened pull request #74503 → virtualbox: remove myself from maintainers → https://git.io/JeXAB
<{^_^}> [nixpkgs] @Mic92 merged pull request #74479 → pythonPackages.astroquery: fix build → https://git.io/JeX5r
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JeXA0
<jonge[m]> hey there. if i have some nix file that references `<nixpkgs>` somewhere but i have no such variable set in NIX_PATH, is there any way to tell nix "when you evaluate this file, do it with <nixpkgs> = foobar_some_value`?
<jonge[m]> but not on the shell - in nix itself
wedens[m] has joined #nixos
<clever> jonge[m]: you would need to use scopedImport, but thats messy and harms performance
<clever> jonge[m]: it would be better to just replace all instances of <nixpkgs> with something like `import (import ./fetch-nixpkgs.nix) {}`
<clever> and if you `unset NIX_PATH`, you can find all of them, because they will hard-fail
Chiliparrot has joined #nixos
<Shouou> What's the prepend option that mkDerivation takes? I see it used here and I'm wondering what that does https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/kernel/make-initrd.nix#L51
<Shouou> (or what prepend takes, nix packages?)
<clever> Shouou: all attributes you pass to mkDerivation become env vars at build time
<clever> Shouou: the shell script being used as a builder, then does something with $prepend
m0rphism1 has quit [Ping timeout: 252 seconds]
o1lo01ol1o has joined #nixos
<clever> Shouou: in this case, prepend must be a list of cpio archives, that get prepended to the initrd, and then the whole thing is compressed
<{^_^}> [nixpkgs] @flokli merged pull request #74503 → virtualbox: remove myself from maintainers → https://git.io/JeXAB
<{^_^}> [nixpkgs] @flokli pushed 3 commits to master: https://git.io/JeXAP
vandenoever has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #74048 → ssmtp: use services.ssmtp not networking.defaultMailServer → https://git.io/Jeijq
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JeXAX
gubaduba[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
m0rphism1 has joined #nixos
drakonis has joined #nixos
<Shouou> clever, ah that makes sense, thanks for the help.
fusion809 has quit [Remote host closed the connection]
malajunk[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
<{^_^}> [nixpkgs] @xwvvvvwx opened pull request #74504 → tests/wireguard: init wg-quick → https://git.io/JeXAF
m0rphism1 has quit [Ping timeout: 265 seconds]
Ariakenom has quit [Quit: WeeChat 2.6]
zzz has joined #nixos
<{^_^}> [nixpkgs] @andir pushed to master « Revert "cudatoolkit: move the dependencies into a common expression" »: https://git.io/JeXxU
fendor has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @flokli merged pull request #74195 → tribler: 7.1.2 -> 7.4.0-exp1 (python 3) → https://git.io/JePw1
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JeXxt
fendor has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74505 → openapi-generator-cli: 4.2.0 -> 4.2.1 → https://git.io/JeXxW
<{^_^}> [nixpkgs] @7c6f434c pushed to master « matrixcli: init at 2019-08-15 »: https://git.io/JeXxV
rurie has quit [Remote host closed the connection]
lucasvo has quit [Ping timeout: 250 seconds]
rurie has joined #nixos
aloysius[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
<{^_^}> [nixpkgs] @waiting-for-dev opened pull request #74506 → doc/stdenv: Add docs for 'dontInstall' variable → https://git.io/JeXxN
chreekat[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
pikajude has quit [Quit: ZNC 1.7.5 - https://znc.in]
groggy[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
codyopel has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
pikajude has joined #nixos
nbardiuk has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
Ariakenom has joined #nixos
sonercirit[m] has quit [Quit: User has been idle for 30+ days.]
sputny[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
midi[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : User has been idle for 30+ days."]
jumper149 has joined #nixos
<{^_^}> [nixpkgs] @flokli closed pull request #71127 → virtualbox: discover extension packs at runtime → https://git.io/Je8B3
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74507 → paml: 4.9i -> 4.9j → https://git.io/JeXpc
pointfourone has joined #nixos
drakonis has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74508 → nss_wrapper: 1.1.6 -> 1.1.7 → https://git.io/JeXpR
Neo-- has quit [Ping timeout: 250 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74509 → osmium-tool: 1.11.0 -> 1.11.1 → https://git.io/JeXpK
zzz has left #nixos [#nixos]
drakonis has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74510 → nuspell: 2.3.0 -> 3.0.0 → https://git.io/JeXpd
<{^_^}> [nixpkgs] @filalex77 opened pull request #74511 → youtube-dl: 2019.11.22 -> 2019.11.28 → https://git.io/JeXpN
<{^_^}> [nixpkgs] @prusnak opened pull request #74512 → kodelife: add support for aarch64 and darwin → https://git.io/JeXhe
evils has quit [Remote host closed the connection]
is_null has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @Mic92 opened pull request #74513 → nixos/ferm: port test to python → https://git.io/JeXhY
<tilpner> > let __nixPath = [ { prefix = "nixpkgs"; path = "/var/lib/nixbot/nixpkgs/master/repo/nixos"; } ]; in <nixpkgs/modules> # jonge[m]
<{^_^}> /var/lib/nixbot/nixpkgs/master/repo/nixos/modules
tobiasBora has joined #nixos
<tobiasBora> Hello, I'm using xfce and for some reasons, I can't use MTP to transfert files from my phone to my computer. Any idea what's going wrong? I'm using thunar, and dolphin does not help either.
<tobiasBora> I'm trying right now to install xfce.gvfs (takes ages as usual)
lucasvo has joined #nixos
<symphorien> you shouldn't install gvfs but enable it in configuration.nix
<symphorien> (but iirc xfce does enable it automatically)
<{^_^}> [nixpkgs] @c0bw3b opened pull request #74514 → libvncserver: 0.9.11 -> 0.9.12 → https://git.io/JeXhZ
evils has joined #nixos
drakonis has quit [Ping timeout: 252 seconds]
lucasvo has quit [Ping timeout: 265 seconds]
sigmundv has quit [Ping timeout: 246 seconds]
<jumper149> Hi, I'm trying combine two derivations so that they see each others files. I want to use `pkgs.symlinkJoin`, but I'm not sure how I can use it to get a new derivation.
<jonge[m]> tilpner: that looks exactly like what i need. Thank you!
hervyqa_ has joined #nixos
steell has joined #nixos
<{^_^}> [nixpkgs] @rasendubi merged pull request #74509 → osmium-tool: 1.11.0 -> 1.11.1 → https://git.io/JeXpK
<{^_^}> [nixpkgs] @rasendubi pushed 2 commits to master: https://git.io/JeXhX
Henson has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
smatting has quit [Ping timeout: 252 seconds]
mexisme has joined #nixos
<tilpner> > symlinkJoin { name = "combined"; paths = [ hello tree ]; } # jumper149
<{^_^}> "<derivation /nix/store/bbf29r3k8nzh9cipr12hdaq4k371gq4p-combined.drv>"
<tilpner> .outPath will have /bin/hello and /bin/tree links
mexisme has quit [Ping timeout: 250 seconds]
hervyqa_ has quit [Quit: hervyqa_]
hervyqa has joined #nixos
drakonis has joined #nixos
selfsymmetric-mu has quit [Remote host closed the connection]
<jumper149> tilpner: I have that already, I have trouble using nix-build or nix-shell to get into an environment where I can actually use "combined".
<jumper149> nix-build -E "with import <nixpkgs> { }; callPackage ./default.nix { }" , it builds with this but I still dont get into my desired environment
<tilpner> jumper149: nix-build -E 'with import <nixpkgs> {}; symlinkJoin { ... }'
<tilpner> --no-out-link if you want to avoid the result symlinks
horner has quit [Ping timeout: 268 seconds]
<jumper149> tilpner: I would like to install it with nix-env -i , but that somehow didnt work
<jumper149> I used: nix-env -i -E "with import <nixpkgs> { }; callPackage ./default.nix { }"
<jumper149> and it says: error: attempt to call something which is not a function but a set, at undefined position
<tilpner> Prefix your argument with { ... }:
<tilpner> That will ignore all incoming arguments. One of the arguments is system, and there may be good reasons to not ignore them
smatting has joined #nixos
<tilpner> ("_: " will work too)
<jumper149> What do you mean with argument? The function which is my default.nix?
o1lo01ol1o has quit [Remote host closed the connection]
<tilpner> The string you pass to nix-env
<tilpner> The quoted one
o1lo01ol1o has joined #nixos
<immae> Hello there! I would like to add a custom texlive package, but I don’t find a way to add it, and I’m a little lost in the pkgs/tools/typesetting/tex/texlive/combine.nix file to find what to do (the custom package has a directory structure that could be embedded as is in /usr/share/texmf-* in a regular OS), do you know a way to do that? (the documentation about texlive doesn’t mention that)
hervyqa has quit [Quit: hervyqa]
Neo-- has joined #nixos
smatting has quit [Ping timeout: 250 seconds]
lucasvo has joined #nixos
<tilpner> immae: Do you want to add one for local use, or for a PR to nixpkgs?
<immae> for local use
<immae> it’s my "private" texmf that I want to have access to in my regular builds
<tilpner> I haven't done either, but here's what I would try first:
o1lo01ol1o has quit [Ping timeout: 250 seconds]
<immae> (currently I need to `export TEXMFHOME=/path/to/the/custom`, but I’d prefer to integrate it with the other packages)
<{^_^}> [nixpkgs] @waiting-for-dev opened pull request #74515 → boxes: init at 1.3 → https://git.io/JeXjG
<immae> (especially because TEXMFHOME is not composable, so I can only have one path there)
<jumper149> tilpner: ty, that worked!
<tilpner> Create an attrset foo = { pkgs = [ "${./foo}" ]; }. The inner path may need to be changed to a derivation that copies ./foo to $out
horner has joined #nixos
<immae> oh
<immae> I’ll try that
<tilpner> Use texlive.combine to add foo into your texEnv
<tilpner> I almost expect that to fail, but the error message would be interesting
<{^_^}> [nixpkgs] @worldofpeace merged pull request #74472 → wire-desktop: fix a segfault when changing profile picture → https://git.io/JeX7b
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JeXjC
<jumper149> tilpner: Would you mind explaining what those arguments from nix-env -E are about? And why are there no such arguments with nix-shell or nix-build?
<tilpner> jumper149: I can't really. I expect that it's done to support passing values form --argstr to the expression, and the expression needs to be a function for that
<immae> tilpner: `error: value is a string with context while a set was expected, at /nix/store/7h17y3db98h4qpk9nj8777k5b2rpgari-nixexprs.tar.xz/pkgs/tools/typesetting/tex/texlive/combine.nix:4:21` (I get your idea, I’ll follow this track and tell if I’m locked again)
<tilpner> jumper149: nix-env is old and weird, and IMO should be avoided where possible
smatting has joined #nixos
judson has joined #nixos
dejanr has joined #nixos
Neo-- has quit [Ping timeout: 265 seconds]
ng0 has quit [Quit: Alexa, when is the end of world?]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #74467 → simplenote: 1.9.1 -> 1.11.0 → https://git.io/JeX7a
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JeXjK
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
knupfer has joined #nixos
Neo-- has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #74491 → monero-gui: 0.15.0.0 -> 0.15.0.1 → https://git.io/JeXbW
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JeXj9
Jackneill has quit [Read error: Connection reset by peer]
misterwhatever has joined #nixos
jumper149 has quit [Quit: WeeChat 2.6]
lsix has quit [Remote host closed the connection]
<immae> tilpner: FYI: https://paste.ee/p/4N019 works (not sure yet it is minimal though), thanks for your help!
misterwhatever has quit [Remote host closed the connection]
<immae> tilpner: do you think it’s worth adding as an example to the documentation? It’s quite unnnatural to guess
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74517 → openiscsi: 2.0.878 -> 2.1.0 → https://git.io/JeXjA
<tilpner> immae: I think it would be good to ask about the intended way of doing this, instead of PRing our guessed-together solution
<tilpner> immae: That question could take the form of a PR though, if you have the time available
o1lo01ol1o has joined #nixos
<immae> I can take the time to do it, that’s not a problem, but I don’t see what PR I could do to nixpkgs, it seems more to me like a lack of documenation :)
<{^_^}> [nixpkgs] @andir opened pull request #74518 → chirp: modernize the expression by using buildPythonApplication → https://git.io/Je1ek
<tilpner> Yes, do the PR, but explain that this is a guessed solution, and ping people who wrote the texlive stuff initially to ask for a more proper solution
<immae> ok
<tilpner> If they don't respond in $DURATION, it can be merged and there will at least be any documentation
<tilpner> If they do, we may learn of a better way
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<immae> sure
is_null has joined #nixos
<tilpner> immae++
<{^_^}> immae's karma got increased to 6
bvdw has quit [Read error: Connection reset by peer]
sudoforge has joined #nixos
bvdw has joined #nixos
alexherbo208 has joined #nixos
ng0 has joined #nixos
alexherbo20 has quit [Ping timeout: 265 seconds]
ixxie has joined #nixos
mexisme has joined #nixos
Thra11 has joined #nixos
fendor has quit [Ping timeout: 276 seconds]
<Thra11> Does anyone know what happened here: https://hydra.nixos.org/build/107261380/nixlog/1
<{^_^}> [nixpkgs] @immae opened pull request #74519 → Add some documentation for texlive → https://git.io/Je1e8
<Thra11> (I just see a bunch of non-printable characters)
silver has quit [Quit: rakede]
steell has quit [Ping timeout: 276 seconds]
<immae> tilpner: there it is https://github.com/NixOS/nixpkgs/pull/74519 :) (I don’t know how to test the html output though)
<{^_^}> #74519 (by immae, 48 seconds ago, open): Add some documentation for texlive
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74520 → nsd: 4.2.2 -> 4.2.3 → https://git.io/Je1e4
alexherbo208 has quit [Ping timeout: 268 seconds]
alexherbo208 has joined #nixos
<samueldr> might be some misdetection in the browser
<samueldr> IIRC the responses are compressed
steell has joined #nixos
<samueldr> I see it in the server response as br, brotli, compression
alexherbo208 has quit [Client Quit]
dejanr has quit [Quit: WeeChat 2.6]
boxscape has joined #nixos
hervyqa has joined #nixos
rurie has quit [Ping timeout: 260 seconds]
<betawaffle> hmm... what am i doing wrong here: "error: cannot connect to daemon at '/nix/var/nix/daemon-socket/socket': Connection refused"
<{^_^}> [nixpkgs] @andir merged pull request #74500 → nlohmann_json: 3.7.0 -> 3.7.3 → https://git.io/JeXNx
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/Je1ew
hervyqa has quit [Remote host closed the connection]
horner has quit [Quit: zzZzZzZzZZZzzz…]
<{^_^}> [nixpkgs] @c0bw3b merged pull request #74497 → mlterm: 3.8.8 -> 3.8.9 → https://git.io/JeXb5
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @r-ryantm to master « mlterm: 3.8.8 -> 3.8.9 (#74497) »: https://git.io/Je1ei
<{^_^}> [nixpkgs] @romildo merged pull request #74396 → zafiro-icons: 0.9 -> 1.0 → https://git.io/JeXPo
<{^_^}> [nixpkgs] @romildo pushed 2 commits to master: https://git.io/Je1ey
tsrt^ has joined #nixos
is_null has quit [Ping timeout: 268 seconds]
<tilpner> Thra11: I've also encountered a bunch of corrupted file listings, which could be related
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74521 → owncloud-client: 2.5.4.11654 -> 2.6.0.13018 → https://git.io/Je1ep
<tilpner> Oh, it's not, your link works fine
Neo-- has quit [Ping timeout: 246 seconds]
<Thra11> I still see gibberish. What compression does it use?
<clever> Thra11: brotoli i think?
<clever> Thra11: the generate-programs-index in the nixos-channel-scripts repo, and also nix-index/nix-locate read it
<tilpner> Content-Encoding: br
<tilpner> Is your browser old?
<tilpner> (Or based on an old browser, etc.)
<Thra11> tilpner: one of the ones I tried is quite old
<tilpner> Try with recent firefox
vandenoever has quit [Read error: Connection reset by peer]
<Thra11> Is there some sort of cli brotlicat?
<tilpner> Yes, brotli -d <foo.br
is_null has joined #nixos
<clever> this produces json output for me
<Thra11> Yes. Thanks. I worked that out
<Thra11> I get plaintext
<tilpner> You're using different URLs
<Thra11> ^ That'll be it
<tilpner> But thanks, I didn't try brotli on that either
<Thra11> Looks like the build is trying to re-apply a patch which has been merged upstream
Chiliparrot has joined #nixos
<tilpner> Hmm, weird
<tilpner> nix-index seems to have support for brotli since at least 2 years
werner291 has quit [Quit: werner291]
mexisme has quit [Ping timeout: 252 seconds]
werner291 has joined #nixos
<clever> Thra11: you can also use the `nix log` command to read logs from the binary cache
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74522 → openimageio2: 2.0.11 -> 2.0.12 → https://git.io/Je1vl
is_null has quit [Ping timeout: 268 seconds]
alexherbo2 has joined #nixos
lucasvo has quit [Ping timeout: 268 seconds]
<Thra11> clever: If I have a builder on the local network set as an extra binary cache, will that interfere with `nix log`?
<niso> hmmm i think i broke my nix-env. I used to host a binary cache (which now 502s), i removed it from nix-channel + as a substituter. Now nix-channel --update and nixos-rebuild switch both fail due to being unable to download the narinfo from my previous cache.
alexherbo2 has quit [Ping timeout: 268 seconds]
<niso> removing ~/.nix-defexpr and /root/.nix-devexpr didn't fix the issue
alexherbo2 has joined #nixos
<tilpner> niso: How did you remove it as a substituter?
<niso> tilpner: i commented out nix.extraOptions, however this doesn't take effect since it errors out before
<tilpner> niso: You can pass --option substituters "https://cache.nixos.org" to override the defined substituters
<tilpner> niso: Or use --option substitute false to disable it entirely
alexherbo2 has quit [Client Quit]
alexherbo2 has joined #nixos
amanjeev has joined #nixos
amanjeev has quit [Remote host closed the connection]
<clever> Thra11: i think that depends on which protocol your using to treat it as a cache
<niso> tilpner: thanks
<clever> Thra11: there is also `nix-store -l /nix/store/foo` for the old api, which only supports logs on the current machine
<Thra11> clever: I tried a different package. It looks like it works fine, it just doesn't have logs for the first package I looked for
alexherbo27 has joined #nixos
mexisme has joined #nixos
alexherbo2 has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @c0bw3b pushed to master « mysql80: define pname and version »: https://git.io/Je1fJ
<{^_^}> [nixpkgs] @c0bw3b closed pull request #68322 → mysql80: add missing version → https://git.io/Jevsg
alexherbo27 has quit [Client Quit]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
mexisme has quit [Ping timeout: 250 seconds]
<steell> i'm seeing my touchpad settings reset randomly on KDE Plasma
<steell> from what i can tell, the values in my configuration.nix are ignored
<steell> when i enter the touchpad settings via the gui, it prompts me that my current settings are "not active". clicking "Apply" restores them to their correct values
<steell> anyone else experience this / am i doing somehting obviously wrong?
<tilpner> #51875
<{^_^}> https://github.com/NixOS/nixpkgs/issues/51875 (by Jomik, 50 weeks ago, open): [Plasma 5] Reverse/natural scrolling doesn't stick
<tilpner> Nothing useful, but could be another instance of "plasma forgets settings"
gentauro has quit [Read error: Connection reset by peer]
gentauro has joined #nixos
<NoctisLabs> Has anyone tried to get Intel's Clear Linux performance improvements on NixOS? Specifically the fast boot speed and benchmarks.
<tilpner> I haven't heard of anyone doing so, and if there is someone, the chances of them reading along right now are slim
xel has joined #nixos
steell has quit [Ping timeout: 276 seconds]
mexisme has joined #nixos
psyanticy has quit [Quit: Connection closed for inactivity]
h0m1 has quit [Quit: WeeChat 2.6]
h0m1 has joined #nixos
h0m1 has quit [Client Quit]
h0m1 has joined #nixos
tsrt^ has quit []
xel has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @jonringer merged pull request #74131 → charliecloud: 0.11 -> 0.12 → https://git.io/JePCc
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « charliecloud: 0.11 -> 0.12 »: https://git.io/Je1f1
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jonringer merged pull request #74101 → alsaPlugins: 1.1.9 -> 1.2.1 → https://git.io/JePsQ
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « alsaPlugins: 1.1.9 -> 1.2.1 »: https://git.io/Je1fS
<{^_^}> [nixpkgs] @jtojnar merged pull request #74522 → openimageio2: 2.0.11 -> 2.0.12 → https://git.io/Je1vl
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/Je1f9
mexisme has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @bartelsielski opened pull request #74525 → nixos/powerdns: Add '--log-timestamp=no' command line flag → https://git.io/Je1fF
domogled has quit [Ping timeout: 276 seconds]
Ralith_ has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @jonringer closed pull request #74127 → anydesk: 5.4.1 -> 5.5.0 → https://git.io/JePcy
pie_ has quit [Ping timeout: 250 seconds]
zupo has joined #nixos
<{^_^}> [nixpkgs] @wmertens merged pull request #74213 → git: fix the "perlSupport = false" configuration → https://git.io/JePKA
<{^_^}> [nixpkgs] @wmertens pushed 2 commits to staging: https://git.io/Je1Jn
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « fcitx-engines.cloudpinyin: 0.3.6 -> 0.3.7 »: https://git.io/Je1JW
<{^_^}> [nixpkgs] @jonringer merged pull request #74179 → fcitx-engines.cloudpinyin: 0.3.6 -> 0.3.7 → https://git.io/JePzS
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
mexisme has joined #nixos
domogled has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #74103 → amazon-ecs-cli: 1.17.0 -> 1.18.0 → https://git.io/JePGR
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « amazon-ecs-cli: 1.17.0 -> 1.18.0 »: https://git.io/Je1Jo
karetsu has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74526 → pan: 0.145 -> 0.146 → https://git.io/Je1Jd
<karetsu> hi, apologies for beating the same drum over and over but I'm still struggling with dbus and dunst, they immediately turn Inactive (dead) after logging in and e.g. notify-send fails silently. `dbus-monitor` gives me the following output when I try to send some text https://gist.github.com/karetsu/fb6634ffc14bf6c778fd78f101556378 - I don't understand dbus remotely well enough to know what :1.53 means
<karetsu> and why its not provided by any .service file. Anyone able to help?
lucasvo has joined #nixos
philr has joined #nixos
cosimone has joined #nixos
Havvy has quit [Ping timeout: 252 seconds]
foxs has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74527 → pcre2: 10.33 -> 10.34 → https://git.io/Je1UI
jgeerds has joined #nixos
is_null has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74528 → picard-tools: 2.21.1 -> 2.21.3 → https://git.io/Je1Ut
knupfer has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74529 → parallel: 20191022 -> 20191122 → https://git.io/Je1UO
o1lo01ol1o has joined #nixos
knupfer has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74530 → plantuml: 1.2019.11 -> 1.2019.12 → https://git.io/Je1Un
o1lo01ol1o has quit [Ping timeout: 252 seconds]
ixxie has quit [Ping timeout: 265 seconds]
smatting has quit [Ping timeout: 250 seconds]
knupfer has quit [Quit: knupfer]
<{^_^}> [nixpkgs] @vbgl opened pull request #74531 → ocaml-crunch: init at 3.1.0 → https://git.io/Je1UX
vandenoever has joined #nixos
<{^_^}> [nixpkgs] @Lassulus merged pull request #74078 → nixosTests.netdata: port to python → https://git.io/JePkQ
<{^_^}> [nixpkgs] @Lassulus pushed commit from @filalex77 to master « nixosTests.netdata: port to python »: https://git.io/Je1U9
knupfer has joined #nixos
<niso> karetsu: what does "echo $DISPLAY" return?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74532 → picard: 2.2.2 -> 2.2.3 → https://git.io/Je1Ud
karetsu has quit [Quit: WeeChat 2.6]
<otwieracz> How can I dynamically generate number of environment.etc resources?
<otwieracz> I wanted to create number of /etc/burp/clientconfdir/${filename} files.
<niso> otwieracz: as in count them?
jimmyeatworld has joined #nixos
<otwieracz> environment.etc."burp/server.conf" = {
<otwieracz> enable = server_cfg.enable;
<otwieracz> source = server_conf;
<otwieracz> } ++ (map
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74533 → smarty3: 3.1.33 -> 3.1.34 → https://git.io/Je1Ux
<otwieracz> (config: { source = config; } )
<otwieracz> client_configs);
<otwieracz> I am trying to do something like that
karetsu has joined #nixos
<karetsu> niso: :0
<{^_^}> [nixpkgs] @bjornfor merged pull request #74530 → plantuml: 1.2019.11 -> 1.2019.12 → https://git.io/Je1Un
<{^_^}> [nixpkgs] @bjornfor pushed commit from @r-ryantm to master « plantuml: 1.2019.11 -> 1.2019.12 »: https://git.io/Je1Tv
<niso> karetsu: are you configuring dunst via home-manager?
<davidtwco> Does anyone know how to successfully change nvidia-settings on NixOS? Trying to set "ForceFullCompositionPipeline=On" like in #34977 but once I do so, my second monitor is black - the windows are still present on it "underneath", and the cursor appears, but I can't see any of the windows. Any ideas?
<{^_^}> https://github.com/NixOS/nixpkgs/issues/34977 (by Baughn, 1 year ago, open): A possible solution for screen tearing on nVidia
<tobiasBora> symphorien: hum, I tried to install gvfs, it does not solve the issue, and I will try to enable gvfs tomorrow. I'll let you know
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74534 → plata-theme: 0.9.0 -> 0.9.1 → https://git.io/Je1Tk
<niso> karetsu: and you did also install dunst right?
<niso> as in adding it to home.packages
<karetsu> niso: yes, its in my system software list: https://github.com/karetsu/nixOS-configuration/blob/master/software.nix
m3lt900 has joined #nixos
swapgs has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @xvapx opened pull request #74535 → pythonPackages.pony: add myself as maintainer → https://git.io/Je1TL
<m3lt900> fetchFromGithub wants a hash of the ' the hash of the extracted directory.'
<m3lt900> how can I calculate the hash of a dir? .-.
<tilpner> ,tofu m3lt900
<{^_^}> m3lt900: To get a sha256 hash of a new source, you can use the Trust On First Use model: use probably-wrong hash (for example: 0000000000000000000000000000000000000000000000000000) then replace it with the correct hash Nix expected. See: tofu-vim
<tilpner> nix-prefetch-url works too, but then you have to manually piece together the URL
<{^_^}> [nixpkgs] @andrew-d opened pull request #74536 → buildBazelPackage: also set the SSL_CERT_FILE environment variable → https://git.io/Je1Tt
<clever> tilpner: nix-prefetch-url --unpack in this case
zupo_ has joined #nixos
<m3lt900> nix-prefetch-url --unpack $github_url ?
<clever> m3lt900: the full url to the archive, from the download a rev as a tar link
knupfer has quit [Read error: Connection reset by peer]
gxt has joined #nixos
knupfer has joined #nixos
zupo has quit [Ping timeout: 265 seconds]
knupfer has quit [Client Quit]
<niso> karetsu: what's the output of: notify-send "test"?
<karetsu> nothing
<niso> karetsu: no popup either?
<karetsu> nope, no popup, not error message
<karetsu> /s/not/no/
knupfer has joined #nixos
<clever> no popup here either, and i didnt have notify-send in my PATH
<clever> running plain xfce
<m3lt900> ty :)
zupo_ has quit [Read error: Connection reset by peer]
<niso> clever: but you are running dunst & libnotify?
<clever> [pid 15446] connect(5, {sa_family=AF_UNIX, sun_path=@"/tmp/dbus-JlB0BuUP4s"}, 23) = -1 ECONNREFUSED (Connection refused)
<clever> strace shows this
worldofpeace_ has joined #nixos
<niso> karetsu: ....
worldofpeace_ has quit [Client Quit]
<clever> niso: not currently running those, but i vaguely remember notify-send just working, back when i ran gentoo
<niso> karetsu: now try it with a minimal dunst config....
<niso> karetsu: e.g.: http://paste.debian.net/1118444/
<niso> clever: i see, well libnotify definitly has to run
<clever> $ ls /nix/store/i2ca8vp2rl4q0wg7izs4c2qcs4pd9sxw-libnotify-0.7.8/bin
<clever> notify-send
<clever> niso: there is no libnotify binary in bin/
<niso> clever: oh, you are right, sry!
<clever> and the more i look at the libnotify package, the more i want to PR it!
<clever> header files are in the same output as executables!!
<karetsu> niso: brb
karetsu has quit [Quit: WeeChat 2.6]
karetsu has joined #nixos
<niso> clever: btw, what's the reasoning of services not autoinstalling their dependencies? (e.g. dunst in home-manager)
<karetsu> niso: ugh, when I comment out everything except a font setting it works - guess I play the game of toggling everything on one by one and seeing what the culprit is
<niso> karetsu: always start with a minimal config :P
<clever> niso: system or user services?
<karetsu> this one worked in 19.03, way back when I first did it that's how I started ^^
<niso> clever: user services
<niso> clever: erm hang on, how do you define user service?
<niso> karetsu: oh, my bad then, sry!
<clever> niso: systemctl --user vs systemctl --system (the default)
<karetsu> niso: its fine, half of the config is probably redundant given updates etc, its about time for a purge :)
<clever> niso: user services run a duplicate copy for each signed in user, and run as that uid
<clever> niso: system services are global to the system
<niso> clever: ah, no i ment home-managers "service modules" (which often arn't services)
<niso> clever: e.g. mbsync
<clever> id say those should go under programs.mbsync, of they arent services
<clever> if*
zupo has joined #nixos
<{^_^}> [nixpkgs] @timokau opened pull request #74537 → python3.pkgs.rpy2: 2.9.5 -> 3.2.2 → https://git.io/Je1TW
Jackneill has joined #nixos
knupfer has quit [Ping timeout: 245 seconds]
<niso> clever: just checked, looks like i was halucinating...
<deni> tilpner: I'm not sure what you mean. Escaping it fixed the issue.
<{^_^}> [nixpkgs] @flokli merged pull request #74536 → buildBazelPackage: also set the SSL_CERT_FILE environment variable → https://git.io/Je1Tt
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/Je1T8
karetsu has quit [Quit: WeeChat 2.6]
notarock has quit [Ping timeout: 245 seconds]
<tilpner> deni: Just that ''${FOO:-default}'' is actually valid Nix, even though it won't do what intuition would suggest
drakonis has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @flokli opened pull request #74538 → buildBazelPackage: set $USER environment variable → https://git.io/Je1T2
zupo has quit [Ping timeout: 252 seconds]
Jackneill has quit [Remote host closed the connection]
drakonis has joined #nixos
felixfoertsch has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @flokli merged pull request #74535 → pythonPackages.pony: add myself as maintainer → https://git.io/Je1TL
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/Je1To
chloekek has quit [Ping timeout: 245 seconds]
jhoff has joined #nixos
jhoff has left #nixos [#nixos]
jhoff has joined #nixos
<jhoff> hi, anybody uses `builtins.fetchGit` on travis-ci in package derivation ?
zupo_ has joined #nixos
<jhoff> I'm using ```src = builtins.fetchGit { url = "git@github.com:repoowner/reponame.git"; ref = "branch-name";};
joshuagl has quit [Quit: Textual IRC Client: www.textualapp.com]
felixfoertsch has joined #nixos
<jhoff> and got this error: ```fatal: '/home/travis/build/repoowner/reponame2/git@github.com:repoowner/reponame.git' does not appear to be a git repository```
<tilpner> Prefix the url with ssh://
<{^_^}> [nixpkgs] @Lassulus merged pull request #74428 → keepassxc: 2.5.0 -> 2.5.1 → https://git.io/JeXDn
<{^_^}> [nixpkgs] @Lassulus pushed commit from @r-ryantm to master « keepassxc: 2.5.0 -> 2.5.1 »: https://git.io/Je1TS
zupo_ has quit [Ping timeout: 268 seconds]
zupo has joined #nixos
<{^_^}> [nixpkgs] @ehmry merged pull request #74532 → picard: 2.2.2 -> 2.2.3 → https://git.io/Je1Ud
<{^_^}> [nixpkgs] @ehmry pushed commit from @r-ryantm to master « picard: 2.2.2 -> 2.2.3 »: https://git.io/Je1T9
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74539 → pioneer: 20191009 -> 20191117 → https://git.io/Je1TH
lucasvo has quit [Ping timeout: 240 seconds]
karetsu has joined #nixos
evils has quit [Remote host closed the connection]
<deni> tilpner: Ah I see what you're saying! Thanks for making it clear.
zupo has quit [Ping timeout: 265 seconds]
zupo has joined #nixos
<jhoff> tilpner thanks, it works, its a little bit confusing in examples in nixos docs
<srid> Why does this give "error: infinite recursion encountered"? -- `imports = if pkgs.stdenv.hostPlatform.isLinux then (allImports ++ linuxImports) else allImports;`
zupo has quit [Remote host closed the connection]
<infinisil> srid: Imports can't depend on pkgs
<infinisil> Because the pkgs depends on the imports (because imports can do stuff like set overlays and such)
<srid> Ah, how do I conditionally import modules based on platform, then?
<infinisil> builtins.system might work
<infinisil> > builtins.system
<{^_^}> attribute 'system' missing, at (string):271:1
<infinisil> > builtins.currentSystem
<{^_^}> "x86_64-linux"
m3lt900 has quit [Quit: leaving]
vandenoever has quit [Read error: Connection reset by peer]
<infinisil> Yeah that
jhoff has quit [Remote host closed the connection]
sigmundv has joined #nixos
argent0 has quit [Ping timeout: 252 seconds]
vandenoever has joined #nixos
vandenoever has joined #nixos
vandenoever has quit [Changing host]
<clever> infinisil: but builtins.currentSystem can differ, if you are evaling an arm expr on x86, and then farming it out to arm build machines
zupo has joined #nixos
zupo has quit [Remote host closed the connection]
<clever> srid: i think a better solution, is to always add X to imports, but then use mkIf and config= within there, to make the effects conditional
<infinisil> Ah yes that's better
magneticduck has joined #nixos
smatting has joined #nixos
philr has quit [Ping timeout: 276 seconds]
<clever> infinisil: ok, thats weird, config = mkIf false { services.doesnt.exist = anything; }; fails
<infinisil> Error?
<clever> The option `services.byron-proxy' defined in `/nix/store/jn9mvgfaj1j3698j0y6mvz3bcksdq45p-source/nix/nixos/cardano-cluster-service.nix' does not exist.
zupo has joined #nixos
<infinisil> wat
<clever> the option doesnt exist, because its module wasnt in imports
<clever> but the mkIf isnt set as far as i can see
<clever> so the entire block should be a no-op
<infinisil> the mkif gets pushed down
<infinisil> so it's config.services.doesnt.exist = mkIf anything
<infinisil> so it's config.services.doesnt.exist = mkIf false anything
<clever> while evaluating the attribute 'config.services.cardano-exporter.pgpass' at undefined position:
<clever> 129 services.cardano-exporter = {
<clever> 130 inherit pgpass;
<clever> 7 pgpass = builtins.toFile "pgpass" "${cfg.postgres.socketdir}:${toString cfg.postgres.port}:${cfg.postgres.database}:${cfg.postgres.user}:*";
<clever> infinisil: i can push a branch if you want to look at it closer...
<infinisil> Oh so it's something in your local branch?
karetsu has quit [Quit: WeeChat 2.6]
<clever> yeah
<clever> the modules are local, nixpkgs is un-touched
<clever> i dont think you will need the binary cache, the speed of the failure implies it isnt reaching IFD
<infinisil> Don't really have the energy right now to dig into it
zupo has quit [Ping timeout: 250 seconds]
<clever> i'll see if i can make a simple repro
<clever> then youll have something much simpler, and it can sit for a while without bitrot
<clever> yep, instant repro
lucasvo has joined #nixos
<clever> infinisil: https://github.com/cleverca22/nix-tests/commit/aa7879de6cc6c967e07081c974fab7f9d1de5ed3 no rush, this example is too simple to gain more errors!
<infinisil> Okay that error comes from the pushing down i mentioned
<infinisil> It results in `config.does.not.exist = mkIf false true`
drakonis has quit [Quit: WeeChat 2.6]
drakonis has joined #nixos
gyroninja has quit [Quit: WeeChat 2.5]
<alexarice[m]> should overriding the source of a haskell package work?
Ariakenom has quit [Read error: Connection reset by peer]
mexisme has quit [Ping timeout: 268 seconds]
<clever> alexarice[m]: with haskell.lib.overrideCabal, yes
<clever> alexarice[m]: but callCabal2nix may be better, to obey the new deps
<alexarice[m]> I want to use the master branch of a git repo, not a cabal version though
gyroninja has joined #nixos
<alexarice[m]> will this still work
<gyroninja> My system just died when upgrading to latest unstable
<infinisil> I guess it stays true to its name after all
karetsu has joined #nixos
zupo has joined #nixos
<gyroninja> It got to the part when it was stopping a bunch of services and then my sytem crashed or something because my monitors all lost signal
karetsu has quit [Client Quit]
zupo has quit [Read error: Connection reset by peer]
positronicbrain has joined #nixos
karetsu has joined #nixos
positronicbrain has quit [Client Quit]
<infinisil> Boot into the previous generation and look at the logs
<gyroninja> Well it boots fine
<gyroninja> It looks like X died
karetsu has quit [Client Quit]
domogled has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74540 → python38Packages.boltons: 19.1.0 -> 19.3.0 → https://git.io/Je1kg
sigmundv has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74541 → python38Packages.biopython: 1.74 -> 1.75 → https://git.io/Je1kV
<gyroninja> The logs seem to show that services lost connection to dbus and then they started losing connection to the X11 server. I'm not sure if the former are normal, maybe it tried restarting dbus?
lordcirth__ has quit [Remote host closed the connection]
lordcirth__ has joined #nixos
<clever> gyroninja: nixos will go out of its way to not restart display-manager, but some things like dbus arent flagged as such, and your desktop manager may crash, which effectively behaves the same as logging out
chloekek has joined #nixos
<edef> oof
<edef> that explains it
<edef> is there a reason we aren't flagging dbus as such
anirrudh has joined #nixos
zupo has joined #nixos
<clever> edef: not sure, it also depends on which desktop manager your using, and if its that fragile
<clever> in my case, i also had a non-obvious crash when i switched from slim to lightdm, which cost me an hour of time to recover from
<anirrudh> Hey guys, I'm not too sure as I am a nix noob - but is chat related to nix-darwin allowed here or only over at #nix-darwin?
zupo_ has joined #nixos
<Yaniel> if the more specific channel exists, that one is preferred
<drakonis> it would break things
<drakonis> dbus is used for more than graphical applications no?
drakonis has quit [Quit: WeeChat 2.6]
<anirrudh> Yaniel thanks!
drakonis has joined #nixos
<Yaniel> but you probably won't get kicked out for talking about nix-darwin in here
zupo has quit [Ping timeout: 265 seconds]
LogicAside is now known as RustyRobot
<drakonis> unlikely
gyroninja has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74542 → python38Packages.diff_cover: 2.4.0 -> 2.4.1 → https://git.io/Je1kH
<Yaniel> the real risk is that your questions get buried under the flood of non-darwin stuff :P
gyroninja has joined #nixos
<Yaniel> or simply go unanswered
gyroninja has quit [Client Quit]
anirrudh has quit [Remote host closed the connection]
zupo_ has quit [Read error: Connection reset by peer]
drakonis has quit [Ping timeout: 276 seconds]
jgeerds has quit [Ping timeout: 276 seconds]
fooker has quit [Remote host closed the connection]
<DigitalKiwi> infinisil: your bot lies!
dansho has joined #nixos
<{^_^}> [nixpkgs] @vbgl opened pull request #74543 → coq_8_10: 8.10.1 → 8.10.2 → https://git.io/Je1kx
chloekek has quit [Ping timeout: 240 seconds]
<tobiasBora> Hello,
ng0 has quit [Quit: Alexa, when is the end of world?]
jumper149 has joined #nixos
__monty__ has quit [Quit: leaving]
<pistache> salut tobiasBora
<pistache> oops wrong channel, sorry
mexisme has joined #nixos
_pash has joined #nixos
<_pash> hello, could someone give me some tips on how to build a derivation for a python package that has a custom build script?
drakonis has joined #nixos
<_pash> referring to this issue here: https://github.com/NixOS/nixpkgs/issues/74395
<{^_^}> #74395 (by pashashocky, 23 hours ago, open): Catboost
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Je1It
<{^_^}> [nixpkgs] @marsam merged pull request #73602 → python37Packages.blist: fix compatibility for python 3.7 → https://git.io/JeKTl
<{^_^}> [nixpkgs] @marsam merged pull request #73599 → python37Packages.PyLD: fix behavior to terminate generators → https://git.io/JeKTY
<{^_^}> [nixpkgs] @marsam pushed 2 commits to release-19.09: https://git.io/Je1Iq
dansho has quit [Quit: Leaving]
<makefu> _pash: there is format = "other"; for these occurrences. check out for example 'pkgs/applications/audio/gpodder/default.nix'
<_pash> makefu: thanks, anything will help - complete nub over here
<_pash> so i would have to build two packages
<_pash> one would be as a nixpkg
<_pash> and one as a python package?
<makefu> _pash: best thing for you would brobably be to check out other packages which do that weird stuff (git grep 'format = "other"'
Guanin has joined #nixos
jumper149 has quit [Quit: WeeChat 2.6]
jimmyeatworld has quit [Quit: Lost terminal]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74544 → python38Packages.bitarray: 1.0.1 -> 1.1.0 → https://git.io/Je1IG
mexisme has quit [Ping timeout: 268 seconds]
smatting has quit [Ping timeout: 268 seconds]
<_pash> thank you for the tips
<_pash> any more useful tips also welcome
Guanin has quit [Remote host closed the connection]
<_pash> how would i go about starting?
<_pash> should i try to clone the repo and try to build it in some arbitary nix env?
<_pash> step 7 right at the bottom says to add the directory to the pythonpath
<_pash> if people will use this in python3.withPythonPackages... how would that work?
<tobiasBora> I'm trying to see what is the best way to deploy a static website (built with hugo) on nixos (on a raspberry pi). 1) put the website code directly in the configuration.nix folder ==> pb: it would be nice to have instead a separate repo for the website 2) use git submodules ==> maybe an option, but still messy 3) refer directly to the git address of the website in the derivation ==> way cleaner, but there are
<tobiasBora> two issues. First, I'm not sure how to handle private repos (I'm using gitea if it helps). Secondly, everytime I edit my website, I'll need to copy the latest hash on my nix repo, and re-deploy... Which is a bit long. 4) So this brings me to put the code of the website in a fixed path, like /var/www/, and configure nginx to use /var/www/ as a static folder. But the questions is moved now: how to populate
<tobiasBora> /var/www. So a simple way would be a simple "rsync" script + local hugo build, but I'd prefer to let my raspberry pi do the build for me... And a script that rsync the code and run hugo + cp on the raspberry pi looks also pretty ugly to me. 6) another option is to use Continuous Integration tools. But I don't want any heavy software (and no docker) on the raspberry pi, as is as few disk space, ram, and cpu
<tobiasBora> ressources. So ideally I'd use something that is light weight + integrate well with gitea (my website)... Do you think travis CI + nix language deploy makes sense? Or do you have nice advices/general methods for that kind of deployment? Thanks!
<tobiasBora> (sorry for the long text)
<{^_^}> [nixpkgs] @corpix opened pull request #74545 → zam-plugins: fix build → https://git.io/Je1IZ
Guanin has joined #nixos
lucasvo has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @pacien opened pull request #74546 → riot-{web,desktop}: 1.5.0 -> 1.5.5 → https://git.io/Je1Ic
<{^_^}> [nixpkgs] @pacien closed pull request #74280 → riot-{web,desktop}: 1.5.0 -> 1.5.4 → https://git.io/JePhM
<{^_^}> [nixpkgs] @r-ryantm opened pull request #74547 → python38Packages.aiorpcx: 0.18.3 -> 0.18.4 → https://git.io/Je1IC
Guanin has quit [Client Quit]
Guanin has joined #nixos
cosimone has quit [Quit: Quit.]
dansho has joined #nixos