worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
<vifon> Hello. I'm trying to install a package with custom flags. I figured the easiest way would be to copy the .nix file and install a modified one. I have it as default.nix in cwd. This is how I'm trying to build it: nix-build -E 'with import <nixpkgs> {}; callPackage ./default.nix {}'
<vifon> The result: error: anonymous function at …/default.nix:1:1 called without required argument 'mkDerivation', at /nix/store/…
<vifon> Any hints?
<clever> vifon: is it a haskell package?
<vifon> No, it's cantata, from KDE Plasma.
<clever> vifon: you have to use the right callPackage when loading it, look at where that file was being referenced in nixpkgs
<vifon> But indeed, most of the results I managed to duck were for Haskell.
<sid`> You need to do stdenv.mkDerivation
<clever> sid`: the problem will likely just move to another dep
<clever> /home/clever/apps/nixpkgs-hasura/pkgs/top-level/all-packages.nix: cantata = libsForQt5.callPackage ../applications/audio/cantata {
<vifon> Indeed, that's what I did at first and that's what I observed next. :)
<clever> vifon: yeah, you want libsForQt5.callPackage rather then bare callPackage
<vifon> It seems to work!
<vifon> What's the best way to figure it out in the future?
<vifon> I'm running an almost vanilla NixOS, mostly as a test run for now.
<clever> [nix-shell:~/apps/rpi/lk]$ grep -r --color cantata ~/apps/nixpkgs-hasura/pkgs/
<clever> find out where the default.nix was being loaded
<vifon> Is there some handy symlink I can use instead of /nix/store/zwrvp1pavz5jxl473sjjx5d1smijwd7h-nixos-20.03.2913.4bd1938e03e/nixos/pkgs ?
<clever> vifon: nix-instantiate --find-file nixpkgs
<clever> vifon: or ~/.nix-defexpr/channels_root/nixos/
vn^ has quit []
zeta_0 has joined #nixos
<vifon> OK, the build has finished. How do I install the resulting package?
<vifon> Oh, nice, I even got a "result" symlink. Handy!
<clever> vifon: you can just run it from the result link if you want testing, result/bin/cantana
xcmw has joined #nixos
<zeta_0> hello there, if any of you would like to take a look at this issue, thanks: https://github.com/NixOS/nixpkgs/issues/97814
<{^_^}> #97814 (by zeta-00, 1 hour ago, open): help packaging the `Eclipse JDT Language Server` with nix, and placing it in nixpkgs:
<vifon> clever: Neat! Mostly for the future, how would I install it permanently?
JohnHk has joined #nixos
<clever> vifon: nix-env -i ./result or add it as an overlay and put it into systemPackages
JohnHk has left #nixos [#nixos]
<vifon> Ah! I tried "nix-env -i .", which resulted in apparently it trying to pull each and every single-letter package.
<clever> vifon: -i without a path, will treat the string as regex, and search nixpkgs
<vifon> I presume the presence of a slash does the trick?
<clever> vifon: you want something lore like `nix-env -f . -iA foo`, which says to load default.nix, then install .foo
boxscape has quit [Quit: Connection closed]
<clever> more*
<vifon> OK, I think I've got the basics I need for now. Thank you!
<zeta_0> clever: how difficult do you think it will be to package this java lsp with nix ? https://github.com/NixOS/nixpkgs/issues/97814
<{^_^}> #97814 (by zeta-00, 1 hour ago, open): help packaging the `Eclipse JDT Language Server` with nix, and placing it in nixpkgs:
<zeta_0> if it's not to difficult or won't take that long, i could try to packages this !
<euank> zeta_0: it looks like the lsp server in question is packaged using maven
<euank> I've had some really good luck using https://github.com/fzakaria/mvn2nix on a couple maven-packaged things
<euank> That being said, I've just been packaging things for myself. I don't think anything built off that is in nixpkgs yet
<euank> so upstreaming it may require a bit more coordination / discussion
<{^_^}> [nixpkgs] @wkral opened pull request #97819 → ytree: fix build → https://git.io/JUlLS
<zeta_0> euank: thanks, i was looking at that earlier, but i want to use this java lsp, because it's more generic when it comes to build tools and is self contained, so being able to package it would be nice !
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JUlLH
<euank> zeta_0: What do you mean by 'this java lsp'? The one linked in that issue had a pom.xml, which is why I thought it used maven as its build system
<euank> maybe I confused myself though
<zeta_0> euank: i mean the `Eclipse JDT Language Server`, it comes built-in with support for multiple build tools: https://github.com/eclipse/eclipse.jdt.ls#eclipse-jdt-language-server
<euank> Right, and the root of that repo has a pom.xml. It's built using maven
<euank> What build systems it supports is a different question than how you compile it, and for adding it to nixpkgs, how you compile it is the more important immeidate concern
o1lo01ol1o has joined #nixos
<zeta_0> euank: so if i understand correctly, i need to use mvn2nix to translate that pom.xml file to nix, and then from there i can install/build the Eclipse JDT Language Server ?
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/3b50998b4fa (from 2 days ago, history: https://channels.nix.gsc.io/nixos-20.09)
o1lo01ol1o has quit [Remote host closed the connection]
<euank> zeta_0: that's one possible approach, yeah! There's multiple other approaches too though
o1lo01ol1o has joined #nixos
samhza has quit [Remote host closed the connection]
<euank> There's a second mvn2nix project (confusing I know), you could use a fixed-derivation-output (but, well, that almost certainly wouldn't make it upstream), you could avoid compiling it by downloading a precompiled jar and just using that
samhza has joined #nixos
<zeta_0> euank: uhh, i think it would be easier for me to simply translate it directly to nix using mvn2nix, and then go from there.
<zeta_0> once i have the translated nix code then i can go from there.
o1lo01ol1o has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @danielfullmer opened pull request #97822 → diffoscope: 156 -> 160 → https://git.io/JUltu
dbmikus has quit [Quit: WeeChat 2.9]
nixbitcoin has joined #nixos
<zeta_0> well i'll try out mvn2 to nix with this repo: https://github.com/eclipse/eclipse.jdt.ls
<zeta_0> i'll let you guys know if i run into anymore issues !
<{^_^}> [nixpkgs] @worldofpeace pushed to release-20.09 « gnome-3: freeze for 20.09 »: https://git.io/JUltA
moet has joined #nixos
orivej has joined #nixos
<moet> i'm packaging something that calls `hostname` in its tests.. since that program isn't available, i was thinking 1) i could make it available or 2) i could inject a stub using `preCheck` that returns a constant .. the stub could be "mkdir b; export PATH="$PATH:b"; echo "echo fakehost" > b/hostname; chmod +x b/hostname" but this seems kind of ugly.. any other ideas?
<clever> moet: nix already censors out the hostname within the sandbox
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
alp has quit [Ping timeout: 272 seconds]
thc202 has quit [Ping timeout: 244 seconds]
czer00 has quit [Read error: Connection reset by peer]
judson has quit [Quit: ZNC 1.7.4 - https://znc.in]
<moet> clever: so i should declare the hostname package a dependency and let nix do its thing?
judson has joined #nixos
<clever> moet: yep
<moet> clever: thank you
Emantor has quit [Quit: ZNC - http://znc.in]
Emantor has joined #nixos
dermetfan has quit [Ping timeout: 260 seconds]
h0m1 has quit [Ping timeout: 260 seconds]
h0m1 has joined #nixos
mariatsji has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 27.1]
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
growpotkin has joined #nixos
mariatsji has quit [Ping timeout: 260 seconds]
simukis_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
evanm has joined #nixos
simukis_ has joined #nixos
sigmundv has quit [Read error: Connection reset by peer]
sigmundv has joined #nixos
Darkmatter66 has joined #nixos
Siyo has quit [Ping timeout: 240 seconds]
evanm has quit [Remote host closed the connection]
Siyo has joined #nixos
Darkmatter66_ has quit [Ping timeout: 240 seconds]
czer00 has joined #nixos
ris has quit [Ping timeout: 256 seconds]
detran has quit [Quit: ZNC 1.7.5 - https://znc.in]
detran has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/5f4b3815278 (from 9 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/4ea53630342 (from 10 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
zeta_0 has joined #nixos
teto has quit [Ping timeout: 272 seconds]
sigmundv_ has joined #nixos
<zeta_0> i can't seem to get mvn2working, when i run: `nix run -f https://github.com/fzakaria/mvn2nix/archive/master.tar.gz --command mvn2nix > mvn2nix-lock.json` it returns the error: `Failed to execute goals [[package]]. Exit code: 1`
<zeta_0> euank: ^
philr has joined #nixos
<zeta_0> have any of you gotten mvn2nix working ?
sigmundv has quit [Ping timeout: 256 seconds]
steve-chavez has quit [Ping timeout: 240 seconds]
ToxicFrog has quit [Remote host closed the connection]
zeta_0 has quit [Quit: rcirc on GNU Emacs 27.1]
sid` has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
ToxicFrog has joined #nixos
proofofkeags has joined #nixos
xd1le has quit [Ping timeout: 260 seconds]
<siraben> This error occurs when I do sudo nixos-rebuild switch, http://ix.io/2xgx
<siraben> What could be causing
<siraben> subprocess.CalledProcessError: Command '['/nix/store/kmlzasz1lbkigpirk4vwyg14g206wq18-systemd-246/bin/bootctl', '--path=/boot', 'status']' returned non-zero exit status 1.
<clever> siraben: systemd-boot has lost its mind, ive seen it before a few weeks ago, only solution i know is to switch to grub (it still supports efi)
<siraben> How do I switch to grub?
xd1le has joined #nixos
<clever> siraben: boot.loader.grub.enable = true;
<clever> siraben: and turn systemd off, the same way
<siraben> Also my pulseaudio is broken
<siraben> Failed assertions:
<siraben> - You must set the option ‘boot.loader.grub.devices’ or 'boot.loader.grub.mirroredBoots' to make the system bootable.
<clever> siraben: boot.loader.grub.device = "nodev";
<clever> siraben: you also want nixos-rebuild --install-bootloader switch
<siraben> clever: did that and rebooted, is anything else supposed to happen?
<siraben> I don't notice a difference
<clever> siraben: you should see grub instead of systemd-boot when its booting
<siraben> Is pulseaudio broken as well?
<siraben> I haven't had sound in recent weeks
<clever> thats likely unrelated, how exactly is it broken, is it just on mute?
<siraben> home-manager reports that
<est31> I've never gotten efi to work
<est31> on none of my computers
<est31> ever
<clever> est31: you must first boot via efi, to be able to configure an efi bootloader properly
<est31> yeah that's where my problems start
<clever> siraben: then you need to check the journal with something like `journalctl -f -u pulseaudio --user` maybe
<est31> never were able to boot off a live usb stick with efi
<siraben> Ah found out why
<siraben> Sep 12 09:25:30 siraben-nixos pulseaudio[1640]: E: [pulseaudio] core-util.c: Failed to create secure directory (/home/siraben/.config/pulse): Too many levels of symbolic links
<est31> already hard enough to get it to boot from sticks without efi
sigmundv_ has quit [Ping timeout: 260 seconds]
knerten1 has joined #nixos
<clever> est31: how did you put the nixos image onto the usb?
<est31> dd?
<clever> that should be fine
<est31> wasnt tho
<est31> cant remember what the particular problem was
<est31> but I didnt get it to boot from efi
<est31> last time I tried to do it was months ago, note that
<est31> also the other distros I use on my computer dont work either
<est31> different mobo manufacturers
<est31> different distros
<est31> different usb sticks
<est31> same me
<est31> same problem :(
lordcirth has joined #nixos
<est31> my computers*
<simpson> No worries. There's a lot of foundational aspects to EFI that are different from BIOS. The disks have to be differently formatted, the bootloaders are compiled and behave in totally different ways, and the configuration options are very different.
knerten2 has quit [Ping timeout: 240 seconds]
<est31> yeah
<est31> usually when I install linux on new hardware I dont want to spend hours troubleshooting why efi doesnt work, I want to install linux on it
<est31> and my new laptop boots really fast thanks to ssd
<est31> maybe also thanks to nix os
<simpson> Also, EFI implementations can be flaky. My prior is that less than half of EFI implementations work! At least not without careful massaging.
<est31> only computer I have nix os on atm
* simpson has a server which only can EFI boot from a warm start, not a cold start
<est31> I guess it's a bit like ipv6
<est31> works sometimes, but not always
<est31> only some isps offer it
<est31> and only some websites support it
<simpson> IPv6 is so reliable compared to EFI that it's funny. Like, you could get an address and send as many packets as you like! If only you could boot~
<clever> ipv6 randomly breaks for me
proofofkeags has quit [Ping timeout: 258 seconds]
<est31> ipv6 ping to google is 1 ms slower to me than ipv4 ping
<{^_^}> [nixpkgs] @KAction opened pull request #97823 → perfect-hash: init at 0.4.1 → https://git.io/JUlOk
<est31> and my isp has 4 over 6
<est31> aka cgnat
<clever> est31: ~25ms slower, since i have to bounce off an american tunnel
<est31> ouchy
<clever> 30ms v4, 55ms v6
<clever> 55ms is still pretty quick
pjt_tmp has joined #nixos
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
xd1le has quit [Read error: Connection reset by peer]
da39a3ee5e6b4b0d has joined #nixos
xd1le has joined #nixos
lotharn has quit [Ping timeout: 256 seconds]
rajivr has joined #nixos
<{^_^}> [nixpkgs] @wkral opened pull request #97824 → [20.09] python3Packages.minio: fix cred tests → https://git.io/JUlO2
sid` has joined #nixos
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
steve-chavez has joined #nixos
<sid`> query domenkozar[m]
<sid`> sorry
<{^_^}> [nixpkgs] @veprbl merged pull request #97818 → steam: fix typo in LD_LIBRARY_PATH → https://git.io/JUlkw
<{^_^}> [nixpkgs] @veprbl pushed commit from @danielfullmer to master « steam: fix typo in LD_LIBRARY_PATH (#97818) »: https://git.io/JUl3Q
sid` is now known as sidverma
sidverma is now known as sidv`
sidv` is now known as siddv
<{^_^}> [nixpkgs] @veprbl merged pull request #94895 → Allow openfortivpn to be used on Darwin → https://git.io/JJXlX
<{^_^}> [nixpkgs] @veprbl pushed commit from @bwolf to master « openfortivpn: enable on Darwin (#94895) »: https://git.io/JUl3d
Supersonic112 has joined #nixos
abcrawf has joined #nixos
Supersonic has quit [Ping timeout: 240 seconds]
Supersonic112 is now known as Supersonic
abcrawf has left #nixos ["User left"]
lordcirth has quit [Read error: Connection reset by peer]
abcrawf has joined #nixos
justanotheruser has quit [Ping timeout: 244 seconds]
Darkmatter66_ has joined #nixos
Darkmatter66 has quit [Ping timeout: 240 seconds]
xd1le has quit [Read error: Connection reset by peer]
xd1le has joined #nixos
orivej has quit [Ping timeout: 258 seconds]
moet has quit [Ping timeout: 258 seconds]
CyberManifest has quit [Quit: Leaving...]
steve-chavez has quit [Ping timeout: 240 seconds]
o1lo01ol1o has joined #nixos
raghavsood has joined #nixos
<raghavsood> Is it normal for patchelf to segfault?
<raghavsood> `/nix/store/8zxndz5ag0p6s526c2xyllhk1nrn4c3i-audit-tmpdir.sh: line 12: 14404 Segmentation fault (core dumped) patchelf --print-rpath "$i"`
o1lo01ol1o has quit [Ping timeout: 246 seconds]
xd1le has quit [Read error: Connection reset by peer]
ddellacosta has quit [Ping timeout: 240 seconds]
xcmw has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xd1le has joined #nixos
criptonauta_ has quit [Remote host closed the connection]
criptonauta_ has joined #nixos
criptonauta_ has quit [Remote host closed the connection]
criptonauta_ has joined #nixos
criptonauta_ has quit [Remote host closed the connection]
criptonauta_ has joined #nixos
CyberManifest has joined #nixos
criptonauta_ has quit [Remote host closed the connection]
criptonauta_ has joined #nixos
criptonauta_ has quit [Remote host closed the connection]
captn3m0 has joined #nixos
captn3m0- has quit [Ping timeout: 260 seconds]
hauleth has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/18f9a651f5c (from 16 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
hauleth has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/51428e8d382 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
endformationage has quit [Quit: WeeChat 2.9]
da39a3ee5e6b4b0d has joined #nixos
cole-h has joined #nixos
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Rusty1 has quit [Quit: WeeChat 2.3]
mariatsji has joined #nixos
mariatsji has quit [Ping timeout: 272 seconds]
<glowpelt> Is it just me or is python-language-server broken on nixos-unstable?
leothrix has quit [Quit: ZNC 1.7.5 - https://znc.in]
leothrix has joined #nixos
ManiacOfMadness has quit []
waleee-cl has quit [Quit: Connection closed for inactivity]
<glowpelt> Err, specifically python3's. Build just fails for me, lots of test failures. Looks like there were some hydra failures w/ the same problem but the last was a success? https://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.python38Packages.python-language-server.x86_64-linux#tabs-status
ManiacOfMadness has joined #nixos
matthuszagh has joined #nixos
<matthuszagh> i'm getting a "creating pipe: too many open files" error when attempting to rebuild my nixos configuration. has anyone encountered this? i'm not sure how to get around it. i'm using flakes, if that's relevant and running `sudo nixos-rebuild switch --flake .`
steve-chavez has joined #nixos
<cole-h> matthuszagh: Check `ulimit -a` for your fd limit.
<matthuszagh> cole-h: thanks. is there a nixos way to declaratively set that, or I have to do it through ulimit?
<cole-h> matthuszagh: I'd guess through security.pam.loginLimits. https://github.com/NixOS/nixpkgs-channels/blob/nixos-unstable/nixos/modules/security/pam.nix#L516
<cole-h> Aside from that, idk. Never needed to.
<matthuszagh> cole-h: thanks
tsujp has joined #nixos
<glowpelt> Never mind, it's fixed in `master` but not in unstable yet.
LogicalOverflow has joined #nixos
<{^_^}> [nixpkgs] @FRidh closed pull request #97788 → maintainers: add presto8 → https://git.io/JUW9J
matthuszagh has left #nixos ["ERC (IRC client for Emacs 28.0.50)"]
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
da39a3ee5e6b4b0d has joined #nixos
<cole-h> flokli: Heh :D
<cole-h> It's the little things... :P
<flokli> cole-h: aargh, yeah
<flokli> Thanks :-)
<cole-h> So all the people who tested it weren't actually testing it x)
mariatsji has joined #nixos
<{^_^}> [nixpkgs] @zowoq merged pull request #97799 → buildah: 1.16.0 -> 1.16.1 → https://git.io/JUWpr
<{^_^}> [nixpkgs] @zowoq pushed to master « buildah: 1.16.0 -> 1.16.1 »: https://git.io/JUlCv
<{^_^}> [nixpkgs] @iAmMrinal0 opened pull request #97825 → rescuetime: 2.16.3.1 -> 2.16.4.2 → https://git.io/JUlCJ
sangoma has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #97574 → Backport revert of utils.bash → https://git.io/JUcHf
<{^_^}> [nixpkgs] @FRidh pushed 2 commits to staging-20.09: https://git.io/JUlCI
mariatsji has quit [Ping timeout: 272 seconds]
steve-chavez has quit [Quit: WeeChat 2.4]
mariatsji has joined #nixos
alp has joined #nixos
cole-h has quit [Quit: Goodbye]
eoli3n_ has joined #nixos
mariatsji has quit [Remote host closed the connection]
mariatsji has joined #nixos
mariatsji has quit [Ping timeout: 272 seconds]
LogicalOverflow has quit [Remote host closed the connection]
mariatsji has joined #nixos
orivej has joined #nixos
matth1askrgr has joined #nixos
matthiaskrgr has quit [Read error: Connection reset by peer]
matth1askrgr is now known as matthiaskrgr
joesventek has quit [Remote host closed the connection]
peel has quit [Ping timeout: 244 seconds]
nilsirl[m] has quit [Ping timeout: 244 seconds]
tbenst[m] has quit [Ping timeout: 244 seconds]
JohannesArnold[m has quit [Ping timeout: 244 seconds]
ArtemVorotnikov[ has quit [Ping timeout: 244 seconds]
Hirmes[m] has quit [Ping timeout: 244 seconds]
theduke has quit [Ping timeout: 244 seconds]
danielrf[m] has quit [Ping timeout: 244 seconds]
mmk2410[m] has quit [Ping timeout: 244 seconds]
manu12[m] has quit [Ping timeout: 244 seconds]
sebass[m] has quit [Ping timeout: 244 seconds]
dywedir[m] has quit [Ping timeout: 244 seconds]
jehova[m] has quit [Ping timeout: 244 seconds]
cjbassi[m] has quit [Ping timeout: 244 seconds]
pointfree has quit [Ping timeout: 244 seconds]
snackoverflow[m] has quit [Ping timeout: 244 seconds]
uzr[m] has quit [Ping timeout: 244 seconds]
duckonomy1 has quit [Ping timeout: 244 seconds]
dermetfan has joined #nixos
hacker01[m] has quit [Ping timeout: 244 seconds]
gluegadget has quit [Ping timeout: 244 seconds]
joesventek has joined #nixos
tristan[m] has quit [Ping timeout: 244 seconds]
dmj` has quit [Ping timeout: 240 seconds]
peel has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #83291 → cudatoolkit: install missing libraries for nvprof → https://git.io/JvyFc
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JUlCh
the_rajsun[m] has quit [Ping timeout: 244 seconds]
Valodim[m] has quit [Ping timeout: 244 seconds]
kyren has quit [Ping timeout: 240 seconds]
rschulman has quit [Ping timeout: 240 seconds]
q3k[m] has quit [Ping timeout: 240 seconds]
cvlad- has quit [Ping timeout: 240 seconds]
ndarilek has quit [Ping timeout: 240 seconds]
taktoa[c] has quit [Ping timeout: 240 seconds]
kozowu has quit [Ping timeout: 240 seconds]
cbarrett has quit [Ping timeout: 240 seconds]
CRTified[m] has quit [Ping timeout: 244 seconds]
teozkr_ has quit [Ping timeout: 244 seconds]
adamse has quit [Ping timeout: 244 seconds]
sonercirit[m] has quit [Ping timeout: 244 seconds]
aloiscochard[m] has quit [Ping timeout: 244 seconds]
mmk2410[m] has joined #nixos
eadwu[m] has quit [Ping timeout: 244 seconds]
alaskacanyon[m] has quit [Ping timeout: 244 seconds]
michaelpj has quit [Ping timeout: 244 seconds]
inquisitiv3 has quit [Ping timeout: 244 seconds]
mmk2410[m] has quit [Ping timeout: 244 seconds]
waschtl[m] has quit [Ping timeout: 244 seconds]
nilsirl[m] has joined #nixos
hazel[m] has quit [Ping timeout: 240 seconds]
nz_ has quit [Ping timeout: 244 seconds]
kazzimazzi[m] has quit [Ping timeout: 244 seconds]
alanz_ has quit [Ping timeout: 244 seconds]
bradparker has quit [Ping timeout: 244 seconds]
claudiii has quit [Ping timeout: 244 seconds]
jackdk has quit [Ping timeout: 244 seconds]
nz__ has joined #nixos
yisraeldov has quit [Ping timeout: 240 seconds]
ptotter[m] has quit [Ping timeout: 240 seconds]
pinage404[m] has quit [Ping timeout: 240 seconds]
sparogy has quit [Ping timeout: 244 seconds]
wak-work has quit [Ping timeout: 244 seconds]
alj[m] has quit [Ping timeout: 244 seconds]
heatm1s3r has quit [Ping timeout: 240 seconds]
rotaerk has quit [Ping timeout: 240 seconds]
adamse has joined #nixos
chvp has quit [Ping timeout: 244 seconds]
axx has quit [Ping timeout: 244 seconds]
Jake[m] has quit [Ping timeout: 244 seconds]
Shyim[m] has quit [Ping timeout: 240 seconds]
philipcristiano has quit [Ping timeout: 240 seconds]
alp has quit [Ping timeout: 256 seconds]
gluegadget has joined #nixos
katrin has quit [Ping timeout: 244 seconds]
mariatsji has quit [Remote host closed the connection]
mindtree[m] has quit [Ping timeout: 244 seconds]
fatjedi[m] has quit [Ping timeout: 244 seconds]
mkg20001 has quit [Ping timeout: 244 seconds]
hpfr has quit [Ping timeout: 240 seconds]
hamishdehmer[m] has quit [Ping timeout: 240 seconds]
jlv has quit [Ping timeout: 240 seconds]
anonymous_zero[m has quit [Ping timeout: 240 seconds]
sreybastien[m] has quit [Ping timeout: 240 seconds]
wangoe[m] has quit [Ping timeout: 244 seconds]
cbarrett has joined #nixos
taktoa[c] has joined #nixos
Ox4A6F has quit [Ping timeout: 244 seconds]
ndarilek has joined #nixos
teozkr_ has joined #nixos
dmj` has joined #nixos
alanz_ has joined #nixos
<{^_^}> [nixpkgs] @lheckemann opened pull request #97826 → nixos/spice-usb-redirection: init → https://git.io/JUlWv
callahad[m] has quit [Ping timeout: 244 seconds]
cvlad- has joined #nixos
katrin has joined #nixos
kazzimazzi[m] has joined #nixos
claudiii has joined #nixos
joshmeredith has quit [Ping timeout: 240 seconds]
philipcristiano has joined #nixos
kyren has joined #nixos
bradparker has joined #nixos
mitsuhiko has quit [Ping timeout: 244 seconds]
jtojnar has quit [Ping timeout: 244 seconds]
jojosch|Johannes has quit [Ping timeout: 244 seconds]
benmkw[m] has quit [Ping timeout: 240 seconds]
jackdk has joined #nixos
yvesf[m] has quit [Ping timeout: 244 seconds]
tbenst[m]1 has joined #nixos
JohannesArnold[4 has joined #nixos
Jake[m] has joined #nixos
chvp has joined #nixos
Ke has quit [Ping timeout: 240 seconds]
johnburnham[m] has quit [Ping timeout: 240 seconds]
jluttine[m] has quit [Ping timeout: 240 seconds]
li_matrix has quit [Ping timeout: 244 seconds]
heatm1s3r has joined #nixos
kozowu has joined #nixos
joshmeredith has joined #nixos
alp has joined #nixos
l_inus[m] has quit [Ping timeout: 244 seconds]
abcrawf has quit [Ping timeout: 240 seconds]
alj[m] has joined #nixos
mitsuhiko has joined #nixos
schlumpp[m] has quit [Ping timeout: 244 seconds]
pheoxy has quit [Ping timeout: 244 seconds]
feffe[m] has quit [Ping timeout: 240 seconds]
bohan[m] has quit [Ping timeout: 240 seconds]
Hirmes[m] has joined #nixos
worldofpeace has quit [Ping timeout: 244 seconds]
chrismatheson has quit [Ping timeout: 240 seconds]
jt35[m] has quit [Ping timeout: 240 seconds]
pointfree has joined #nixos
SpaghettiCthulhu has quit [Ping timeout: 240 seconds]
ntnkwmkmnw[m] has quit [Ping timeout: 240 seconds]
sebass[m] has joined #nixos
alexherbo2[m] has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @vcunat pushed 54 commits to staging-next: https://git.io/JUlWq
siraben has quit [Ping timeout: 240 seconds]
rotaerk has joined #nixos
danielrf[m] has joined #nixos
jojosch|Johannes has joined #nixos
wak-work has joined #nixos
kraem has quit [Ping timeout: 240 seconds]
ZerataX has quit [Ping timeout: 244 seconds]
puzzlewolf has quit [Ping timeout: 244 seconds]
aflatter[m] has quit [Ping timeout: 244 seconds]
yoctocell[m] has quit [Ping timeout: 244 seconds]
yvesf[m] has joined #nixos
cptrbn has joined #nixos
mkg20001 has joined #nixos
georg[m] has quit [Ping timeout: 244 seconds]
peter0576[m] has quit [Ping timeout: 240 seconds]
hpfr has joined #nixos
benmkw[m] has joined #nixos
rnhmjoj has quit [Ping timeout: 244 seconds]
thefloweringash has quit [Ping timeout: 244 seconds]
onewayonelife[m] has quit [Ping timeout: 244 seconds]
Notkea[m] has quit [Ping timeout: 244 seconds]
Dandellion has quit [Ping timeout: 240 seconds]
abcrawf has joined #nixos
tristan[m] has joined #nixos
timokau[m] has quit [Ping timeout: 240 seconds]
Ke has joined #nixos
jluttine[m] has joined #nixos
danielrf[m] has quit [Ping timeout: 240 seconds]
Hayden[m] has quit [Ping timeout: 244 seconds]
surf76[m] has quit [Ping timeout: 244 seconds]
stites[m] has quit [Ping timeout: 244 seconds]
fgaz has quit [Ping timeout: 244 seconds]
ptotter[m] has joined #nixos
ramses[m] has quit [Ping timeout: 240 seconds]
hacker01[m] has joined #nixos
noneucat has quit [Ping timeout: 240 seconds]
duckonomy1 has joined #nixos
sonercirit[m] has joined #nixos
hazel[m] has joined #nixos
snackoverflow[m] has joined #nixos
jlv1 has joined #nixos
yisraeldov has joined #nixos
jt35[m] has joined #nixos
<cptrbn> I'm trying to add a binary cache to an arm7 (pi). Whats the correct way? Adding to /etc/nix/nix.conf isn't allowed
emily has quit [Ping timeout: 240 seconds]
njha[m] has quit [Ping timeout: 240 seconds]
jschievink has quit [Ping timeout: 240 seconds]
lycium[m] has quit [Ping timeout: 240 seconds]
li_matrix has joined #nixos
alexherbo2[m] has joined #nixos
puzzlewolf has joined #nixos
axx has joined #nixos
alaskacanyon[m] has joined #nixos
mindtree[m] has joined #nixos
pheoxy has joined #nixos
eoli3n_ has quit [Ping timeout: 240 seconds]
siraben has joined #nixos
arcnmx has quit [Ping timeout: 240 seconds]
aflatter[m] has joined #nixos
dywedir[m] has joined #nixos
ntnkwmkmnw[m]1 has joined #nixos
<marble_visions> hi all, what's the best way to create a nixpkgs cache mirror? usually what i do with centos is i rsync parts of the repo on an external hdd, and this can later be used elsewhere to install packages from
CRTified[m] has joined #nixos
pinage404[m] has joined #nixos
kraem has joined #nixos
jehova[m] has joined #nixos
fatjedi[m] has joined #nixos
yoctocell[m] has joined #nixos
insidious[m] has quit [Ping timeout: 244 seconds]
o1lo01ol1o has joined #nixos
the_rajsun[m] has joined #nixos
inquisitiv3 has joined #nixos
eadwu[m] has joined #nixos
worldofpeace has joined #nixos
anonymous_zero[m has joined #nixos
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
ArtemVorotnikov[ has joined #nixos
mmk2410[m] has joined #nixos
onewayonelife[m] has joined #nixos
rnhmjoj has joined #nixos
waschtl[m] has joined #nixos
q3k[m] has joined #nixos
thefloweringash has joined #nixos
rschulman has joined #nixos
timokau[m] has joined #nixos
peter0576[m] has joined #nixos
Hayden[m] has joined #nixos
Valodim[m] has joined #nixos
Shyim[m] has joined #nixos
sparogy has joined #nixos
l_inus[m] has joined #nixos
<DigitalKiwi> marble_visions: i use this https://github.com/nh2/nix-binary-cache-proxy/ there's also nix-serve
ramses[m] has joined #nixos
wangoe[m] has joined #nixos
sreybastien[m] has joined #nixos
chrismatheson has joined #nixos
hamishdehmer[m] has joined #nixos
theduke has joined #nixos
noneucat has joined #nixos
callahad[m] has joined #nixos
Ox4A6F has joined #nixos
manu12[m] has joined #nixos
sputny has joined #nixos
cjbassi[m] has joined #nixos
lycium[m] has joined #nixos
uzr[m] has joined #nixos
njha[m] has joined #nixos
jschievink has joined #nixos
emily has joined #nixos
o1lo01ol1o has quit [Ping timeout: 244 seconds]
johnburnham[m] has joined #nixos
schlumpp[m] has joined #nixos
bohan[m] has joined #nixos
arcnmx has joined #nixos
fgaz has joined #nixos
feffe[m] has joined #nixos
Notkea[m] has joined #nixos
SpaghettiCthulhu has joined #nixos
aloiscochard[m] has joined #nixos
dermetfan has quit [Ping timeout: 272 seconds]
stites[m] has joined #nixos
ZerataX has joined #nixos
insidious[m] has joined #nixos
surf76[m] has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
danielrf[m] has joined #nixos
georg[m] has joined #nixos
michaelpj has joined #nixos
Dandellion has joined #nixos
<marble_visions> DigitalKiwi: sweet, thanks
<marble_visions> DigitalKiwi++
<{^_^}> DigitalKiwi's karma got increased to 16
<marble_visions> also
<marble_visions> from the README: or basement
<marble_visions> they know me too well :D
user____ has joined #nixos
<marble_visions> hmm, nix-binary-cache-proxy will work as a workaround, i am looking for the full offline experience
<{^_^}> [nixpkgs] @FRidh pushed 727 commits to staging: https://git.io/JUllf
<DigitalKiwi> you can fiddle with the cache location to make it hold more i think it stores it in /tmp by default so (depending on configuration) isn't persistent
<DigitalKiwi> after reboot
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lord| has quit [Read error: Connection reset by peer]
lord| has joined #nixos
da39a3ee5e6b4b0d has joined #nixos
sangoma has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @stigtsp merged pull request #97791 → gitkraken: 7.3.0 -> 7.3.2 → https://git.io/JUWHH
<{^_^}> [nixpkgs] @stigtsp pushed 2 commits to master: https://git.io/JUllB
cptrbn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alp has quit [Remote host closed the connection]
alp has joined #nixos
sphalerite has quit [Quit: WeeChat 2.6]
alp_ has joined #nixos
cptrbn has joined #nixos
LeshaInc has quit [Read error: Connection reset by peer]
alp__ has joined #nixos
hiro99 has joined #nixos
alp has quit [Ping timeout: 240 seconds]
LeshaInc has joined #nixos
knupfer has joined #nixos
knupfer1 has joined #nixos
alp_ has quit [Ping timeout: 244 seconds]
alp has joined #nixos
maxdevjs has quit [Ping timeout: 272 seconds]
sphalerite has joined #nixos
alp__ has quit [Ping timeout: 244 seconds]
knupfer has quit [Ping timeout: 244 seconds]
knupfer1 is now known as knupfer
alp has quit [Remote host closed the connection]
maxdevjs has joined #nixos
user____ has quit [Ping timeout: 258 seconds]
knupfer has quit [Ping timeout: 244 seconds]
mariatsji has joined #nixos
mariatsji has quit [Read error: Connection reset by peer]
maxdevjs has quit [Ping timeout: 240 seconds]
<marble_visions> all, a question about system-wide/user-specific nix profiles.. i see in /nix/var/nix/profiles i've got system and per-user... am i right to think that the system profiles only get updated by nixos-* commands, and per-user profiles get updated by nix-env?
<marble_visions> and that is how nix differentiates between my root user profile, and the system-wide profile?
sangoma has joined #nixos
arjen-jonathan has joined #nixos
mariatsji has joined #nixos
<marble_visions> and if that's the case, how do you do a `nix-env -u` on the system profile?
Guest39002 is now known as prusnak
<symphorien[m]> nixos-rebuild switch --upgrade
prusnak is now known as Guest89309
CyberManifest has quit [Quit: Leaving...]
sjn[m] has quit [Quit: Idle for 30+ days]
etokarev[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
uzr[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
schlumpp[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
tsrt^ has joined #nixos
Pwnna has quit [Quit: Bye]
Pwnna has joined #nixos
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
<pheoxy> whats everyones preferred / partition size if your using different disks for /home and /srv ?
<{^_^}> [nixpkgs] @primeos pushed to master « html-proofer: 3.15.3 -> 3.16.0 »: https://git.io/JUl4q
<{^_^}> [nixpkgs] @ehmry merged pull request #96599 → trojita: enable localization → https://git.io/JULPZ
<{^_^}> [nixpkgs] @ehmry pushed commit from @sikmir to master « trojita: enable localization »: https://git.io/JUl4s
sangoma has quit [Ping timeout: 256 seconds]
<Raito_Bezarius> pheoxy: depends on your usecase
<pheoxy> Raito_Bezarius: all my data will be hosted on a zfs pool and virtual machines on unused space that root wont be using in vg pools?
<Raito_Bezarius> pheoxy: are you using LVM and ZFS (because you're mentioning vg pools)?
<Raito_Bezarius> pheoxy: but that does not answer really the question, regarding your usecase anyway
<Raito_Bezarius> is it a desktop, a server, are you planning to store a lot of data in /home, a lot of data in /srv, etc.
<pheoxy> not quite sure yet. I have 6 HDD with zfs pool, 2 ssds using one for zfs l2arc? and one for possible vg’s for vm’s but that still leaves me with a 500gb nvme ssd with only nixos / partion on it
<Raito_Bezarius> the 500G ssd is only for /nix ?
<Raito_Bezarius> I think it looks like good enough
<pheoxy> yeh
<Raito_Bezarius> you can always put some 100G for /home and 20G for /srv
<pheoxy> but its got over 400gb free
<pheoxy> not being used
<Raito_Bezarius> the /nix should grow up quickly I believe
<Raito_Bezarius> if you're using NixOS frequently
<Raito_Bezarius> and you dont garbage collect
<pheoxy> I’ve got all my data mounted to /srv folders from zfs pool
<Raito_Bezarius> (or if you set up the machine as a cache server, etc.)
<pheoxy> cache server would be handy I guess as I’m constantly rebuilding nix in vm’s trying to get my configs just right atm
<pheoxy> but after that...
<pheoxy> just thinking I could be using the free space on my nvme more efficiently
<Raito_Bezarius> having spare free space is always useful
<Raito_Bezarius> you don't have to always fill it of data
<lukego> How does one setup x11vnc on NixOS? I have a NixOS machine with GPU and OpenGL etc setup but alas I suddenly need to run it headless via my laptop and I'm wondering what to change in configuration.nix.
<Raito_Bezarius> if you didn't have any L2ARC, maybe, it'd have made sense… but in that case, I feel it's quite Pareto-optimal
<Raito_Bezarius> you need to monitor and see how your workloads perform then adjust
<pheoxy> well just thinking it would be nice to use part of the free space for vm’s like windows 10 vfio stuff mainly
mariatsji has quit [Remote host closed the connection]
<pheoxy> just use it to host the os
<Raito_Bezarius> check first if the IO performance is fine
<Raito_Bezarius> on the ZFS pool
<sphalerite> pheoxy: any reason not to use a zfs pool on the nvme ssd? That way you don't need to decide on the size of the different pieces.
mariatsji has joined #nixos
<pheoxy> sphalerite: good point. using ext4 at the moment
<pheoxy> any con’s for zfs on nvme speed wise?
<pheoxy> it would be nice just automating zfs sends from it guess
<pheoxy> also is there any benefit to passing through the audio pci for gpus when using vfio?
alp has joined #nixos
mariatsji has quit [Ping timeout: 244 seconds]
sangoma has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c merged pull request #97696 → allegro: Add patch to fix fatal build error → https://git.io/JUCNF
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JUl4X
<Raito_Bezarius> pheoxy: less issues? :D
<Raito_Bezarius> @ audio
<pheoxy> i just pass through the video and not audio
<pheoxy> would that cause anything?
<pheoxy> sometimes my gpu’s will lockup vm’s on shutdown and vm’s when started just hang
<{^_^}> [nixpkgs] @vbgl opened pull request #97830 → ocamlPackages.ptset: init at 1.0.1 → https://git.io/JUl4D
<Raito_Bezarius> i'm not a W10 passthrough expert, though, classically, adding a layer makes it easier for things to break :D
<{^_^}> [nixpkgs] @primeos opened pull request #97831 → libva: 2.8.0 -> 2.9.0 → https://git.io/JUl4H
hiro99 has quit [Remote host closed the connection]
<pheoxy> cant be as bad as windows breaking at the moment. At least I can rollback on a VM
<pheoxy> windows doesnt even want to use my 1080 unless I disable my other GPU in bios...
hiro99 has joined #nixos
<{^_^}> [nixpkgs] @primeos merged pull request #97777 → [20.03] signal-desktop: 1.35.1 -> 1.36.1 → https://git.io/JUW1g
<{^_^}> [nixpkgs] @primeos pushed 2 commits to release-20.03: https://git.io/JUl4b
<sphalerite> pheoxy: I haven't done any benchmarks, but have been using ZFS-on-NVMe on my laptops for 3 years now and am very happy with it :)
hiro99 has quit [Remote host closed the connection]
hiro99 has joined #nixos
<sphalerite> pheoxy: as for passing through the audio, yes, there will be less overhead from emulating a sound card, so it will save a bit of CPU power. Not sure if it's a significant amount though.
<Raito_Bezarius> the emulation code itself could be not absolutely stable
<pheoxy> thats true
pjt_tmp has quit [Ping timeout: 240 seconds]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a49bcf59712 (from 9 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> [nixpkgs] @vcunat pushed to master « gcc10: 10.1.0 -> 10.2.0 »: https://git.io/JUlBt
teto has joined #nixos
raghavsood has quit [Remote host closed the connection]
marsh has quit [Ping timeout: 272 seconds]
mmohammadi98126 has joined #nixos
<siddv> Hey! I'm trying to write a derivation in which I modify the source in prePatch. I'm getting errors where the $src is read-only. Is there a way around this?
<siddv> To be specific, I'm trying to add a line of code to a file in the source
mariatsji has joined #nixos
<symphorien[m]> $src is copied in .
<symphorien[m]> modify the files in .
<siddv> Thank you!
zakame has joined #nixos
spudly- has joined #nixos
spudly- has joined #nixos
spudly- has quit [Changing host]
mariatsji has quit [Remote host closed the connection]
mariatsji has joined #nixos
Pratzkas has joined #nixos
Pratzkas has left #nixos [#nixos]
mmohammadi981268 has joined #nixos
<{^_^}> [nixpkgs] @ghuntley opened pull request #97832 → lib.licenses: add Prosperity-3.0.0 license → https://git.io/JUlB2
spudly has quit [Ping timeout: 240 seconds]
spudly- is now known as spudly
mmohammadi98126 has quit [Ping timeout: 260 seconds]
mmohammadi981268 is now known as mmohammadi98126
<ghuntley> Doot doot
zakame has quit [Ping timeout: 240 seconds]
zakame has joined #nixos
sangoma has quit [Ping timeout: 246 seconds]
MichaelRaskin has quit [Ping timeout: 260 seconds]
alp has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @primeos merged pull request #97201 → google-chrome: add libxkbcommon+wayland for ozone/wayland → https://git.io/JUs2Q
<{^_^}> [nixpkgs] @primeos pushed 2 commits to master: https://git.io/JUlBy
MichaelRaskin has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e0759a49733 (from 13 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
tmaekawa has joined #nixos
<siraben> Is it possible to get the path to the nix file in nixpkgs given the package name?
cptrbn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
h0m1 has quit [Ping timeout: 260 seconds]
marsh has joined #nixos
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/0da86f0a517 (from 15 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
adisbladis has quit [Quit: ZNC 1.7.5 - https://znc.in]
adisbladis has joined #nixos
<siraben> Found it, pkgs.hello.meta.position
adisbladis has quit [Remote host closed the connection]
adisbladis has joined #nixos
h0m1 has joined #nixos
marsh has quit [Ping timeout: 260 seconds]
jc_denton[m] has joined #nixos
marsh has joined #nixos
ris has joined #nixos
<marble_visions> symphorien[m]++
<{^_^}> symphorien[m]'s karma got increased to 3
mmohammadi98126 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
noudle has joined #nixos
<{^_^}> [nixpkgs] @oxzi opened pull request #97833 → platformio: 4.3.4 -> 5.0.1 → https://git.io/JUlRa
oida has quit [Remote host closed the connection]
oida has joined #nixos
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/0da86f0a517 (from 15 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
rprije has quit [Ping timeout: 260 seconds]
Guest89309 is now known as prusnak_
mariatsji has quit [Remote host closed the connection]
Darkmatter66 has joined #nixos
Darkmatter66_ has quit [Ping timeout: 260 seconds]
mariatsji has joined #nixos
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
mariatsji has quit [Ping timeout: 244 seconds]
malook has joined #nixos
mariatsji has joined #nixos
mariatsji has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Ma27 merged pull request #97822 → diffoscope: 156 -> 160 → https://git.io/JUltu
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JUl0U
mariatsji has joined #nixos
mariatsji has quit [Ping timeout: 244 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2147c3c34bb (from 8 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JUl0n
sangoma has joined #nixos
<{^_^}> [nixpkgs] @ttuegel merged pull request #97798 → z3: 4.8.8 -> 4.8.9 → https://git.io/JUWxN
<{^_^}> [nixpkgs] @ttuegel pushed 2 commits to master: https://git.io/JUl08
schmittlauch[m] has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @risicle merged pull request #97819 → ytree: fix build → https://git.io/JUlLS
<{^_^}> [nixpkgs] @risicle pushed 2 commits to master: https://git.io/JUl0g
mallox has joined #nixos
waleee-cl has joined #nixos
mallox_ has joined #nixos
mallox_ has quit [Client Quit]
<{^_^}> [nixpkgs] @marsam merged pull request #97815 → gallery-dl: 1.14.3 -> 1.14.5 → https://git.io/JUlT8
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JUl0H
mallox has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @doronbehar merged pull request #96180 → sequoia: 0.18.0 -> 0.19.0 → https://git.io/JUJel
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JUl0F
<{^_^}> [nixpkgs] @stigtsp merged pull request #97812 → choose: init at 1.3.1 → https://git.io/JUlJ9
<{^_^}> [nixpkgs] @stigtsp pushed 2 commits to master: https://git.io/JUl0N
mariatsji has joined #nixos
mariatsji has quit [Remote host closed the connection]
alp has joined #nixos
mariatsji has joined #nixos
<{^_^}> [nixpkgs] @suhr opened pull request #97834 → carla: 2.1.1 -> 2.2.0-RC2 → https://git.io/JUl0p
mariatsji has quit [Ping timeout: 244 seconds]
Sanchayan has joined #nixos
rajivr has joined #nixos
<{^_^}> [hydra] @plutotulp opened pull request #807 → reproduce bash script must supply revCount as int → https://git.io/JUlEt
jumper149 has joined #nixos
mmohammadi981268 has joined #nixos
mmohammadi981268 has quit [Client Quit]
mmohammadi9812 has joined #nixos
<{^_^}> [nixpkgs] @siraben opened pull request #97835 → Remove periods from the end of package descriptions → https://git.io/JUlEc
mariatsji has joined #nixos
tmaekawa has quit [Quit: tmaekawa]
Sanchayan has quit [Quit: leaving]
<{^_^}> [nixops] @grahamc merged pull request #1400 → Fixes destroy resource lack of wait ordering → https://git.io/JUWjH
<{^_^}> [nixops] @grahamc pushed 2 commits to master: https://git.io/JUlE4
gordon has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @oxzi opened pull request #97836 → arduino-cli: 0.11.0 -> 0.12.1 → https://git.io/JUlEr
<{^_^}> [nixpkgs] @ehmry merged pull request #97792 → electrum: 4.0.2 -> 4.0.3 → https://git.io/JUWQf
<{^_^}> [nixpkgs] @ehmry pushed commit from @prusnak to master « electrum: 4.0.2 -> 4.0.3 »: https://git.io/JUlEM
srhm has joined #nixos
tazjin is now known as ta-zjin
mariatsji has quit [Ping timeout: 244 seconds]
medvid_ has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @risicle opened pull request #97837 → libndtypes, libxnd, libgumath: unstable-2018-11-27 -> unstable-2019-08-01, fix gumath python package & darwin → https://git.io/JUlES
maxfield1 has left #nixos [#nixos]
maxfield1 has joined #nixos
noudle has quit []
medvid has joined #nixos
Rusty1 has joined #nixos
alp has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @primeos merged pull request #97831 → libva: 2.8.0 -> 2.9.0 → https://git.io/JUl4H
<{^_^}> [nixpkgs] @primeos pushed to staging « libva: 2.8.0 -> 2.9.0 (#97831) »: https://git.io/JUlEh
<{^_^}> [nixpkgs] @dotlambda pushed to master « setzer: 0.3.0 -> 0.3.2 »: https://git.io/JUluv
<{^_^}> [nixpkgs] @freezeboy opened pull request #97838 → newman: init at 5.2.0 → https://git.io/JUluf
<pie_> were there alternatives to nix-du or am i misremembering?
<{^_^}> [nixpkgs] @stigtsp merged pull request #97144 → gomuks: 0.1.2 -> 0.2.0 → https://git.io/JUsvh
mariatsji has joined #nixos
<{^_^}> [nixpkgs] @jtojnar opened pull request #97839 → deja-dup: 40.6 → 42.4 → https://git.io/JUluT
<{^_^}> [nixpkgs] @dawidsowa opened pull request #97840 → gnomeExtensions.dash-to-panel: 38 -> 39 → https://git.io/JUluk
<{^_^}> [nixpkgs] @jtojnar opened pull request #97841 → alsa-utils: do not sed info script → https://git.io/JUluL
<{^_^}> [nixpkgs] @stigtsp pushed 2 commits to master: https://git.io/JUlut
ta-zjin is now known as tazjin
joachimschmidt55 has joined #nixos
RoboFlex12 has joined #nixos
<{^_^}> [nixpkgs] @freezeboy opened pull request #97842 → [20.09] commitizen: init at 4.2.1 → https://git.io/JUluC
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JUluW
<{^_^}> [nixpkgs] @freezeboy opened pull request #97843 → [20.09] jackmix, jackmix_jack1: fix build, add alsaLib dependency → https://git.io/JUlu2
<{^_^}> [nixpkgs] @jtojnar pushed to master « enchant: 2.2.10 → 2.2.11 »: https://git.io/JUluw
<{^_^}> [nixpkgs] @stigtsp merged pull request #95361 → chroma: init at 0.8.0 → https://git.io/JJ7vN
<{^_^}> [nixpkgs] @stigtsp pushed 2 commits to master: https://git.io/JUlu9
CptCaptain has joined #nixos
dermetfan has joined #nixos
<{^_^}> [nixpkgs] @risicle merged pull request #97734 → acme-client: build with gcc → https://git.io/JUWYw
<{^_^}> [nixpkgs] @risicle pushed 2 commits to master: https://git.io/JUluA
<CptCaptain> I'm having troubles with a derivation that does not build. I don't know which derivation depends on that package, as I have not added it explicitely
<CptCaptain> is there a way to find out which derivation depends on that failing derivation?
knupfer has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jtojnar pushed to master « malcontent: 0.8.0 → 0.9.0 »: https://git.io/JUlzC
noudle has joined #nixos
<Yaniel> --show-trace usually gets you somewhere
<{^_^}> [nixpkgs] @jtojnar pushed to master « almanah: 0.12.0 → 0.12.2 »: https://git.io/JUlzM
da39a3ee5e6b4b0d has joined #nixos
cptrbn has joined #nixos
malook has quit [Quit: malook]
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #96882 → super-slicer: init at 2.2.53.1 → https://git.io/JUmty
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JUlz7
cptrbn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @bhipple merged pull request #97698 → pytorch: update to use passthru's for checks → https://git.io/JUCAv
<{^_^}> [nixpkgs] @bhipple pushed 2 commits to master: https://git.io/JUlzb
mariatsji has quit [Remote host closed the connection]
mariatsji has joined #nixos
mariatsji has quit [Read error: Connection reset by peer]
patrickod has quit [Ping timeout: 272 seconds]
mariatsji has joined #nixos
kalbasit has quit [Ping timeout: 272 seconds]
mariatsji has quit [Read error: Connection reset by peer]
MarkRBM has quit [Ping timeout: 272 seconds]
HeN has quit [Ping timeout: 272 seconds]
kalbasit has joined #nixos
MarkRBM has joined #nixos
mankyKitty has quit [Ping timeout: 272 seconds]
bgupta has quit [Ping timeout: 272 seconds]
mankyKitty has joined #nixos
patrickod has joined #nixos
sgraf has quit [Ping timeout: 272 seconds]
pittma has quit [Ping timeout: 272 seconds]
HeN has joined #nixos
evck_ has quit [Ping timeout: 272 seconds]
elvishjerricco has quit [Ping timeout: 272 seconds]
pittma has joined #nixos
aristid has quit [Ping timeout: 272 seconds]
sgraf has joined #nixos
bgupta has joined #nixos
elvishjerricco has joined #nixos
orivej has joined #nixos
murmr has quit [Ping timeout: 272 seconds]
sethetter__ has quit [Ping timeout: 272 seconds]
aristid has joined #nixos
evck_ has joined #nixos
vdemeester has quit [Ping timeout: 272 seconds]
buggymcbugfix has quit [Ping timeout: 272 seconds]
murmr has joined #nixos
sethetter__ has joined #nixos
buggymcbugfix has joined #nixos
vdemeester has joined #nixos
<gleber> Is anyone using kubenix successfully? I'd love to give it a try, but struggling to get it going. It seem to be incompatible with nixpkgs-unstable, nixos-20.03 and nixos-20.09 :(
marsh has quit [Remote host closed the connection]
<Taneb> So, what's up with gnome3 on unstable rn
siddv has quit [Ping timeout: 240 seconds]
turbo_MaCk has joined #nixos
turbo_MaCk has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
<edcragg> i'm having issues with fonts, some apps are just rendering squares rather than text
<edcragg> (on gnome 3 on unstable)
ddellacosta has joined #nixos
<Yaniel> yea there is an issue about that
<{^_^}> [nixpkgs] @ajs124 merged pull request #95929 → tt-rss-theme-feedly: 2.3.1 -> 2.5.0 → https://git.io/JJj5K
<{^_^}> [nixpkgs] @ajs124 pushed 2 commits to master: https://git.io/JUlgg
tarruda has quit [Ping timeout: 256 seconds]
Peter_Storm has joined #nixos
<Yaniel> some things use an older version of fontconfig and it fails to parse the newer config file
tarruda has joined #nixos
<pie_> does anyone know whats wrong with this kvm/qemu/libvirt/virt-manager error? https://github.com/NixOS/nixpkgs/issues/97844
<{^_^}> #97844 (by deliciouslytyped, 24 minutes ago, open): KVM/qemu/libvirt: image ownership problems? "Could not reopen file: permission denied"
<{^_^}> [nixpkgs] @risicle opened pull request #97845 → pythonPackages.holidays: fix build by adding korean-lunar-calendar dependency → https://git.io/JUlgr
<edcragg> Yaniel: interesting, thanks
<Yaniel> I see it with steam, teams and some of my own code as well
<edcragg> my main issues have been with solvespace and vlc (which errors and doesn't start)
<Yaniel> for those it's probably best to see if you can bump the fontconfig version they link against
<edcragg> oh, as simple as that... and it's a per-application thing
<edcragg> hmm
cptrbn has joined #nixos
<edcragg> i'll look in to doing that
<Yaniel> not sure why everything wasn't updated at the same time
<Yaniel> possibly for compatibility reasons, OTOH the current breakage isn't a great solution either
<edcragg> :P
<{^_^}> [nixpkgs] @ajs124 merged pull request #97774 → joplin-desktop: 1.0.241 -> 1.0.245 → https://git.io/JUWik
<{^_^}> [nixpkgs] @ajs124 pushed 2 commits to master: https://git.io/JUlgy
page has quit [Ping timeout: 256 seconds]
cptrbn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Asmadeus has quit [Ping timeout: 260 seconds]
zakame has quit [Ping timeout: 240 seconds]
eoli3n_ has joined #nixos
zakame has joined #nixos
mallox has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #97690 → inkscape: 1.0 → 1.0.1 → https://git.io/JUCbv
<{^_^}> [nixpkgs] @jtojnar pushed 3 commits to master: https://git.io/JUl2Y
domogled has quit [Ping timeout: 260 seconds]
ddellacosta has quit [Ping timeout: 240 seconds]
justanotheruser has joined #nixos
xcmw has joined #nixos
marsh has joined #nixos
<{^_^}> [nix-mode] @yilinwei opened pull request #109 → Set the 'LD_LIBRARY_PATH' environment variable for mkShell → https://git.io/JUl27
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
gentauro has quit [Quit: leaving]
lordcirth has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #97817 → zulip-term: init at 0.5.2 → https://git.io/JUlkc
<{^_^}> [nixpkgs] @teto pushed 4 commits to master: https://git.io/JUlak
gentauro has joined #nixos
ransom has joined #nixos
MarkRBM has quit [Quit: Connection closed for inactivity]
ransom_ has joined #nixos
ransom_ has quit [Client Quit]
rogue_koder has joined #nixos
ManiacOfMadness has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97841 → alsa-utils: do not sed info script → https://git.io/JUluL
<{^_^}> [nixpkgs] @zimbatm pushed commit from @jtojnar to master « alsa-utils: do not sed info script (#97841) »: https://git.io/JUla5
<{^_^}> [nixpkgs] @zimbatm merged pull request #97843 → [20.09] jackmix, jackmix_jack1: fix build, add alsaLib dependency → https://git.io/JUlu2
<{^_^}> [nixpkgs] @zimbatm pushed commit from @freezeboy to release-20.09 « jackmix, jackmix_jack1: fix build, add alsaLib dependency (#97843) »: https://git.io/JUlax
ManiacOfMadness has joined #nixos
D_ has quit [Quit: 💨]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97840 → gnomeExtensions.dash-to-panel: 38 -> 39 → https://git.io/JUluk
<{^_^}> [nixpkgs] @zimbatm pushed commit from @dawidsowa to master « gnomeExtensions.dash-to-panel: 38 -> 39 (#97840) »: https://git.io/JUlVf
knupfer has quit [Quit: knupfer]
knupfer1 has joined #nixos
knupfer1 has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
ransom_ has joined #nixos
knupfer has quit [Client Quit]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97836 → arduino-cli: 0.11.0 -> 0.12.1 → https://git.io/JUlEr
<{^_^}> [nixpkgs] @zimbatm pushed commit from @oxzi to master « arduino-cli: 0.11.0 -> 0.12.1 (#97836) »: https://git.io/JUlVL
knupfer has joined #nixos
gunix has left #nixos ["WeeChat 2.8"]
marsh has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97833 → platformio: 4.3.4 -> 5.0.1 → https://git.io/JUlRa
<{^_^}> [nixpkgs] @zimbatm pushed commit from @oxzi to master « platformio: 4.3.4 -> 5.0.1 (#97833) »: https://git.io/JUlV3
shabius has joined #nixos
marsh has joined #nixos
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97838 → [20.09] newman: init at 5.2.0 → https://git.io/JUluf
<{^_^}> [nixpkgs] @zimbatm pushed commit from @freezeboy to release-20.09 « newman: init at 5.2.0 (#97838) »: https://git.io/JUlVl
eoli3n_ has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @drewrisinger opened pull request #97846 → pythonPackages.cfn-lint: 0.35.0 -> 0.35.1 → https://git.io/JUlVa
hiro99 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97825 → rescuetime: 2.16.3.1 -> 2.16.4.2 → https://git.io/JUlCJ
<{^_^}> [nixpkgs] @zimbatm pushed commit from @iAmMrinal0 to master « rescuetime: 2.16.3.1 -> 2.16.4.2 (#97825) »: https://git.io/JUlVV
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @drewrisinger opened pull request #97847 → python27Packages.anytree: fix build → https://git.io/JUlVX
evanjs has quit [Read error: Connection reset by peer]
sputny has quit [Remote host closed the connection]
evanjs has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #97839 → deja-dup: 40.6 → 42.4 → https://git.io/JUluT
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JUlVp
<{^_^}> [nixops] @allgreed opened pull request #1401 → Fix legacy 1.7 build [with potential downsides] → https://git.io/JUlVh
philr has quit [Ping timeout: 265 seconds]
CptCaptain has quit [Quit: WeeChat 2.9]
zebrag has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @teto merged pull request #97766 → python2Packages.flask-api: remove → https://git.io/JUW2E
<{^_^}> [nixpkgs] @teto pushed commit from @freezeboy to master « flask-api: disable python2.7 (#97766) »: https://git.io/JUlwG
<{^_^}> [nixpkgs] @teto merged pull request #97763 → python2Packages.cx_Freeze: remove → https://git.io/JUWgq
<{^_^}> [nixpkgs] @teto pushed 2 commits to master: https://git.io/JUlwn
zebrag has joined #nixos
zeta_0 has joined #nixos
twelvecorporatet has quit [Quit: Idle for 30+ days]
cptrbn has joined #nixos
__monty__ has joined #nixos
tobeportable has joined #nixos
seku has quit [Ping timeout: 240 seconds]
seku has joined #nixos
seku has quit [Client Quit]
seku has joined #nixos
knupfer has quit [Ping timeout: 244 seconds]
Peter_Storm has quit [Quit: Connection closed for inactivity]
alp has joined #nixos
mmohammadi9812 has joined #nixos
ddellacosta has joined #nixos
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdeo has quit [Ping timeout: 256 seconds]
justanotheruser has quit [Ping timeout: 244 seconds]
tdeo has joined #nixos
<__monty__> Lists don't have indexing?
<{^_^}> [cabal2nix] @peti merged pull request #469 → FromCabal.License: drop jasper → https://git.io/JUcdG
<{^_^}> [cabal2nix] @peti pushed 2 commits to master: https://git.io/JUlr0
<__monty__> elemAt I guess.
<__monty__> Hmm, is there a way to print all the variables in scope in the repl?
<{^_^}> [nixpkgs] @marsam opened pull request #97848 → flexget: 3.1.67 -> 3.1.71 → https://git.io/JUlrX
zeta_0 has quit [Quit: rcirc on GNU Emacs 27.1]
xcmw has quit [Quit: Textual IRC Client: www.textualapp.com]
<aleph-> Hmm, anyone have experience with packaging php applications? Trying to get some simple printf style output and I'm kinda wondering if the staticness of nix is futzing with it at all
<aleph-> Curious if it might be stopping me from `file_put_contents()` to /tmp/ somehow
<{^_^}> [nixpkgs] @marsam opened pull request #97849 → zeek: 3.2.0 -> 3.2.1 → https://git.io/JUlof
<{^_^}> [nixpkgs] @Infinisil merged pull request #97674 → minecraft-server: 1.16.2 -> 1.16.3 → https://git.io/JUCSW
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JUlot
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #97794 → openmsx: 0.15.0 -> 16.0 → https://git.io/JUW5A
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JUlo8
Izorkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
Izorkin has joined #nixos
eoli3n_ has joined #nixos
quinn has joined #nixos
TheMule has joined #nixos
siddv has joined #nixos
TheMule has quit [Client Quit]
c4rc4s has quit [Ping timeout: 256 seconds]
TheMule has joined #nixos
c4rc4s has joined #nixos
rihards has joined #nixos
gustavderdrache has joined #nixos
sigmundv_ has joined #nixos
alp has quit [Ping timeout: 244 seconds]
growpotkin has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #97747 → iproute_mptcp: fix preConfigure → https://git.io/JUW8I
<{^_^}> [nixpkgs] @teto pushed commit from @freezeboy to master « iproute_mptcp: fix preConfigure (#97747) »: https://git.io/JUlKn
bennofs_ has joined #nixos
alp has joined #nixos
betrion[m] has joined #nixos
cole-h has joined #nixos
bennofs__ has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #97848 → flexget: 3.1.67 -> 3.1.71 → https://git.io/JUlrX
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JUlKa
<{^_^}> [nixpkgs] @risicle pushed 2 commits to master: https://git.io/JUlKw
<{^_^}> [nixpkgs] @risicle merged pull request #97847 → python27Packages.anytree: fix build → https://git.io/JUlVX
<{^_^}> [nixpkgs] @gebner opened pull request #97850 → python3Packages.websockets: make tests deterministic → https://git.io/JUlKK
ransom has joined #nixos
TheMule has quit [Ping timeout: 265 seconds]
rihards has quit [Quit: rihards]
<{^_^}> [nixpkgs] @Ma27 pushed to master « gotify-server: fix UI »: https://git.io/JUlKD
<{^_^}> [nixpkgs] @zachcoyle opened pull request #97851 → vimPlugins.nerdtree-git-plugin: init at 2020-09-11 → https://git.io/JUlKy
siddv has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #96906 → gts: Fix cross compilation → https://git.io/JUmDR
<{^_^}> [nixpkgs] @Ericson2314 pushed 2 commits to staging: https://git.io/JUlK7
sangoma has quit [Ping timeout: 244 seconds]
saschagrunert has joined #nixos
<{^_^}> [nixpkgs] @danieldk opened pull request #97852 → _1password-gui: 0.8.4 -> 0.8.5-1 → https://git.io/JUlKb
<{^_^}> [nixpkgs] @Ma27 pushed to release-20.09 « gotify-server: fix UI »: https://git.io/JUlKN
<{^_^}> [nix-mode] @leungbk opened pull request #110 → nix-repl: use history file → https://git.io/JUlKx
<{^_^}> [nixpkgs] @danieldk opened pull request #97853 → softmaker-office: 1018 -> 1020 → https://git.io/JUl6e
<damjan> aleph-: many php apps assume the directory where the app is installed is writable
<aleph-> damjan: Might be it, I've just opened an issue. Maybe the devs can help me with this super small fix I need :p
<aleph-> Err, devs on the package I'm using
<damjan> which one?
<damjan> I just finished packing up tinytinyrss with uwsgi+php as a systemd portable service image
alp has quit [Ping timeout: 240 seconds]
dermetfan has quit [Ping timeout: 240 seconds]
<damjan> I can't say it was easy peasy
FloNix has joined #nixos
<FloNix> hi!
<FloNix> The nixos documentation fpr kubernetes says that there is no kubernetes HA cluster possible at the moment. Is there anyone here who has a HA cluster running with nixos?
hiro99 has joined #nixos
<aleph-> damjan: rss-bridge.
<aleph-> It's already packaged, I just need a tweak for it
_ris has joined #nixos
ris has quit [Ping timeout: 244 seconds]
hiro99 has quit [Remote host closed the connection]
davidv7_ has joined #nixos
<{^_^}> [nixpkgs] @wkral opened pull request #97854 → ytree: fix build → https://git.io/JUl6w
davidv7 has quit [Ping timeout: 240 seconds]
rajivr has quit [Quit: Connection closed for inactivity]
<{^_^}> [hydra] @andir opened pull request #808 → ldap: only try the LDAP realm when it is configured → https://git.io/JUl6N
jumper149 has quit [Quit: WeeChat 2.9]
knupfer has joined #nixos
knupfer has quit [Ping timeout: 244 seconds]
endformationage has joined #nixos
alp has joined #nixos
sangoma has joined #nixos
dermetfan has joined #nixos
mallox has quit [Ping timeout: 244 seconds]
mmohammadi98124 has joined #nixos
mmohammadi9812 has quit [Ping timeout: 260 seconds]
mmohammadi98124 is now known as mmohammadi9812
mariatsji has joined #nixos
knupfer has joined #nixos
fresheyeball has joined #nixos
_ris is now known as ris
<immae> Can I add something to a python derivation so that, when used in a nix-shell (like a regular mkShell { buildInputs = [ (python.withPackages(p: [ p.myDerivation ]) ]; }), it adds things to the NIX_LDFLAGS?
<immae> (propagatedBuildInputs does the job when I use it directly in the buildInputs of mkShell, but not when I call it from withPackages)
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ManiacOfMadness has quit [Ping timeout: 244 seconds]
mariatsji has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @doronbehar opened pull request #97856 → buildGoModule: support -ldflags directly → https://git.io/JUlP4
marsh has quit [Remote host closed the connection]
alp has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97775 → nixos/datadog: allow specifying dd_url → https://git.io/JUWXG
<{^_^}> [nixpkgs] @zimbatm pushed commit from @flokli to master « nixos/datadog: allow specifying dd_url (#97775) »: https://git.io/JUlPr
evanjs has quit [Ping timeout: 265 seconds]
evanjs has joined #nixos
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
<{^_^}> [nixpkgs] @mweinelt opened pull request #97857 → pythonPackages.mocket: 3.8.8 -> 3.8.9 → https://git.io/JUlPX
sangoma has quit [Read error: Connection reset by peer]
marsh has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
maxdevjs has joined #nixos
cole-h has quit [Quit: Goodbye]
Pwnna has quit [Quit: Bye]
Pwnna has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
mmohammadi9812 has quit [Read error: Connection reset by peer]
domogled has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #97502 → reason: 3.6.0 → 3.6.2 → https://git.io/JUcmw
<{^_^}> [nixpkgs] @vbgl pushed to master « reason: 3.6.0 → 3.6.2 »: https://git.io/JUlXs
<{^_^}> [nixpkgs] @vbgl merged pull request #97830 → ocamlPackages.ptset: init at 1.0.1 → https://git.io/JUl4D
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.ptset: init at 1.0.1 »: https://git.io/JUlXZ
alp has joined #nixos
arjen-jonathan has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @vbgl merged pull request #97634 → ocamlPackages.ptmap: 2.0.4 → 2.0.5 → https://git.io/JUCZA
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.ptmap: 2.0.4 → 2.0.5 »: https://git.io/JUlXW
<{^_^}> [nixpkgs] @vbgl pushed 2 commits to release-20.09: https://git.io/JUlXg
b has joined #nixos
zakame has quit [Ping timeout: 265 seconds]
zakame has joined #nixos
TheMule has joined #nixos
omnipotententity has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @gebner merged pull request #97850 → python3Packages.websockets: make tests deterministic → https://git.io/JUlKK
<{^_^}> [nixpkgs] @gebner pushed 2 commits to master: https://git.io/JUlXh
<{^_^}> [nixpkgs] @gebner pushed to release-20.09 « python3Packages.websockets: make tests deterministic »: https://git.io/JUl1e
sigmundv_ has quit [Read error: Connection reset by peer]
zakame has quit [Ping timeout: 244 seconds]
sigmundv_ has joined #nixos
mariatsji has joined #nixos
sangoma has joined #nixos
Heirlung has quit [Ping timeout: 264 seconds]
mariatsji has quit [Ping timeout: 244 seconds]
Heirlung has joined #nixos
omnipotententity has joined #nixos
ransom has joined #nixos
zakame has joined #nixos
IRCsum has joined #nixos
<{^_^}> [nixpkgs] @treed opened pull request #97858 → acme-client: build with gcc → https://git.io/JUl1N
zakame has quit [Ping timeout: 244 seconds]
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nix] @zimbatm merged pull request #4006 → docs+test: fix remaining installer downloads without -L → https://git.io/JUWA4
<{^_^}> [nix] @zimbatm pushed commit from @lf- to master « docs+test: fix remaining installer downloads without -L (#4006) »: https://git.io/JUlML
zakame has joined #nixos
<{^_^}> [nixpkgs] @bbigras opened pull request #97860 → zenith: 0.10.0 -> 0.10.1 → https://git.io/JUlMq
ransom has joined #nixos
<NieDzejkob> how can I set $NIX_PATH to point nixos-config at my dotfiles but leave the rest as default?
<{^_^}> [nixpkgs] @vcunat pushed 4 commits to release-20.09: https://git.io/JUlMc
cptrbn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @zimbatm merged pull request #97832 → lib.licenses: add Prosperity-3.0.0 license → https://git.io/JUlB2
<{^_^}> [nixpkgs] @zimbatm pushed commit from @ghuntley to master « lib.licenses: add Prosperity-3.0.0 license (#97832) »: https://git.io/JUlMW
<{^_^}> [nixpkgs] @bbigras closed pull request #79073 → chatterino2: unstable-2019-05-11 -> 2.1.7 → https://git.io/JvsId
<NieDzejkob> (I feel like setting this in my .bashrc instead of configuration.nix would work better bootstrapping-wise)
seku has quit [Quit: Connection closed]
knupfer has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Lassulus merged pull request #97681 → sublime-merge: use 2033 as dev and 2032 as stable versions → https://git.io/JUC7V
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JUlMa
domogled has quit [Remote host closed the connection]
cosimone has joined #nixos
<NieDzejkob> oh, apparently "export NIX_PATH="nixos-config=...:$NIX_PATH" actually works. I guess it didn't before due to some env weirdness
knupfer has joined #nixos
<sreybastien[m]> i'm not sure, but i think there is a problem on "unstable" with pinentry and gnupg, `gpgconf --check-programs ` return an error on path `gpgconf: error running '/nix/store/yvnd02rbdsin2waamh9kb94klipajbhi-gnupg-2.2.20/bin/pinentry': probably not installed` and when i try to install it using system.packages of `configuration.nix`, that don't solve the problem because path differs.
* sreybastien[m] uploaded an image: Capture d’écran du 2020-09-12 22-33-37.png (89KiB) < https://matrix.org/_matrix/media/r0/download/matrix.org/hioOdkLfiYvqzkEQsTOXQVPR/Capture d’écran du 2020-09-12 22-33-37.png >
<sreybastien[m]> as you see pinentry is not present in this folder
sangoma has quit [Quit: WeeChat 2.9]
<NieDzejkob> sreybastien[m]: maybe you've pasted that path into ~/.gnupg/gpg-agent.conf manually and then it got GC'd?
<NieDzejkob> I've got pinentry-program /run/current-system/sw/bin/pinentry-curses in that file
<sreybastien[m]> nothing in that file for me @Nie
<NieDzejkob> hmm
<sreybastien[m]> * nothing in that file for me NieDzejkob
cosimone has quit [Quit: Quit.]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cosimone has joined #nixos
<sreybastien[m]> yeah this is strange
TheMule has quit [Ping timeout: 240 seconds]
<sreybastien[m]> something i miss ?
<NieDzejkob> try restarting your gpg-agent with gpgconf --reload gpg-agent
<NieDzejkob> I guess you've just upgraded?
<sreybastien[m]> yep, upgraded and rebooted
<sreybastien[m]> * yep, upgraded (nixos-rebuild switch --upgrade) and rebooted
mmohammadi9812 has joined #nixos
<sreybastien[m]> need to open a bug report NieDzejkob ?
__monty__ has quit [Quit: leaving]
<NieDzejkob> did this work before?
justanotheruser has joined #nixos
<sreybastien[m]> no, this is the first time i test encrypt/decrypt using FWD agent by gpg
<sreybastien[m]> so i don't know :)
aborsu has joined #nixos
aborsu has quit [Remote host closed the connection]
<NieDzejkob> could you find and paste the config file that nix generates for gpg-agent?
<betaboon> is it possible that `builtins.fetchGit` requires `git` to be in `systemPackages` ?
tsrt^ has quit []
saschagrunert has quit [Remote host closed the connection]
freezeboy has joined #nixos
eoli3n_ has quit [Remote host closed the connection]
<freezeboy> Hello, I'm trying to package cockpit from fedora/rhel guys and I am currently stuck with problems with the docbook dtd/xsl checks while building the doc, there are quite a lot of documents, do you know if there is a nice way to deal with it ?
<sreybastien[m]> NieDzejkob: Where i could find that ? `gpgconf --list-options gpg-agent` list the option, but my gpg-agent.conf is empty
ransom has joined #nixos
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
ardumont has quit [Ping timeout: 260 seconds]
<NieDzejkob> sreybastien[m]: dunnoh, try looking with something with gpg in the name in /etc?
cosimone has quit [Client Quit]
tsrt^ has joined #nixos
zot has quit [Ping timeout: 272 seconds]
cosimone has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed 41 commits to glibc232: https://git.io/JUlDA
zot has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
johs has quit [Ping timeout: 272 seconds]
johs has joined #nixos
lally has quit [Ping timeout: 272 seconds]
ardumont has joined #nixos
lally has joined #nixos
<sreybastien[m]> hum don't found, i need to move, thanks NieDzejkob i push an issue here : https://github.com/NixOS/nixpkgs/issues/97861
<{^_^}> #97861 (by reyman, 41 seconds ago, open): gpg path of pinentry listed by nixos is not installed ...
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JUlSU
<{^_^}> [nixpkgs] @ryantm merged pull request #97632 → nixos/jitsi-meet: add docs → https://git.io/JUCGq
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JUlSE
<{^_^}> [nixpkgs] @jtojnar opened pull request #97862 → twemoji-color-font: fix build with Inkscape 1 → https://git.io/JUlSX
<{^_^}> [nixpkgs] @ryantm opened pull request #97863 → nixos/jitsi-meet: add docs → https://git.io/JUl9t
<est31> If I want to try out 20.09 how would I do that?
<est31> sudo nix-channel --remove nixos and then sudo nix-channel --add nixos https://nixos.org/channels/nixos-20.09 ??
<freezeboy> est31 yes, the remove is even useless
<ryantm> est31: looks good
cosimone has quit [Quit: Quit.]
knupfer has quit [Ping timeout: 244 seconds]
<est31> thx
<freezeboy> then sudo nix-channel --update and sudo nixos-rebuild build-vm
omnipotententity has quit [Ping timeout: 240 seconds]
<est31> it's url then name format in the --add command apparently
<est31> freezeboy: what does the second do?
<freezeboy> oh yes true
<freezeboy> it builds the configuration, but instead of activating it on your system, it builds a qemu vm so that you can boot it without any risk
<est31> oh
<est31> that's cool
<freezeboy> when it works, I recommend the boot option, so that the new system is only activated on future reboot
<freezeboy> (as everything will basically change: kernel, systemd, ....)
omnipotententity has joined #nixos
omnipotententity has joined #nixos
omnipotententity has quit [Changing host]
cr4y1 has joined #nixos
RoboFlex12 has quit [Quit: Leaving]
<betaboon> has anyone gotten jack working ?
<genevino> betaboon: i did, yes, but i failed configuring pulseaudio as a jack sink
<genevino> betaboon: but yeh, jack was working and usable
<{^_^}> [nixpkgs] @doronbehar opened pull request #97864 → shadowfox: Add ldflags → https://git.io/JUlHU
tobeportable has quit [Ping timeout: 244 seconds]
<betaboon> genevino: do you have some nix-configuration that you could share? XD
joesventek has quit [Quit: Quit]
omnipotententity has quit [Ping timeout: 244 seconds]
<genevino> betaboon: unfortunately not, no. i just used whatever i was able to find in the nixos options index.
joesventek has joined #nixos
<genevino> betaboon: it didn't work with pulseaudio sink so i kindof reverted that change.
<genevino> betaboon: in fact, i use jack to make beats with renoise, and the whole patchelf stuff is pretty awkward on nixos if you run a registered version of renoise, so i just ended up rebooting into my artix ssd.
<{^_^}> [nixpkgs] @doronbehar opened pull request #97865 → gotify-cli: Add version and commit to ldflags → https://git.io/JUlH3
<genevino> betaboon: i really just typed "jack." into the text box and fiddled around a bit.
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
cosimone has joined #nixos
<betaboon> genevino: i tried with `services.jack.jackd.enable = true;` and trying to play a mp3 with `mocp` but jack doesnt seem to succeed to start
nikivi has joined #nixos
<genevino> betaboon: did you add your user to the "jackaudio" group?
<freezeboy> betaboon have you checked the logs ? is there a pulseaudio service running ?
<betaboon> genevino: yes i did
Alex[m]8 has joined #nixos
<betaboon> freezeboy: nope no pulseaudio running
<genevino> betaboon: well you somewhat need to use the "pkgs.pulseaudioFull" package to get jack support with it from what i understand so far.
nikivi has quit [Client Quit]
nikivi has joined #nixos
<betaboon> genevino: the wiki says that jack can run with or without pulseaudio, i am trying to go without pulseaudio atm
<genevino> betaboon: i'm not sure if mocp has jack output by default or if mpv would have it. i would normally strive to achieve pulseaudio going into jack.
<genevino> betaboon: well you need an application that can speak jack then. :)
<betaboon> genevino: mocp states it checks jack, then alsa
omnipotententity has joined #nixos
omnipotententity has joined #nixos
omnipotententity has quit [Changing host]
<genevino> betaboon: well i'm not sure if you need to run "jackd" manually in your session or if it gets started as a service somehow.
<betaboon> genevino: I'm trying to run all that on a system without xserver as well :/
<{^_^}> [nixpkgs] @nyanloutre opened pull request #97866 → pythonPackage.python-gitlab: add missing tests requirements → https://git.io/JUlHu
Rusty1 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @nyanloutre opened pull request #97867 → home-assistant: remove unnecessary protobof version pin → https://git.io/JUlHz
<{^_^}> [nixpkgs] @dpercy opened pull request #97868 → fac-build: init at 0.5.3 → https://git.io/JUlH2
RoboFlex13 has joined #nixos
cr4y1 has quit [Read error: Connection reset by peer]
Darkmatter66 has quit [Quit: ZNC 1.7.5 - https://znc.in]
krasnij has quit [Read error: Connection reset by peer]
Darkmatter66 has joined #nixos
krasnij has joined #nixos
<freezeboy> is anyone using the fwupd service ?
spudly- has joined #nixos
spudly- has joined #nixos
spudly- has quit [Changing host]
spudly has quit [Ping timeout: 240 seconds]
spudly- is now known as spudly
evanjs has quit [Read error: Connection reset by peer]
evanjs has joined #nixos
<NieDzejkob> I added 'export NIX_PATH="nixos-config=$HOME/.dotfiles/nixos/configuration.nix:$NIX_PATH"' to my bashrc and now nix-env -qa is complaining: warning: name collision in input Nix expressions, skipping '/home/kuba/.nix-defexpr/channels_root/nixos'
<freezeboy> if you print NIX_PATH, don't you have two nixos-config ?
justanotheruser has quit [Ping timeout: 240 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<NieDzejkob> hmm, yeah. Though if I remove it manually, the error still appears
bran has joined #nixos
work_ has joined #nixos
<NieDzejkob> huh, I commented out the NIX_PATH line, started a new terminal, confirmed the value is the default one (nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels), and the warning is still shown
<bran> Hello
<freezeboy> NieDzejkob very strange ...
<freezeboy> @bran hello
<NieDzejkob> How do I even begin debugging this?
zeta_0 has joined #nixos
zeta_0 has quit [Client Quit]
cptrbn has joined #nixos
<freezeboy> no idea
<hexa-> what's the most convenient way to concat a variable to a path
<hexa-> like ./secrets/${config.networking.hostName}/foo
<hexa-> and get a path from that
<clever> hexa-: ./secrets + "/${config.networking.hostName}/foo"
<hexa-> thx
<NieDzejkob> heh, looks like that happened when I ran nixos-rebuild as non-root by accident. Fixed with nix-channel --remove nixos && nix-channel --update
janneke has quit [Remote host closed the connection]
janneke has joined #nixos
<{^_^}> [nixpkgs] @srhb merged pull request #96446 → kubernetes: 1.18.8 -> 1.19.1 → https://git.io/JUkH8
<{^_^}> [nixpkgs] @srhb pushed 4 commits to master: https://git.io/JUlQP
<freezeboy> cool it is fixed then
<{^_^}> [nixpkgs] @srhb opened pull request #97869 → BP 20.09: Merge pull request #96446 from saschagrunert/k8s → https://git.io/JUlQQ
<bran> I'm waiting for discord update on for unstable
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #97854 → [20.09] ytree: fix build → https://git.io/JUl6w
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to release-20.09: https://git.io/JUlQ7
bran is now known as Bran
Bran has quit [Quit:]
<freezeboy> what do you mean ? it seems it is merged
srhm has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #97816 → windowmaker: 0.95.8 -> 0.95.9 → https://git.io/JUlkG
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JUlQ5
Bran has joined #nixos
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Bran has quit [Client Quit]
<bbigras> ,locate qt5keychain.pri
<{^_^}> Couldn't find in any packages
cosimone has quit [Ping timeout: 240 seconds]
<bbigras> ,locate qt5keychain
<{^_^}> Found in packages: libsForQt5.qtkeychain
zupo has joined #nixos
<{^_^}> [nixpkgs] @mweinelt opened pull request #97870 → home-assistant: drop protobuf override → https://git.io/JUl7U
orivej has joined #nixos
<{^_^}> [nixpkgs] @srhb merged pull request #97869 → BP 20.09: Merge pull request #96446 from saschagrunert/k8s → https://git.io/JUlQQ
<{^_^}> [nixpkgs] @srhb pushed 2 commits to release-20.09: https://git.io/JUl7T
freezeboy has quit [Remote host closed the connection]
alp_ has joined #nixos
rprije has joined #nixos
nixbitcoin_ has joined #nixos
nixbitcoin has quit [Ping timeout: 240 seconds]
alp has quit [Ping timeout: 244 seconds]
alp_ has quit [Ping timeout: 244 seconds]
Rusty1 has joined #nixos
Mateon2 has joined #nixos
sigmundv_ has quit [Ping timeout: 244 seconds]
Mateon1 has quit [Ping timeout: 260 seconds]
Mateon2 is now known as Mateon1
joesventek has quit [Quit: Quit]
joesventek has joined #nixos
<{^_^}> [nixpkgs] @garbas opened pull request #97872 → asciinema-scenario: init at 0.1.0 → https://git.io/JUl7l
orivej has quit [Ping timeout: 240 seconds]
fendse has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
justanotheruser has joined #nixos
nikivi has quit [Client Quit]
nikivi has joined #nixos
mbrgm_ has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed to nixpkgs-update « switch nixpkgs input from 20.03 to unstable »: https://git.io/JUl7z
mbrgm has quit [Ping timeout: 272 seconds]
mbrgm_ is now known as mbrgm
dermetfan has quit [Ping timeout: 240 seconds]
<{^_^}> [nixos-homepage] @garbas opened pull request #525 → Switch nixpkgs input from 20.03 to unstable → https://git.io/JUl72
mariatsji has joined #nixos
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/252bfe01075 (from 14 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
mariatsji has quit [Ping timeout: 244 seconds]
stiell has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #97870 → home-assistant: drop protobuf override → https://git.io/JUl7U
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JUl7p