andi- 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/nixcon2019 || For best support,
isHavvy has joined #nixos
Havvy has quit [Ping timeout: 260 seconds]
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm_ is now known as mbrgm
<{^_^}> [nixpkgs] @mothsART opened pull request #78488 → correction on Guake i18n : guake use C locales (not gettext directly) → https://git.io/JvqoR
ddellacosta has joined #nixos
mounty has joined #nixos
tv has quit [Ping timeout: 240 seconds]
ixxie has joined #nixos
delli3_ has joined #nixos
delli3_ has quit [Max SendQ exceeded]
klntsky_ has quit [Remote host closed the connection]
klntsky_ has joined #nixos
delli3 has quit [Ping timeout: 260 seconds]
romildo has quit [Quit: Leaving]
erictapen has quit [Ping timeout: 268 seconds]
alex`` has quit [Ping timeout: 240 seconds]
alexherbo2 has quit [Ping timeout: 268 seconds]
erictapen has joined #nixos
tomberek has joined #nixos
jonten has quit [Ping timeout: 268 seconds]
erictapen has quit [Ping timeout: 265 seconds]
erictapen has joined #nixos
Rusty1 has joined #nixos
<Rusty1> seems to have let up
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
turona has quit [Ping timeout: 272 seconds]
turona has joined #nixos
jluttine has quit [Ping timeout: 272 seconds]
jonten has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #78489 → flexget: 3.1.11 -> 3.1.13 → https://git.io/JvqKB
jluttine has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #74112 → aws-checksums: 0.1.3 -> 0.1.5 → https://git.io/JePZC
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvqKg
lord| has joined #nixos
ng0 has quit [Quit: leaving]
<{^_^}> [nixpkgs] @marsam pushed to revert-74112-auto-update/aws-checksums « Revert "aws-checksums: 0.1.3 -> 0.1.5" »: https://git.io/JvqKw
<{^_^}> [nixpkgs] @marsam opened pull request #78490 → Revert "aws-checksums: 0.1.3 -> 0.1.5" → https://git.io/JvqKo
bastion-tester has quit [Disconnected by services]
bastion-tester has joined #nixos
<{^_^}> [nixpkgs] @Profpatsch merged pull request #74817 → ocamlPackages.dum: init at 1.0.1 → https://git.io/JeMc4
<{^_^}> [nixpkgs] @Profpatsch pushed commit from @alexfmpe to master « ocamlPackages.dum: init at 1.0.1 (#74817) »: https://git.io/JvqKX
<scheming`> /[art
scheming` has left #nixos ["ERC (IRC client for Emacs 27.0.50)"]
<{^_^}> [nixpkgs] @marsam merged pull request #78490 → Revert "aws-checksums: 0.1.3 -> 0.1.5" → https://git.io/JvqKo
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvqKD
<bhipple> ryantm: are you around? I was wondering if we have a way to attach ongoing refactoring "nudges" as PR review/lint suggestions
<{^_^}> [nixpkgs] @marsam pushed 0 commits to revert-74112-auto-update/aws-checksums: https://git.io/JvqKy
<bhipple> As an example, we want to start setting verifyCargoDeps=true on all Rust src package updates, like this: https://github.com/NixOS/nixpkgs/pull/77862
<{^_^}> #77862 (by dtzWill, 1 week ago, merged): broot: 0.11.8 -> 0.11.9, verifyCargoDeps
<{^_^}> [nixpkgs] @Profpatsch merged pull request #75672 → pentobi: init at 17.3 → https://git.io/JeQ8P
<{^_^}> [nixpkgs] @Profpatsch pushed commit from @bignaux to master « pentobi: init at 17.3 »: https://git.io/JvqK7
ng0 has joined #nixos
ng0 has joined #nixos
ng0 has quit [Changing host]
<sondr3> I feel very silly, I have nix expression that I've done `builtins.toJSON` on, how do I write to a file in the build/install phase? With `pkgs.writeText` I can't figure out how to copy it to `$out`
<{^_^}> [nixpkgs] @Profpatsch merged pull request #76428 → suil: 0.10.0 -> 0.10.6 → https://git.io/JeFAi
<{^_^}> [nixpkgs] @Profpatsch pushed 0 commits to master: https://git.io/JvqKb
<sondr3> I see the file in my `/nix/store`, I just can't figure out how to place it into $out
<infinisil> sondr3: pkgs.writeText "filename" (builtins.toJSON { ... })
<{^_^}> [nixpkgs] @Profpatsch merged pull request #77066 → intel-gmmlib: 19.3.4 -> 19.4.1 → https://git.io/Jejuu
<{^_^}> [nixpkgs] @Profpatsch pushed commit from @r-ryantm to master « intel-gmmlib: 19.3.4 -> 19.4.1 »: https://git.io/JvqKA
<sondr3> infinisil: that's what I'm doing, but I need it in my $out or the build script fails because it can't find the file
<sondr3> as in, I need $out/pkgs.json and it is in /nix/store/f1phyrl9viw5smg1zmjl4i973b33ssz2-pkgsJson
<infinisil> sondr3: Then `cp ${pkgs.writeText ...} $out/pkgs.json`
<infinisil> Or
<infinisil> sondr3: pkgs.runCommandNoCC "pkgsJson" { text = builtins.toJSON { ... }; passAsFile = [ "text" ]; } "mkdir $out; cp $textPath $out/pkgs.json"
<infinisil> OR
<infinisil> writeTextFile { name = "foo; text = builtins.toJSON ...; destination = "/pkgs.json"; }
<infinisil> sondr3: This is probably the easiest ^
<infinisil> Though untested
<sondr3> ... I just realized it was failing because I forgot `mkdir -p $out`, whelp
<sondr3> infinisil: thanks a ton though
<sondr3> infinisil:++
<sondr3> infinisil++
<{^_^}> infinisil's karma got increased to 198
<infinisil> :D
<sondr3> should've read the error message... `cp: cannot create regular file '/nix/store/mi1zrqp478vw9azg5mdg73mqz8crw7hm-site/pkgs.json': No such file or directory`
<sondr3> I thought it meant the file, but it was really the directory
<sondr3> doh
<sondr3> now I can finally start working on what I wanted to start on ~six hours ago, lol
qubasa has joined #nixos
ng0 has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/Jvq6L
qubasa_ has quit [Ping timeout: 240 seconds]
MmeQuignon has quit [Ping timeout: 265 seconds]
<infinisil> Hehe
<{^_^}> [nixpkgs] @marsam merged pull request #78489 → flexget: 3.1.11 -> 3.1.13 → https://git.io/JvqKB
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvq6i
wildtrees has joined #nixos
justanotheruser has joined #nixos
jonten has quit [Ping timeout: 260 seconds]
<bhipple> sondr3: not all packages in the nix store have to be directories. If you wanted to, you could make your json file just == $out at the top-level, e.g. something like /nix/store/<hash>-pkgs.json
<bhipple> just set name to pkgs.json for your builder and then writeFile to $out
iyzsong has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78491 → asn2quickder: 1.2-6 -> 1.3.0 → https://git.io/Jvq69
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/8a9807f1941 (from 18 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
mniip has quit [Quit: This page is intentionally left blank.]
<{^_^}> [nixpkgs] @mothsART opened pull request #78492 → New package : fluxboxlauncher → https://git.io/Jvq6d
Profpatsch has joined #nixos
<Profpatsch> 999 nicks, nice
NoctisLabs has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78493 → attract-mode: 2.2.0 -> 2.6.1 → https://git.io/Jvq6j
NoctisLabs has joined #nixos
rajivr___ has joined #nixos
<NoctisLabs> Something odd happened, I rebooted my PC and my left audio channel was decreased to 18%, I thought my headphones were broken for a moment there :P
<NoctisLabs> (PulseAudio)
ixxie has quit [Ping timeout: 265 seconds]
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
iyzsong has joined #nixos
fragamus has quit [Quit: Textual IRC Client: www.textualapp.com]
shibboleth has quit [Quit: shibboleth]
h0m1 has quit [Ping timeout: 248 seconds]
h0m1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78494 → bitcoin-classic: 1.3.8 -> 1.3.8uahf → https://git.io/Jvqic
wildtrees has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @bhipple opened pull request #78495 → fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir → https://git.io/Jvqil
<{^_^}> [nixpkgs] @ryantm merged pull request #76429 → tautulli: 2.1.38 -> 2.1.39 → https://git.io/JeFA9
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jvqir
pitch has quit [Ping timeout: 272 seconds]
erictapen has quit [Ping timeout: 268 seconds]
pitch has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78496 → brial: 1.2.6 -> 1.2.7 → https://git.io/Jvqi6
rogue_koder has quit [Ping timeout: 240 seconds]
<zfnmxt> Has anyone had anything break with the renaming of the 'console.font' option? Now my terminal looks like this: https://i.imgur.com/qc0PI5F.png .
rogue_koder has joined #nixos
<zfnmxt> But only in termite and not in urxvt. Fonts elsewhere are also broken (some in Firefox, Rofi, etc.).
<{^_^}> [nixpkgs] @bhipple closed pull request #78495 → fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir → https://git.io/Jvqil
<infinisil> zfnmxt: You confirmed that that renaming caused this?
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @Profpatsch merged pull request #76374 → xmousepasteblock: init at 1.0 → https://git.io/JeFyf
<{^_^}> [nixpkgs] @Profpatsch pushed commit from @petercommand to master « xmousepasteblock: init at 1.0 »: https://git.io/JvqiA
<zfnmxt> infinisil: No, definitely not. It's just the only change I made to my configuration.nix that I'm aware of.
<infinisil> zfnmxt: Oh well then it's got nothing really to do with that. When you update nixpkgs a lot of things change, and only a tiny fraction of those are renames like that. This is almost certainly not related
<Profpatsch> infinisil: hah!
<Profpatsch> I thought you wanted to go to bed :)
<infinisil> Profpatsch: Oh did I say that? If I did I didn't mean it xD
<Profpatsch> Ah, yeah, maybe you didn’t
<zfnmxt> Yeah, makes sense. On further inspection it seems to be happening for any fonts I've installed via 'fonts.fonts'. Any inklings?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78497 → chrome-token-signing: 1.0.7 -> 1.1.0 → https://git.io/JvqPJ
zeta_0 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78498 → cli11: 1.8.0 -> 1.9.0 → https://git.io/JvqPO
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/ab6c15556b1 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
jmarin217 has joined #nixos
rogue_koder has quit [Ping timeout: 240 seconds]
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
rogue_koder has joined #nixos
jmarin217 has left #nixos ["WeeChat 2.7"]
rogue_koder has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78499 → dero: 0.11.6 -> 0.11.7 → https://git.io/JvqPD
<sondr3> is there a way to carry over environment variables from the host to the builder in `installPhase`? I can't access some secrets using GitHub Actions with them
felixfoertsch has quit [Ping timeout: 272 seconds]
felixfoertsch has joined #nixos
<bhipple> sondr3: Yes, look at `impureEnvVars` in https://nixos.org/nix/manual/
<bhipple> hough this is only available with fixed-output derivations
<sondr3> hm, that might be a problem
<bhipple> It's undocumented, but you can setup your daemon to allow read access to certain files/directories as well
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78500 → diff-pdf: 0.3 -> 0.4.1 → https://git.io/JvqPA
delli3 has joined #nixos
delli3 has quit [Max SendQ exceeded]
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
<sondr3> oh well, I give up for today, I need some sleep, thanks bhipple
Supersonic112 is now known as Supersonic
justanotheruser has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @dtzWill merged pull request #78500 → diff-pdf: 0.3 -> 0.4.1 → https://git.io/JvqPA
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JvqXf
tv has joined #nixos
<xavierzwirtz[m]> how do you run commands as root in buildLayeredImage?
fusion809 has joined #nixos
<dongcarl> Anyone got a good example of a working nextcloud/mysql setup? I know that nextcloud can be specific about how it wants mysql to be set up
<xavierzwirtz[m]> I think I am asking the wrong question about root, the real question is how do I add a new user in buildLayeredImage
<clever> xavierzwirtz[m]: add a derivation that has a etc/passwd, etc/group, and etc/shadow
<xavierzwirtz[m]> will try
ddellacosta has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @bhipple opened pull request #78501 → fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir → https://git.io/JvqX8
<xavierzwirtz[m]> clever: perfect, thank you.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78502 → elogind: 241.4 -> 243.4 → https://git.io/JvqX2
<{^_^}> [nixpkgs] @bhipple opened pull request #78503 → ###### Motivation for this change Simple cleanup → https://git.io/JvqXw
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78504 → ethash: 0.4.2 -> 0.4.4 → https://git.io/JvqXK
iyzsong has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @dtzWill opened pull request #78505 → biblatex-check: init at 2019-11-09 → https://git.io/JvqXH
iyzsong has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #78506 → bibclean: init at 3.03 → https://git.io/JvqX7
chagra has joined #nixos
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
mojjo has quit [Ping timeout: 260 seconds]
chagra_ has quit [Ping timeout: 265 seconds]
mexisme has joined #nixos
<infinisil> xavierzwirtz[m]: Can you share it?
m0rphism has quit [Ping timeout: 268 seconds]
justanotheruser has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78507 → gpodder: 3.10.11 -> 3.10.12 → https://git.io/Jvq1B
sondr3 has quit [Quit: WeeChat 2.7]
orivej has joined #nixos
mexisme has quit [Ping timeout: 260 seconds]
mniip has joined #nixos
lord| has quit [Read error: Connection reset by peer]
thomashoneyman has joined #nixos
<thomashoneyman> does anyone know if it's possible to fetch a file's contents from GitHub without knowing the rev?
<thomashoneyman> i know the URL and I know the SHA256
lord| has joined #nixos
<thomashoneyman> like i know "https://github.com/owner/repo/releases/download/path/file.dhall" and "sha256:a1b2c3..."
<clever> thomashoneyman: pkgs.fetchurl
dboi has joined #nixos
<xavierzwirtz[m]> infinisil: work in progress apache2 container using buildLayeredImage: https://gist.github.com/xavierzwirtz/74157f70771cdbc1db465dffbe188852
<xavierzwirtz[m]> infinisil: writing passwd and group file via contents is working
<thomashoneyman> clever: thanks!
<thomashoneyman> ...apparently the sha256 ain't right :(
Rusty1 has quit [Quit: Konversation terminated!]
<xavierzwirtz[m]> What is the right way to create python2 derivation with the mercurial package loaded into it? I am trying to do `(pkgs.python2.withPackages (ps : [pkgs.mercurial]))` but I cant `import mercurial` afterwards
bfrog has quit [Ping timeout: 246 seconds]
bfrog has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #78457 → Add vim-smt2 → https://git.io/JvqnQ
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/Jvq1h
tomberek has quit [Ping timeout: 265 seconds]
<hyper_ch> wow, nixos-unstable is pretty current currently :)
thomashoneyman has quit [Quit: Lost terminal]
siiky has quit [Ping timeout: 248 seconds]
Fulgen has quit [Ping timeout: 252 seconds]
palo1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78508 → libasr: 1.0.2 -> 1.0.4 → https://git.io/JvqMT
dboi has quit [Ping timeout: 260 seconds]
palo has quit [Ping timeout: 240 seconds]
palo1 is now known as palo
hyper_ch has quit [Quit: ZNC 1.7.5 - https://znc.in]
hyper_ch has joined #nixos
jboy has quit [Quit: bye]
<hyper_ch> I think I have to move away from firefox again
bhipple has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78510 → libow: 3.2p1 -> 3.2p3 → https://git.io/JvqMn
hyper_ch has quit [Quit: ZNC 1.7.5 - https://znc.in]
jboy has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78511 → libqalculate: 3.6.0 -> 3.7.0 → https://git.io/JvqM4
hyper_ch has joined #nixos
mniip has quit [Quit: This page is intentionally left blank.]
mac10688 has quit [Ping timeout: 265 seconds]
hyper_ch has quit [Quit: ZNC 1.7.5 - https://znc.in]
hyper_ch has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e5ca1ca263d (from 54 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
wavirc22_ has quit [Ping timeout: 268 seconds]
mniip has joined #nixos
chagra has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78512 → lightstep-tracer-cpp: 0.11.0 -> 0.12.0 → https://git.io/JvqMP
fusion809 has quit [Remote host closed the connection]
fusion809 has joined #nixos
chagra has joined #nixos
bgamari_ has quit [Remote host closed the connection]
bgamari_ has joined #nixos
aiverson has joined #nixos
<aiverson> I'm writing a nix derivation to package the Simula VR window manager. The build is failing to find GLES3/gl3.h during the compilation. I've got pkgs.libglvnd.dev in the buildInputs. I've tried using pkgs.libglvnd, pkgs.mesa, and pkgs.mesa.dev. Other things in buildInputs are working, and entering the build environment with a shell and inspecting the environment variables does show the appropriate -isystem flag point
<aiverson> ing to the include directory of libglvnd.dev which does have GLES3/gl3.h in it in the compiler configuration. What else should I check or try to fix it?
fusion809 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78513 → litecoind: 0.16.3 -> 0.17.1 → https://git.io/JvqMS
fusion809 has joined #nixos
<{^_^}> [nixpkgs] @Frostman opened pull request #78514 → minecraft-server: 1.14.4 -> 1.15.2 → https://git.io/JvqMH
jmarin217 has joined #nixos
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78515 → mage: 1.8.0 -> 1.9.0 → https://git.io/JvqMx
siiky has joined #nixos
wavirc22 has quit [Ping timeout: 268 seconds]
mexisme has joined #nixos
domogled has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78516 → mgba: 0.7.3 -> 0.8.0 → https://git.io/JvqDU
chagra has quit [Read error: Connection reset by peer]
Heirlung has quit [Ping timeout: 240 seconds]
chagra has joined #nixos
<NemesisD> is `propagatedBuildInputs` appropriate for runtime dependencies? i'm trying to write a derivation for a java thing and that needs java to run
Heirlung has joined #nixos
<{^_^}> [nixpkgs] @offlinehacker merged pull request #78513 → litecoind: 0.16.3 -> 0.17.1 → https://git.io/JvqMS
<{^_^}> [nixpkgs] @offlinehacker pushed 2 commits to master: https://git.io/JvqDG
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78517 → mopidy-musicbox-webclient: 2.3.0 -> 2.4.0 → https://git.io/JvqDW
cartwright has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78518 → mtprotoproxy: 1.0.8 -> 1.0.9 → https://git.io/JvqDR
cartwright has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78519 → namecoin: nc0.15.99-name-tab-beta2 -> nc0.19.0.1 → https://git.io/JvqDw
ng0 has joined #nixos
ng0 has quit [Changing host]
ng0 has joined #nixos
chagra_ has joined #nixos
chagra has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78520 → odpic: 3.2.1 -> 3.3.0 → https://git.io/JvqDD
logzet has joined #nixos
aveltras has joined #nixos
mexisme has quit [Ping timeout: 265 seconds]
kleisli has quit [Ping timeout: 272 seconds]
<evils> NemesisD: that sounds like you want `buildInputs`
<{^_^}> [nixpkgs] @peti merged pull request #78198 → sane-backends: 1.0.27 -> 1.0.28 → https://git.io/JvLYn
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/JvqyZ
NoctisLabs has quit [Quit: WeeChat 2.7]
NoctisLabs has joined #nixos
aiverson has quit [Ping timeout: 260 seconds]
o1lo01ol1o has joined #nixos
<chagra_> I doubt this would work but is it possible to somehow use the value of another variable to define a new user. For example set the value user = "chagra" and then do users.users.${user}.isNormalUser=true; ?
<tilpner> Yes, it's possible
<chagra_> oh wow, do I put it just like that or should I do put in quotations like so users.users."${user}"?
<chagra_> actually ill just test it lol
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78521 → ott: 0.29 -> 0.30 → https://git.io/Jvqyr
aswanson has quit [Quit: WeeChat 2.6]
o1lo01ol1o has quit [Ping timeout: 268 seconds]
vidbina_ has joined #nixos
m0rphism has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78522 → p11-kit: 0.23.18.1 -> 0.23.19 → https://git.io/Jvqyo
<{^_^}> [nixpkgs] @svalaskevicius opened pull request #78523 → update deluge → https://git.io/JvqyS
wavirc22 has quit [Ping timeout: 265 seconds]
o1lo01ol1o has joined #nixos
NoctisLabs has quit [Quit: WeeChat 2.7]
wavirc22 has joined #nixos
wavirc22 has quit [Read error: Connection reset by peer]
wavirc22 has joined #nixos
wavirc22 has quit [Read error: Connection reset by peer]
wavirc22 has joined #nixos
wavirc22 has quit [Ping timeout: 268 seconds]
Chiliparrot has joined #nixos
alexherbo2 has joined #nixos
leotaku has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78524 → psc-package: 0.5.1 -> 0.6.0 → https://git.io/JvqSn
alex`` has joined #nixos
leotaku has joined #nixos
phreedom has quit [Remote host closed the connection]
phreedom has joined #nixos
chagra_ has quit [Quit: WeeChat 2.6]
chagra has joined #nixos
kleisli has joined #nixos
siiky has quit [Quit: leaving]
fendor has joined #nixos
xkapastel has joined #nixos
mounty has quit [Ping timeout: 272 seconds]
__monty__ has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
opthomasprime has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78525 → rednotebook: 2.15 -> 2.16 → https://git.io/JvqSy
o1lo01ol1o has quit [Ping timeout: 260 seconds]
thc202 has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed to release-19.09 « Merge #78452: thunderbird*: 68.4.1 -> 68.4.2 »: https://git.io/JvqSh
opthomasprime has left #nixos [#nixos]
kleisli has quit [Ping timeout: 268 seconds]
mounty has joined #nixos
irl25519 has joined #nixos
chloekek has joined #nixos
knupfer has joined #nixos
smatting has joined #nixos
CMCDragonkai1 has joined #nixos
silver has joined #nixos
irl25519 has quit [Quit: My computer has gone to sleep. ZZZzzz…]
orivej has quit [Ping timeout: 268 seconds]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78526 → seasocks: 1.4.2 -> 1.4.3 → https://git.io/Jvq9C
o1lo01ol1o has quit [Ping timeout: 268 seconds]
jgeerds has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
irl25519 has joined #nixos
vidbina_ has quit [Ping timeout: 272 seconds]
fenedor has joined #nixos
fendor has quit [Ping timeout: 268 seconds]
irl25519 has quit [Quit: My computer has gone to sleep. ZZZzzz…]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/ba8fbd5352b (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
fenedor is now known as fendor
chagra has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78528 → snappy: 1.1.7 -> 1.1.8 → https://git.io/JvqHk
chagra has joined #nixos
<philipp[m]> Where are the phases for package builds defined? Can't find them right now.
v88m has quit [Ping timeout: 268 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78530 → spdk: 19.10 -> 19.10.1 → https://git.io/JvqHn
<__monty__> Nixpkgs manual probably.
siiky has joined #nixos
chagra has quit [Quit: WeeChat 2.6]
chagra has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78531 → strawberry: 0.6.7 -> 0.6.8 → https://git.io/JvqH0
MmeQuignon has joined #nixos
o1lo01ol1o has joined #nixos
fendor_ has joined #nixos
Naptra has joined #nixos
fendor_ has left #nixos [#nixos]
o1lo01ol1o has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @srghma opened pull request #78532 → hubstaff: 1.5.2 -> 1.5.7 → https://git.io/JvqH1
chagra has quit [Ping timeout: 260 seconds]
chagra has joined #nixos
pepesza has quit [Ping timeout: 265 seconds]
wavirc22 has joined #nixos
opthomasprime has joined #nixos
opthomasprime has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mmahut merged pull request #78237 → opera: 65.0.3467.48 -> 66.0.3515.36 → https://git.io/JvLBE
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvqHF
<{^_^}> [nixpkgs] @mmahut merged pull request #78186 → jython: 2.7.1 -> 2.7.2b2 → https://git.io/JvLLd
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvqHb
<{^_^}> [nixpkgs] @mmahut merged pull request #77906 → snabb: 2018.01.2 -> 2019.11 → https://git.io/JvT2i
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvqHN
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78533 → tesseract: 3.05.00 -> 4.1.1 → https://git.io/JvqHx
opthomasprime has joined #nixos
opthomasprime has quit [Remote host closed the connection]
wavirc22 has quit [Read error: Connection reset by peer]
wavirc22 has joined #nixos
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
fpob has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
fpob has joined #nixos
CMCDragonkai1 has joined #nixos
v88m has joined #nixos
CMCDragonkai1 has quit [Client Quit]
xkapastel has quit [Quit: Connection closed for inactivity]
wavirc22 has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78534 → thonny: 3.2.4 -> 3.2.6 → https://git.io/JvqQI
andreas303 has quit [Remote host closed the connection]
v88m has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78536 → tiled: 1.3.1 -> 1.3.2 → https://git.io/JvqQY
andreas303 has joined #nixos
cosimone has joined #nixos
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78537 → tinygo: 0.10.0 -> 0.11.0 → https://git.io/JvqQC
andreas303 has quit [Remote host closed the connection]
andreas303 has joined #nixos
chagra has quit [Quit: WeeChat 2.6]
linkrage_ has joined #nixos
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
<{^_^}> [nixpkgs] @nh2 merged pull request #78502 → elogind: 241.4 -> 243.4 → https://git.io/JvqX2
alex`` has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @nh2 pushed 2 commits to master: https://git.io/JvqQu
linkrage_ is now known as linkrage
linkrage has quit [Client Quit]
linkrage_ has joined #nixos
chagra has joined #nixos
linkrage_ has quit [Client Quit]
linkrage has joined #nixos
linkrage has left #nixos [#nixos]
andreas303 has quit [Remote host closed the connection]
linkrage has joined #nixos
<{^_^}> [nixpkgs] @svalaskevicius closed pull request #78523 → add deluge v2 → https://git.io/JvqyS
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78539 → tpm2-tools: 4.1 -> 4.1.1 → https://git.io/JvqQ2
cosimone has quit [Quit: Quit.]
andreas303 has joined #nixos
<philipp[m]> I'm doing `st.patches = [ (pkgs.writeTextFile { name = "st.patch"; text = builtins.readFile /homefiles/st-hack.diff; })`.
<philipp[m]> ];
<{^_^}> [nixpkgs] @srghma opened pull request #78540 → pretty-simple: init at 3.2.1.0 → https://git.io/JvqQi
meck has quit [Quit: ZNC 1.7.5 - https://znc.in]
chagra has quit [Ping timeout: 265 seconds]
<philipp[m]> Why isn't the content of `/homefiles/st-hack.dif` intepreted as a nix-string (e.g. replace `${pkgs.hello}` with the proper store path?
chagra has joined #nixos
meck has joined #nixos
chagra has quit [Client Quit]
pepesza has joined #nixos
chagra has joined #nixos
o1lo01ol1o has joined #nixos
chagra has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78541 → unetbootin: 675 -> 677 → https://git.io/JvqQD
o1lo01ol1o has quit [Ping timeout: 240 seconds]
chagra has joined #nixos
jonten has joined #nixos
<{^_^}> [nixpkgs] @mmahut merged pull request #78107 → morph: add openssh to PATH → https://git.io/JvIls
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvqQA
<{^_^}> [nixpkgs] @zimbatm pushed to master « direnv: 2.21.0 -> 2.21.1 »: https://git.io/JvqQp
<{^_^}> [nixpkgs] @Atemu opened pull request #78543 → dnscrypt-proxy2 service: init → https://git.io/Jvq7e
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/06a8388d160 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<tilpner> philipp[m]: I suspect you want (st.override { patches = [ /homefiles/st-hack.diff ]; })
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78544 → vips: 8.8.4 -> 8.9.0 → https://git.io/Jvq7v
wavirc22 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @marsam opened pull request #78545 → pgformatter: 4.1 -> 4.2 → https://git.io/Jvq7f
wavirc22 has joined #nixos
<tilpner> No, that won't substitute your paths
<tilpner> philipp[m]: Check the rustup expression for an example of how to generate a patch
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
knupfer has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @marsam opened pull request #78546 → tfsec: 0.13.0 -> 0.19.0 → https://git.io/Jvq7s
<philipp[m]> Hmmmm... If I use this technique to patch a source that gets compiled, nix shouldn't pick that up as a runtime-dependency, right?
<philipp[m]> Then again, my technique should also just count as a build-time dependency.
jgeerds has quit [Ping timeout: 268 seconds]
justanotheruser has quit [Ping timeout: 272 seconds]
opthomasprime has joined #nixos
opthomasprime has left #nixos [#nixos]
o1lo01ol1o has joined #nixos
ayerhart has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78547 → xdelta: 3.0.11 -> 3.1.0 → https://git.io/Jvq76
<{^_^}> [nixpkgs] @dywedir merged pull request #78536 → Merge pull request #78536 from r-ryantm/auto-update/tiled → https://git.io/JvqQY
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/Jvq7i
o1lo01ol1o has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #78548 → procs: 0.9.0 -> 0.9.2 → https://git.io/Jvq71
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/73a59af35bb (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
Rusty1 has joined #nixos
cosimone has joined #nixos
captn3m0 has quit [Quit: ZNC 1.7.5 - https://znc.in]
captn3m0 has joined #nixos
Chiliparrot has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78549 → yder: 1.4.8 -> 1.4.9 → https://git.io/Jvq7b
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78550 → z-lua: 1.7.3 -> 1.7.4 → https://git.io/Jvq7j
<exarkun> do nixops-managed generations encompass nixops configuration changes (eg nixPath values)? Can I roll-back to a previous nixPath setting if I have nixops rollbacks enabled and I re-deploy with a modified value?
<exarkun> hm `nixops modify -I` docs say *append*
justanotheruser has joined #nixos
elux has joined #nixos
<elux> hi there
<elux> my system has 2 graphics cards of which are both amdgpu. id like to use one for the host os and one with vfio-pci. everything is working except when i boot my computer, when the amdgpu driver loads, it'll sometimes load as the host graphics output, the wrong gpu. So i've been trying to play with nixos stage-1 and ensure that my guest graphics card goes into vfio-pci mode before i load the amdgpu.. but this
<elux> has been proving to be super challenging
<elux> any suggestions?
<{^_^}> [nixpkgs] @thalesmg opened pull request #78551 → Update ATS2 version to 0.4.0 → https://git.io/Jvq5W
eri has joined #nixos
Soo_Slow has quit [Quit: Soo_Slow]
<tilpner> elux: This is all I have, I never got it working: https://search.tx0.co/?q=vfio&i=nope&files=&repos=
<tilpner> But if you don't have a line similar to that, that's probably something you want to try
v88m has joined #nixos
chagra has quit [Ping timeout: 265 seconds]
chagra has joined #nixos
knupfer has joined #nixos
chloekek has quit [Ping timeout: 265 seconds]
<elux> tilpner: did you never get vfio working at all?
<elux> or the modprobeconfig things?
<elux> ive got it working with kernelParams = ["iommu=pt" "amd_iommu=on" "pcie_aspm=off" "vfio_pci.ids=1002:731f,1002:ab38,1b73:1100"]
<elux> vfio works great then. except when i boot, seems like its random which gpu is selected for the boot gpu, and this is when i run into issues having to reboot a bunch to get the right host card.. so im trying to force-config this by getting vfio binding to happen early on etc
sondr3 has joined #nixos
elux has quit [Remote host closed the connection]
elux has joined #nixos
Fulgen has joined #nixos
knupfer1 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #78524 → psc-package: 0.5.1 -> 0.6.0 → https://git.io/JvqSn
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvq51
knupfer has quit [Ping timeout: 260 seconds]
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @bennofs opened pull request #78553 → liquibase: 3.6.2 -> 3.8.5 → https://git.io/Jvq5D
<{^_^}> [nixpkgs] @marsam opened pull request #78554 → buildpack: 0.6.0 -> 0.7.0 → https://git.io/Jvq5y
kaliumxyz has quit [Remote host closed the connection]
chagra has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @tfc opened pull request #78555 → nixosTests.limesurvey: port to python and drop badly utf encoded characters → https://git.io/Jvq57
chagra has joined #nixos
<{^_^}> [nixpkgs] @tfc opened pull request #78556 → nixosTests: Port more tests → https://git.io/Jvq5d
elux has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @Infinisil merged pull request #78481 → Merge pull request #78481 from Infinisil/mumble-celt → https://git.io/JvqaL
<{^_^}> [nixpkgs] @Infinisil pushed 3 commits to master: https://git.io/Jvq5j
o1lo01ol1o has joined #nixos
elux has joined #nixos
o1lo01ol1o has quit [Ping timeout: 240 seconds]
mexisme has joined #nixos
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/06a8388d160 (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
mexisme has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #78537 → tinygo: 0.10.0 -> 0.11.0 → https://git.io/JvqQC
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvqd8
<{^_^}> [nixpkgs] @marsam merged pull request #78550 → z-lua: 1.7.3 -> 1.7.4 → https://git.io/Jvq7j
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvqd0
civodul has joined #nixos
ng0_ has joined #nixos
ng0_ has joined #nixos
ng0_ has quit [Changing host]
<{^_^}> [nixpkgs] @fgaz opened pull request #78558 → mindustry,mindustry-server: make it possible to choose what to build (server and/or client) → https://git.io/JvqdM
ng0 has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « linux: 5.4.14 -> 5.4.15 »: https://git.io/Jvqd5
<{^_^}> [nixpkgs] @NeQuissimus pushed to release-19.09 « linux: 5.4.14 -> 5.4.15 »: https://git.io/Jvqdd
elux has quit [Quit: leaving]
o1lo01ol1o has joined #nixos
chagra has quit [Ping timeout: 272 seconds]
chagra has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #78508 → libasr: 1.0.2 -> 1.0.4 → https://git.io/JvqMT
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvqFe
o1lo01ol1o has quit [Ping timeout: 265 seconds]
halfbit has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/8c45e95bb4e (from 52 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
smatting has quit [Ping timeout: 260 seconds]
<sigwinch28> I'm trying to mount an NFSv4 share, but I can't seem to get idmapd running (systemctl says it's masked). what's up with that?
tomberek has joined #nixos
<{^_^}> [nixpkgs] @jtojnar opened pull request #78559 → haskellPackages.bustle: fix building on Hydra → https://git.io/JvqFZ
Simerax has joined #nixos
Simerax has quit [Client Quit]
dm9 has joined #nixos
chagra has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @qknight opened pull request #78560 → hll2340dw brother: added driver to cups → https://git.io/JvqF1
lewo has quit [Ping timeout: 258 seconds]
linkrage has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78561 → bind: 9.14.9 -> 9.14.10 → https://git.io/JvqFS
<{^_^}> [nixpkgs] @fgaz opened pull request #78562 → lobster: init at unstable-2020-01-22 → https://git.io/JvqFN
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78563 → aws-checksums: 0.1.3 -> 0.1.5 → https://git.io/JvqFx
chagra has joined #nixos
dsx has quit [Quit: dsx]
dsx has joined #nixos
nikola_i has joined #nixos
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jvqbq
<{^_^}> [nixpkgs] @ryantm merged pull request #78455 → minecraft-launcher: 2.1.9618 -> 2.1.11314 → https://git.io/JvqnL
lorimer has quit [Ping timeout: 272 seconds]
remirol has joined #nixos
irl25519 has joined #nixos
kleisli has joined #nixos
jonten has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78564 → amtk: 5.0.1 -> 5.0.2 → https://git.io/JvqbW
halfbit has quit [Ping timeout: 260 seconds]
remirol has quit [Ping timeout: 260 seconds]
lorimer has joined #nixos
irl25519 has quit [Quit: Textual IRC Client: www.textualapp.com]
jD91mZM2 has quit [Quit: ZNC 1.7.5 - https://znc.in]
tomberek has quit [Ping timeout: 265 seconds]
ayerhart has joined #nixos
chagra has quit [Ping timeout: 268 seconds]
chagra has joined #nixos
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @teto opened pull request #78565 → Lua for sile → https://git.io/JvqNq
pitch has quit [Ping timeout: 245 seconds]
jD91mZM2 has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
booglewoogle has joined #nixos
booglewoogle has quit [Client Quit]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78566 → armadillo: 9.800.3 -> 9.800.4 → https://git.io/JvqNr
jgeerds has joined #nixos
UndefinedIsNotAF has joined #nixos
<{^_^}> [nixpkgs] @WilliButz merged pull request #78469 → nixos/prometheus-postfix-exporter: fix typo → https://git.io/JvqBe
<{^_^}> [nixpkgs] @WilliButz pushed 2 commits to master: https://git.io/JvqNb
<{^_^}> [nixpkgs] @volth opened pull request #78567 → xfce4-dockbarx-plugin: fix for xfce 4.14 → https://git.io/JvqNA
cosimone has quit [Read error: Connection reset by peer]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
jonten has joined #nixos
chloekek has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
teto has joined #nixos
cosimone has joined #nixos
cosimone has quit [Client Quit]
OmnipotentEntity has quit [Remote host closed the connection]
erictapen has joined #nixos
vidbina_ has joined #nixos
dingenskirchen has quit [Remote host closed the connection]
dingenskirchen has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/53181ab49d1 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
o1lo01ol1o has joined #nixos
megfault has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @gebner merged pull request #78511 → Merge pull request #78511 from r-ryantm/auto-update/libqalculate → https://git.io/JvqM4
<{^_^}> [nixpkgs] @gebner pushed 3 commits to master: https://git.io/JvqAS
Chiliparrot has joined #nixos
o1lo01ol1o has quit [Ping timeout: 268 seconds]
cosimone has joined #nixos
thblt has joined #nixos
Naptra has quit [Quit: Leaving]
<thblt> I'm using NixOS unstable with zsh and command-not-found.enable = true; For some reason, when I call a non-existing command in zsh, the error code is 0 (all good). This doesn't happen with bash, where $? == 127. Is this worth a bug report?
<thblt> when I directly call command-not-found whatever from the zsh prompt, I get $? == 127. The problem seems to be with zsh integration.
<NemesisD> how do you all test a derivation that you're working on? i want to make sure the program runs in a pure shell with no external dependencies
<evanjs> `nix-shell --pure --eval -E `with import <nixpkgs> {}; callPackage ./default.nix {}'` I cant imagine that's correct though
<{^_^}> [nixpkgs] @gebner merged pull request #78435 → heaptrack: wrap with wrapQtAppsHook → https://git.io/JvqJ0
<{^_^}> [nixpkgs] @gebner pushed 2 commits to master: https://git.io/JvqxO
<evanjs> *-E
<evanjs> omg my irc client is killing me. capital e
<evanjs> if you already have a shell.nix, you simply need `nix-shell --pure` 😃
<{^_^}> [nixpkgs] @gebner pushed commit from @symphorien to release-19.09 « heaptrack: wrap with wrapQtAppsHook »: https://git.io/Jvqxc
drakonis has joined #nixos
tomberek has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed commit from @dtzWill to master « xorg.xorgserver: 1.20.6 -> 1.20.7 (PR #77706) »: https://git.io/JvqxE
<{^_^}> [nixpkgs] @vcunat closed pull request #77706 → xorg.xorgserver: 1.20.6 -> 1.20.7 → https://git.io/JvUIR
werner291 has joined #nixos
<evanjs> Any magic players / NixOS users want to review this? ended up bumping it the other day as somebody couldn't get it working -- #78240
<{^_^}> https://github.com/NixOS/nixpkgs/pull/78240 (by evanjs, 4 days ago, open): cockatrice: 2017-08-31 -> 2019-08-31
<evanjs> Or gitkraken users *shrugs* #78420
<{^_^}> https://github.com/NixOS/nixpkgs/pull/78420 (by evanjs, 2 days ago, open): gitkraken: 6.4.1 -> 6.5.0
knupfer has quit [Ping timeout: 260 seconds]
fresheyeball has joined #nixos
<NemesisD> evanjs: so my default.nix is `{ pkgs ? import <nixpkgs> {} }: pkgs.callPackage ./derivation.nix {}`, but this just drops me in the build environment for the derivation right?
<evanjs> wait what. your default.nix has the package definition, right?
<fresheyeball> so I got the helm synth with nix-env -iA nixos.helm
<fresheyeball> and I got musnix working
<fresheyeball> but I can't save anything
opthomasprime has joined #nixos
ayerhart has quit [Quit: ayerhart]
<fresheyeball> does anyone know why the basic save and load functionality in helm doesn't work on nixos?
ayerhart has joined #nixos
knupfer has joined #nixos
opthomasprime has quit [Remote host closed the connection]
opthomasprime has joined #nixos
<evanjs> fresheyeball: probably unrelated, but when you say musnix, do you mean musnix w/realtime enabled?
<fresheyeball> evanjs: if I add the realtime = true; flag it fails to compile the kernel
<fresheyeball> but I did specify the _rt version of the kernel
<{^_^}> [nixpkgs] @Ma27 pushed to master « python3Packages.pytesseract: 0.3.1 -> 0.3.2 »: https://git.io/JvqxH
<evanjs> Okay, then I figure you've seen https://github.com/musnix/musnix/issues/100 already
<{^_^}> musnix/musnix#100 (by digitalsignalperson, 33 weeks ago, open): nixos unstable build error: option not set correctly: PREEMPT
<NemesisD> evanjs: i have a derivation.nix with the derivation, default.nix has the callpackage to instantiate it. i'm not married to that pattern if there's another way
<evanjs> Assuming this is unrelated, though 😃
<evanjs> NemesisD: yeah I'd put the derivation in a default.nix
<fresheyeball> evanjs: I hadn't. but yeah, unrelated to current question
<evanjs> fresheyeball: alright, thanks. I figured as much. can't imagine the program would require a realtime kernel
<evanjs> NemesisD: hold on lemme get my script for this
<fresheyeball> it makes cool noises!
<fresheyeball> but I can't save or load patches
<NemesisD> evanjs: i'm sort of getting that nix-shell puts you in the build environment. i assume i'm supposed to run all the phases in order, but for some reason when i do `type installPhase` it does not resemble the `installPhase` in my derivation
Synthetica has joined #nixos
<{^_^}> [nixpkgs] @JohnAZoidberg merged pull request #78549 → yder: 1.4.8 -> 1.4.9 → https://git.io/Jvq7b
<{^_^}> [nixpkgs] @JohnAZoidberg pushed 2 commits to master: https://git.io/Jvqxd
<evanjs> NemesisD: `#!/usr/bin/env sh
<evanjs> nix-build -E "with import <nixpkgs> {}; callPackage "./${1-default.nix}" {}" --show-trace`
tabasko has left #nixos [#nixos]
<evanjs> I just put that in `~/bin/nbuild` and run `nbuild` whenever I need to test a derivation in the same directory 😝
<evanjs> NemesisD: yeah, nix-shell does just that. if you run nix-build like the above, it will test to make sure it compiles and etc while ignoring the stuff specified in the derivation
<NemesisD> evanjs: thanks that seems like it actually tries to build! what does the 1-default.nix part do?
<evanjs> that simply takes the first argument, else if it's unspecified it will use default.nix
<evanjs> so if the derivation is called `drv.abc`, i would run `nbuild drv.abc`
<NemesisD> ideally i'd like it to build and then drop me into an environment with that derivation enabled
<evanjs> Yes, please hold, there's a wiki page for this... i think
<evanjs> bah you're right though. that won't build it. I know `genericBuild` will run all the phases for you but i don't think that's what you want atm
<fresheyeball> evanjs: I just updated my musnix channel and am seeing if it wont compile now
<fresheyeball> evanjs: what music software do you use?
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JvqpL
<evanjs> fresheyeball: none but we've been looking at musnix for a while at work due to a need for real-time kernels. hoping to use musnix or similar eventually 😝
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78569 → cmake: 3.16.2 -> 3.16.3 → https://git.io/JvqpY
alex` has joined #nixos
alex` is now known as Guest1601
bhipple has joined #nixos
wat has joined #nixos
gustavderdrache has joined #nixos
<wat> Hey! I'm trying to set the verbosity on nix-build, but it just tries to load the level as a file. "nix-build -v 5" gives me "5: no such file or directory"
<bhipple> Try `nix-build -vvvvv`
<wat> arrrgh
<bhipple> :)
<evanjs> NemesisD: if it was me, I would act as if I'm trying to add the package to nixpkgs, and after it in pkgs/ and all-packages, I would run `nix-env -f . -iA package` in the nixpkgs root. Man this can't be the best way though
erictapen has quit [Ping timeout: 260 seconds]
<bhipple> Another trick: inside the derivation itself, add the attribute `NIX_DEBUG = 6`. This will turn on set -x in the stdenv builder for that one package. The top-level -v arguments tend to give you a lot more verbosity about the nix infra (grabbing/releasing store lockfiles, etc.), rather than debug info about the build itself
<wat> sounds good. Is there a way to bump up the NIX_DEBUG in all the derivations? Like if there's a derivation that calls another derivation in a let statement, would you have to set NIX_DEBUG invidually in all the derivations?
<evanjs> NemesisD: ah i found it
<evanjs> omg. reading the wiki page again. `--nix-env`
<evanjs> Just tack that onto your `nix-build` invocation!
magnetophon has joined #nixos
<evanjs> Doesn't look like it puts it into the PATH but you will end up with a result symlink containing your derivation build result and the proper environment AFAICT
<evanjs> 😕 too bad `--run-env` isn't in the auto-completions. hrm...
<bhipple> wat: generally that's what the top-level -vvvvvv will do, more or less.
<NemesisD> evanjs: is --nix-env a new flagon nix-build? it isn't available in my version of nix-build
<gchristensen> evanjs: eh? this sounds like a bug?
<gchristensen> evanjs: or misdocumented?
<evanjs> gchristensen: *shrugs* all I know is that it doesn't show up when I tab tab
<gchristensen> nix-build doesn't have a --nix-env
dm9 has quit [Quit: WeeChat 2.7]
<gchristensen> (and if it "does", it is probably a bug)
<evanjs> --run-env
<evanjs> oops
<evanjs> that was on me lol
<evanjs> still doesn't show up in the manpages/auto completion though!
<gchristensen> interesting
<evanjs> NemesisD: yeah sorry my bad. `--run-env` is the correct flag 😃
vidbina_ has quit [Ping timeout: 265 seconds]
<evanjs> try launching a shell with nix-build + that and then running your binary with e.g. `./result/bin/binary_name`
oborot has joined #nixos
chagra has quit [Quit: WeeChat 2.6]
<oborot> Any ideas on where I should start with troubleshooting device-related issues? E.g., the VGA display port on my ThinkPad doesn't work.
<oborot> I'm assuming this would be a lack of drivers issue.
kenjis1 has joined #nixos
<evanjs> oborot: I typically start with eg `dmesg -Tw` or (rip)grepping it to see if there’s anything display related
mexisme has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jvqpi
<evanjs> X logs also often provide good info. Or your display-manager’s unit via `journalctl -u`
chagra has joined #nixos
o1lo01ol1o has joined #nixos
<oborot> Thanks, what sort of message might be display related?
<oborot> Should I just grep for "display"?
kraem has joined #nixos
o1lo01ol1o has quit [Ping timeout: 260 seconds]
<evanjs> For units it depends on your setup. For my it’s like `gdm-x-session` I think. `display-manager` is the base. In dmesg, hrm. Maybe video, display, etc
<tomberek> is there a way to obtain the attribute names of everything in a system closure (or in a local nix store)?
erictapen has joined #nixos
<evanjs> lspci might provide some insight too
<tomberek> I'm trying to script up a tool that gets all open PRs from github, and joins that with a list of your own system. Just as a way for people to quickly get a list of PRs they may be interested in because the already have the relevant packages installed.
<fresheyeball> evanjs: The NVIDIA driver does not support real-time kernels. If you
<fresheyeball> that appears to be my issue now
<evanjs> Ahhhh. Yeah not surprising to say the least. What about nouveau?
thblt has left #nixos ["ERC (IRC client for Emacs 28.0.50)"]
<fresheyeball> evanjs: I am just more focused on trying to get helm to save things
<fresheyeball> it's frustrating making some art you like and then you can't save it
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78570 → cjdns: 20.4 -> 20.5 → https://git.io/JvqpA
<{^_^}> [nixpkgs] @Ma27 pushed to master « cargo-tree: 0.27.0 -> 0.28.0 »: https://git.io/Jvqpx
<tilpner> tomberek: Probably not, I would check with grahamc on how to use ofborg results to match by name
<tilpner> tomberek: Here's the nixpkgs-review part that uses ofborg results: https://github.com/Mic92/nixpkgs-review/blob/master/nixpkgs_review/github.py
<tilpner> May I just draw attention to the best line: status["description"] == "^.^!"
bhipple has quit [Ping timeout: 268 seconds]
<gchristensen> I gues I can never change that lol
<tilpner> gchristensen: Maybe you can recommend tomberek on what parts to rely on
bhipple has joined #nixos
<gchristensen> I have nobetter answer right now
<{^_^}> [hydra] @basvandijk opened pull request #707 → Fix printing aggregate status → https://git.io/JvqhT
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/399c6ca77af (from 80 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
Guest1601 is now known as alex``
wat has quit [Ping timeout: 260 seconds]
fresheyeball has quit [Quit: WeeChat 2.6]
chagra has quit [Ping timeout: 268 seconds]
knupfer has quit [Ping timeout: 248 seconds]
chagra has joined #nixos
o1lo01ol1o has joined #nixos
oborot has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 pushed to master « cargo-flamegraph: 0.1.13 -> 0.2.0 »: https://git.io/Jvqh0
<evanjs> fresheyeball: have you tried started helm from a terminal to see what’s happing? Or checking the logs, if it generates any
<evanjs> Oh they’re gone 😝
slack1256 has joined #nixos
<dongcarl> Hi all, how would i extract a substring that eliminates the TLD from a full domain? e.g. "foo.bar.computer" -> "foo.bar"?
<dongcarl> (in Nix of course)
aristid2 has joined #nixos
erictapen has quit [Ping timeout: 265 seconds]
erictapen has joined #nixos
o1lo01ol1o has quit [Ping timeout: 260 seconds]
aristid1 has quit [Ping timeout: 246 seconds]
<dongcarl> ah... I found `list.init`...
<dongcarl> Odd name but I guess it works
<infinisil> > concatStringsSep "." (flatten (init (builtins.split "\\." "foo.bar.computer")))
<{^_^}> "foo.bar"
<infinisil> dongcarl: ^
<infinisil> :)
<infinisil> Though I wish stuff like this was easier
<dongcarl> infinisil: Thank you! Why is flatten needed?
<infinisil> dongcarl: Evaluate it partially to see why
aristid2 has quit [Ping timeout: 248 seconds]
<dongcarl> > (init (builtins.split "\\." "foo.bar.computer"))
<{^_^}> [ <CODE> <CODE> <CODE> <CODE> ]
<infinisil> (Add :p in front)
<dongcarl> > :p (init (builtins.split "\\." "foo.bar.computer"))
<{^_^}> [ "foo" [ ] "bar" [ ] ]
<dongcarl> Huh! But if I use `splitString` I wouldn't need the flatten?
<infinisil> splitString is just really inefficient
<infinisil> NOTE: this function is not performant and should never be used.
<infinisil> In the splitString docstring
<dongcarl> > :p (init (splitString "." "foo.bar.computer"))
<{^_^}> [ "foo" "bar" ]
<dongcarl> Ah I see
<infinisil> Possibly splitString could be rewritten using builtins.split
cosimone has quit [Quit: Quit.]
<dongcarl> Cool... the escaping for the ".", what's the reasoning for that?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78571 → dhcp: 4.4.1 -> 4.4.2 → https://git.io/JvqhD
<dongcarl> Ah! Regex!
mujer43 has joined #nixos
mujer43 has quit [Remote host closed the connection]
knupfer has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/399c6ca77af (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<infinisil> Indeed :)
jonten has quit [Ping timeout: 265 seconds]
erictapen has quit [Ping timeout: 240 seconds]
chloekek has quit [Ping timeout: 268 seconds]
lewo has joined #nixos
Diogo has quit [Quit: The Lounge - https://thelounge.chat]
justanotheruser has quit [Ping timeout: 260 seconds]
Diogo has joined #nixos
<{^_^}> [nixpkgs] @ehmry merged pull request #78546 → tfsec: 0.13.0 -> 0.19.0 → https://git.io/Jvq7s
<{^_^}> [nixpkgs] @ehmry pushed commit from @marsam to master « tfsec: 0.13.0 -> 0.19.0 »: https://git.io/JvqjU
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/3d085a399c4 (from 79 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @ehmry merged pull request #78554 → buildpack: 0.6.0 -> 0.7.0 → https://git.io/Jvq5y
<{^_^}> [nixpkgs] @ehmry pushed commit from @marsam to master « buildpack: 0.6.0 -> 0.7.0 »: https://git.io/JvqjT
kenjis1 has quit [Ping timeout: 248 seconds]
vidbina_ has joined #nixos
fusion809 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 merged pull request #78545 → pgformatter: 4.1 -> 4.2 → https://git.io/Jvq7f
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jvqj3
chagra has quit [Ping timeout: 268 seconds]
chagra has joined #nixos
<tomberek> gchristensen: the idea might work as a subcommand to nixpkgs-review. "suggest-pr" or something that shows you a list of PR titles that match things you have on your local system or profile.
kenjis1 has joined #nixos
fendor_ has joined #nixos
justanotheruser has joined #nixos
rogue_koder has joined #nixos
Chiliparrot has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @nh2 merged pull request #78479 → [19.09] file: fix download url for CVE-2019-18218 → https://git.io/Jvqg7
<{^_^}> [nixpkgs] @nh2 pushed 2 commits to release-19.09: https://git.io/Jvqj2
fendor_ has quit [Quit: Leaving]
o1lo01ol1o has quit [Ping timeout: 268 seconds]
cosimone has joined #nixos
aswanson has joined #nixos
cosimone_ has joined #nixos
slack1256 has quit [Ping timeout: 240 seconds]
jonten has joined #nixos
cosimone has quit [Client Quit]
bdesham has joined #nixos
cosimone has joined #nixos
LouisDK has joined #nixos
<{^_^}> [hydra] @basvandijk opened pull request #708 → Remove the "log diff" buttons → https://git.io/JvqjP
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78572 → flexibee: 2019.3.1.3 -> 2020.1.0.3 → https://git.io/Jvqj1
cosimone_ has quit [Ping timeout: 268 seconds]
cosimone has quit [Read error: Connection reset by peer]
cosimone has joined #nixos
<bdesham> Anyone have a moment to look at this (old but updated) PR to add some WeeChat scripts? https://github.com/NixOS/nixpkgs/pull/66786
<{^_^}> #66786 (by bdesham, 23 weeks ago, open): weechat-autojoin: init at 0.3.1; weechat-text-item: init at 0.9
amir has quit [Ping timeout: 264 seconds]
knupfer has quit [Ping timeout: 260 seconds]
opthomasprime has left #nixos [#nixos]
srid-irccloud has joined #nixos
<{^_^}> [nixpkgs] @Moredread opened pull request #78573 → lzbench: 20170208 -> 1.8 → https://git.io/JvqjA
<LouisDK> I've Plasma Desktop installed on NixOS with "i18n = { defaultLocale = "da_DK.UTF-8"; };
<LouisDK> - configured in configuration.nix - does anyone know if all langs packages are installed for my plasma apps or just Danish (as specified) besides English?
gustavderdrache has quit [Quit: Leaving.]
sigmundv has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @bachp opened pull request #78574 → samba: 4.10.11 -> 4.11.5 → https://git.io/Jvqjj
<{^_^}> [nixpkgs] @bcdarwin closed pull request #77472 → pythonPackages.nibabel: unbreak tests/package → https://git.io/Jvvje
<lovesegfault> What's up with staging? Hasn't been merged in a while
mananamenos has joined #nixos
alex`` has quit [Ping timeout: 265 seconds]
o1lo01ol1o has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @bachp opened pull request #78575 → tautulli: 2.1.39 -> 2.1.42 → https://git.io/JvmeJ
<mananamenos> hi, what does services.sshd.enable = true actually provide? Having services.openssh.enable = true; lets me login to external to server, sshd is not necessary.
alex`` has joined #nixos
<lovesegfault> mananamenos: man configuration.nix
<lovesegfault> "Alias of services.openssh.enable."
gustavderdrache has joined #nixos
gustavderdrache has quit [Client Quit]
emacsomancer has quit [Quit: WeeChat 2.6]
<mananamenos> thank you
Synthetica has quit [Quit: Connection closed for inactivity]
mananamenos has quit [Remote host closed the connection]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
LouisDK has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 pushed to master « mpv: 0.31.0 -> 0.32.0 »: https://git.io/Jvmec
nikola_i has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78576 → ejabberd: 19.09.1 -> 20.01 → https://git.io/JvmeC
<{^_^}> [nixpkgs] @ryantm merged pull request #78575 → tautulli: 2.1.39 -> 2.1.42 → https://git.io/JvmeJ
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvmeW
<{^_^}> [nixpkgs] @leo60228 opened pull request #78577 → libirecovery: 2019-01-28 -> 2020-01-14, idevicerestore: 2019-02-14 -> 2019-12-26 → https://git.io/Jvmel
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/5e97c6f6f7b (from 66 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
halfbit has joined #nixos
o1lo01ol1o has joined #nixos
cosimone has quit [Remote host closed the connection]
cosimone has joined #nixos
slack1256 has joined #nixos
emacsomancer has joined #nixos
<{^_^}> [nixpkgs] @siers closed pull request #55636 → ruby: export generic builder → https://git.io/fhQ6i
tsrt^ has quit []
jonten has quit [Ping timeout: 265 seconds]
slack1256 has quit [Ping timeout: 268 seconds]
delli3 has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #76535 → nextcloud-client: 2.6.1 -> 2.6.2 → https://git.io/JebVS
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JvmeQ
slack1256 has joined #nixos
delan has quit [Quit: ZNC - http://znc.in]
shah^ has joined #nixos
delan has joined #nixos
delan has joined #nixos
delan has quit [Changing host]
domogled has quit [Ping timeout: 265 seconds]
vidbina_ has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @ttuegel opened pull request #78578 → qt5: remove last vestiges of Qt 5.11 → https://git.io/Jvmed
<{^_^}> [nixpkgs] @ttuegel closed pull request #73773 → qt5{9,11,12}: better pulseaudio 13 fix, unbreak qt59 → https://git.io/JeK7K
<{^_^}> [nixpkgs] @iv-nn opened pull request #78579 → vimPlugins.vim-instant-markdown: init at 2019-09-06 → https://git.io/Jvmeb
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78580 → gparted: 1.0.0 -> 1.1.0 → https://git.io/JvmeN
chagra has quit [Quit: WeeChat 2.6]
ng0_ has quit [Quit: leaving]
<{^_^}> [nixpkgs] @ttuegel merged pull request #78279 → kdeFrameworks: 5.65.0 -> 5.66.0 → https://git.io/JvLrw
<{^_^}> [nixpkgs] @ttuegel pushed 2 commits to staging: https://git.io/JvmvI
chagra has joined #nixos
<{^_^}> [nixpkgs] @veprbl pushed to release-19.03 « file: fix download url for CVE-2019-18218 »: https://git.io/Jvmv8
<{^_^}> [nixpkgs] @r-ryantm opened pull request #78581 → gspell: 1.8.2 -> 1.8.3 → https://git.io/JvmvE
ng0 has joined #nixos
ng0 has joined #nixos
bhipple has quit [Ping timeout: 265 seconds]
bhipple has joined #nixos
ng0_ has joined #nixos
ng0_ has joined #nixos
slack1256 has quit [Remote host closed the connection]
erictapen has joined #nixos
ng0 has quit [Ping timeout: 268 seconds]
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<{^_^}> [nixpkgs] @timokau merged pull request #78496 → brial: 1.2.6 -> 1.2.7 → https://git.io/Jvqi6
<{^_^}> [nixpkgs] @timokau pushed 2 commits to master: https://git.io/JvmvX
halfbit has quit [Ping timeout: 260 seconds]
elux has joined #nixos
<elux> i have a desktop with two graphics cards. one is in pci0 slot, the other pci1 slot. i'm trying to at boot use the card in pci1, but it seems to just always load in pci0 as its the first card... im using systemd boot, any tips?
__monty__ has quit [Quit: leaving]
sigmundv has quit [Remote host closed the connection]
ixxie has joined #nixos
sigmundv has joined #nixos
growpotkin has joined #nixos
kenjis1 has quit [Ping timeout: 260 seconds]
erictapen has quit [Ping timeout: 268 seconds]
rajivr___ has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @dtzWill merged pull request #77852 → bibata-{,extra-}cursors: fix, faster, smaller; bump extra variant from git -> 0.3 → https://git.io/JvTZh
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to master: https://git.io/JvmvF
<{^_^}> [nixpkgs] @dtzWill merged pull request #77490 → kernel/update.sh: always use -e → https://git.io/JvfI5
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JvmvN
<{^_^}> [nixpkgs] @MarcFontaine opened pull request #78582 → clipgrab: 3.8.6 -> 3.8.10 → https://git.io/Jvmvx
<{^_^}> [nixpkgs] @worldofpeace opened pull request #78583 → nixos/display-managers/auto: remove → https://git.io/Jvmvh
elux has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dtzWill merged pull request #77842 → teeworlds: cmake instead of bam, oh joy! cleanup → https://git.io/JvTqN
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to master: https://git.io/Jvmvj
<{^_^}> [nixpkgs] @dtzWill merged pull request #77487 → acpica-tools,iasl: 20191213 -> 20200110 → https://git.io/JvfIS
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/Jvmfe
doyougnu has joined #nixos
o1lo01ol_ has joined #nixos
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JvmfJ
<{^_^}> [nixpkgs] @dtzWill merged pull request #77864 → lcdf-typetools: init at 2.108 → https://git.io/JvT4c
o1lo01ol1o has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77709 → libsecret: 0.19.1 -> 0.20.0 → https://git.io/JvUIK
<{^_^}> [nixpkgs] @worldofpeace pushed 4 commits to master: https://git.io/JvmfT
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @B4dM4n to release-19.09 « snowman: use Qt mkDerivation »: https://git.io/Jvmfq
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace closed pull request #78417 → backport snowman: use Qt mkDerivation → https://git.io/JvtFq
o1lo01ol_ has quit [Ping timeout: 268 seconds]
jol has joined #nixos
chagra has quit [Ping timeout: 260 seconds]
kleisli has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #78480 → libfprint: 1.90 -> 1.0 → https://git.io/Jvqg5
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/Jvmfm
chagra has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #78584 → chromium: 79.0.3945.117 -> 79.0.3945.130 → https://git.io/JvmfG
chagra has quit [Client Quit]
chagra has joined #nixos
tomberek has quit [Ping timeout: 268 seconds]
erictapen has joined #nixos
chagra has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @7c6f434c pushed to master « cfdg: 3.0.9 -> 3.2_2, fix build »: https://git.io/Jvmfc
v88m has quit [Ping timeout: 260 seconds]
sochan has joined #nixos
orivej has quit [Ping timeout: 268 seconds]
sochan is now known as jakubgs
<jakubgs> question: How can I turn a list of sets into one merged set?
bvdw has quit [Read error: Connection reset by peer]
<mkg20001> does anyone know which packages has /usr/share/lib/zoneinfo/tab/zone_sun.tab?
<gchristensen> ,locate zone_sun.tab
bvdw has joined #nixos
<{^_^}> Couldn't find in any packages
<mkg20001> ufff
<gchristensen> what is it, and whatpackage does it usually come from?
<mkg20001> from some ubuntu package
<{^_^}> [nixpkgs] @mmahut merged pull request #77846 → wavpack: 5.1.0 -> 5.2.0, cve-patches-included edition → https://git.io/JvTmG
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to staging: https://git.io/Jvmf4
<infinisil> jakubgs: Needs more context
<sondr3> jakubgs: maybe lib.attrsets.zipAttrs?
<sondr3> ah, no, it merges the values to a list
<jakubgs> kinda
<jakubgs> what i have a list list of attrsets wiht various suff
<jakubgs> i want to turn each into a config entry for nginx virtual hosts
<infinisil> jakubgs: How do you get the virtual host name?
<jakubgs> so I need to turn [{path = "/"; nginx = {CONFIG} }, ...] into {"/" = {CONFIG}; ... }
<infinisil> jakubgs: Do you have duplicate paths?
<jakubgs> nope
<jakubgs> i'm doing this because I use other attribtues from the list of sets to generate an index.html file
<jakubgs> but those other attribtues can't end up in nginx virtualhosts set, so I'm putting that under 'nginx' key in the set
kleisli has joined #nixos
<infinisil> > :p map ({ path, nginx }: nameValuePair path nginx) [{ path = "/"; nginx.test = 10; }]
<{^_^}> [ { name = "/"; value = { test = 10; }; } ]
<infinisil> > :p listToAttrs (map ({ path, nginx }: nameValuePair path nginx) [{ path = "/"; nginx.test = 10; }])
<{^_^}> { "/" = { test = 10; }; }
<infinisil> Like that?
<jakubgs> yes!
<jakubgs> I seem, listToAttrs
<jakubgs> nice
<infinisil> If you name your attributes "key" and "value" instead of "path" and "nginx" you could get rid of the map step
<jakubgs> hmmmm, right, but it would kinda obscure the meaning of these attribtutes where I define them
<jakubgs> thank you, this is great
<jakubgs> I'm essentially trying to make a simple thin in nixos that will genereta a landing page for my server with links to services
<jakubgs> so im using a list of sets which represent various services and their names, paths, and nginx proxy configs
<jakubgs> and then turn that into a nginx hosted landing page with links to those services based on which are enabled
<infinisil> Neat :D
<jakubgs> yeah, im assembling the list by doing stuff like ++ optionals config.services.netdata.enable [{SERVICE_SETUP}]
<jakubgs> Nixos is pretty amazing
<jakubgs> but the language takes a bit to get used to
<jakubgs> seriously steep learning curve, especially for someone that didn't do functional programming before
<sondr3> even with functional programming experience I find the hardest part with Nix figuring out what is available
<jakubgs> very true
<sondr3> documentation for funcions is spread across the Nix, nixpkgs and NixOS manual
<jakubgs> i was staring at lib/attrsets.nix for like 30 min and couldn't figure out what I need
<{^_^}> [nixpkgs] @worldofpeace closed pull request #48289 → dnscrypt-proxy2: 2.0.15 -> 2.0.17, add NixOS module → https://git.io/fxBnp
<infinisil> Yeah these library functions can be hard to use when you don't know them well
<jakubgs> I need to start using the repl more
<jakubgs> to get more of a hang of stuff like that
<jakubgs> just now you showed me that :p is a thing
<jakubgs> neat
srid-irccloud has quit [Quit: Connection closed for inactivity]
<infinisil> I need to point out that the bots `>` here isn't an actual `nix repl`
<infinisil> So it doesn't work the same way and doesn't have the same features
<jakubgs> i'd expect as much
<jakubgs> would be weird if it did
megfault has joined #nixos
<infinisil> Well it would be possible to use a nix repl in the back, but there's some problems with that
m0rphism has quit [Ping timeout: 268 seconds]
<infinisil> The main one being that nix repl can't persist its variables over restarts
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/c7f0659e034 (from 80 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/299fbcbb8b5 (from 38 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
<jakubgs> right
ddellacosta has quit [Ping timeout: 240 seconds]
MmeQuignon has quit [Ping timeout: 260 seconds]
cosimone has quit [Remote host closed the connection]
cosimone has joined #nixos
<jakubgs> how can i test specific parts of a nixos configuration in repl?
<jakubgs> can I somehow :l a nixos config file and play with specific parts of it?
<qyliss> :l <nixpkgs/nixos>
<qyliss> Then look at the "config" variable
<qyliss> If you want to use a custom configuration path, do :l <nixpkgs/nixos> { configuration = /path/to/configuration.nix; }
<jakubgs> NICE
ng0_ has quit [Quit: leaving]
bwe has quit [Ping timeout: 246 seconds]
bwe has joined #nixos
delli3 has quit [Read error: Connection reset by peer]
<jakubgs> do I have to run :r and then :p every time I change something? or is there some way for the repl to reload and run something on file change?
<jakubgs> I can see I can pipe commands into `nix repl`
<jakubgs> maybe I could glue that with entr and run `nix repl` with some evaluation on file change
<qyliss> no way that i know of
<qyliss> i didn't even know about :r or :p!
sondr3 has quit [Quit: WeeChat 2.7]
<jakubgs> is the proper way to do `echo ':l <nixpkgs/nixos>\n:p config.something' | nix repl` ?
<jakubgs> or is there something more clever?
gustavderdrache has joined #nixos
<clever> jakubgs: `nix repl '<nixpkgs/nixos>'`
<jakubgs> ah, nice
<infinisil> jakubgs: If you don't need a repl you can do `nix-instantiate '<nixpkgs/nixos>' -A config.foo.bar`
<infinisil> And you can use that with e.g. `watch nix-instantiate ...`
<infinisil> to run it every second or so
<jakubgs> entr is better
<infinisil> Oh and put an --eval in there
<jakubgs> entr runs command on file change
<jakubgs> lovely tool
<jakubgs> thanks
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/c7f0659e034 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
<infinisil> Neat
<infinisil> Oh and --strict is the :p equivalent of nix-instantiate
ixxie has quit [Ping timeout: 272 seconds]
<jakubgs> lovely
<jakubgs> ls roles/landing.nix | entr bash -c "nix-instantiate --strict --eval '<nixpkgs/nixos>' -A config.services.nginx.virtualHosts"
<jakubgs> sweet
<jakubgs> this makes for a cool dev flow