worldofpeace changed the topic of #nixos to: NixOS stable: 19.09 \o/ https://discourse.nixos.org/t/nixos-19-09-release/4306/2 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2018 || For best support,
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @alexarice to release-19.09 « mendeley: Use QT mkDerivation »: https://git.io/Jer0T
m0rphism has quit [Ping timeout: 245 seconds]
<elvishjerricco> clever: The deb file isn't at a publicly available URL, I have to login to a site and download the file manually.
<clever> elvishjerricco: ah, id just use a local path then
<clever> elvishjerricco: enless you can write a drv to auto-login, check the old factorio fetcher
<elvishjerricco> clever: But then if I put that in my system config, then the config isn't totally reproducible on other systems unless I download the file on those systems as well
<elvishjerricco> And I'm really against putting a password in a .drv :P
<clever> elvishjerricco: builtins.pathExists
<elvishjerricco> Oh that's a cool idea
<jackdk> doesn't the java stuff have a "accept the license, and add this file to your nix store, then build" workflow? could you mimic that?
<clever> jackdk: thats pkgs.requireFile, and it avoids needing the password
<clever> though it still means you cant build until you fetch the file
cosimone has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @worldofpeace pushed to master « mendeley: use wrapQtApp »: https://git.io/Jer0I
<clever> elvishjerricco: the above example is a bit more complex, it changes nixos options, based on the presense of a file with secrets
<{^_^}> [nixpkgs] @worldofpeace pushed to release-19.09 « mendeley: use wrapQtApp »: https://git.io/Jer0L
<elvishjerricco> Ok cool. Given that, is there a convenient way to turn a deb file into a NixOS package? Something that would preserve the `.desktop` file that comes with it?
<nh2> clever: it's in static-haskell-nix with normal pkgsMusl, so I think that should not be a cross compile, not sure why it picks that ghc nevertheless
<clever> elvishjerricco: you would have to patchelf things first
<clever> elvishjerricco: search nixpkgs for dpkg, and youll find examples
<clever> nh2: i think the musl thing is counted as a cross compile, so the native compiler is glibc
<elvishjerricco> I'll probably just keep using `buildFHSUserEnv` like I currently do :P
<clever> elvishjerricco: patchelf is much simpler
johnw_ is now known as johnw
<elvishjerricco> clever: I think `pkgsCross.musl64` is considered a cross compiler, but `pkgsMusl` is just a different local system (IIRC)
<pie_> given the regularity ebian imposes (i think?) makes me wonder if we could have an auto debian handler or somethjing
<elvishjerricco> clever: I never found `patchelf` to be the simple way, even if it's probably the better way :P
selfsymmetric-mu has quit [Remote host closed the connection]
mexisme has quit [Ping timeout: 240 seconds]
pamplemousse has quit [Ping timeout: 240 seconds]
ddellacosta has quit [Ping timeout: 268 seconds]
<clever> nh2: if you can link a branch in a PM, i could look into it later, maybe tomorrow
ThatGhostKid has joined #nixos
<nh2> clever: ok, tomorrow is also better for me
<clever> nh2: along with a nix-build command to reproduce things
reallymemorable has quit [Quit: reallymemorable]
<nh2> I shall provide :)
<{^_^}> [nixpkgs] @Ma27 pushed to master « vim-vint: fix startup »: https://git.io/Jer0c
<{^_^}> [nixpkgs] @Ma27 pushed to release-19.09 « vim-vint: fix startup »: https://git.io/Jer08
reallymemorable has joined #nixos
<{^_^}> [nixpkgs] @cptMikky opened pull request #73372 → pythonPackage.ovirt-engine-sdk: init at 4.3.3 → https://git.io/Jer0E
<{^_^}> [nixpkgs] @Ma27 pushed to structured-attrs « go: fix build »: https://git.io/Jer0u
reallymemorable has quit [Quit: reallymemorable]
<{^_^}> [nixpkgs] @kalbasit opened pull request #73373 → Nixpkgs vim add bitbucket fugitive provider → https://git.io/Jer02
reallymemorable has joined #nixos
reallymemorable has quit [Client Quit]
<leo__> Is it bad to refer directly to /run/current-system/sw/bin?
<leo__> In systemd services, for instance.
<elvishjerricco> leo__: In general, I'd say yes
<elvishjerricco> It's unavoidable on rare occasion though
<leo__> Yeah, I think this might be one.
orivej has joined #nixos
<leo__> I have to refer to chvt-priv from the systemd service.
<leo__> But it's only a writeScriptBin and not an overlay.
<clever> leo__: just use the pkg that contains that binary
<leo__> What do you mean?
<clever> ,locate bin chvt-priv
<{^_^}> Couldn't find in any packages
<clever> ,locate bin chvt
<{^_^}> Found in packages: kbd, toybox, busybox
<leo__> It's a writeScriptBin
<leo__> My chvt-priv.
<elvishjerricco> leo__: Make that `chvtPriv` thing available to other Nix code and just refer to it directly in the systemd service
<clever> leo__: put ${pkgs.kbd}/bin/chvt in your trying
kleisli has quit [Ping timeout: 265 seconds]
<clever> s/trying/string/
<leo__> I don't want to refer directly to chvt. :s
<leo__> It'll run as root.
<leo__> I set all this crazy permissions just to avoid that. xd
CSP-GLOBAL has joined #nixos
<clever> leo__: the chvt in the nix store isnt setuid
<elvishjerricco> clever: You'll probably want to take a look at their link
<elvishjerricco> They have a script that does a bunch of permissions stuff
<leo__> clever: But then without setuid it can get jammed
<elvishjerricco> leo__: Anyway, why can't you just refer to the `chvtPriv` derivation in the systemd service?
<leo__> I dont want to set neither suid nor cap_dac_read_search
<leo__> elvishjerrico: Because it depends on `config`
<leo__> It'll call for a refactor. D:
<elvishjerricco> leo__: Sounds like a worthwhile refactor :P
<leo__> Lazy solution would be to put it in slim.nix and call it from env in the other places.
<elvishjerricco> Or, just put it in an overlay
<elvishjerricco> then it'll be available to all modules without issue
<leo__> But then in the overlay I wont have `config`
<leo__> xd
<elvishjerricco> yes you will
<leo__> unless i set pkgs.config...
sondr3 has quit [Quit: WeeChat 2.6]
<leo__> How?
<clever> leo__: if the overlay exists in a nixos module, it can read config
<elvishjerricco> `{ pkgs, config, lib, ... }: { nixpkgs.overlays = [(self: super: { foo = blah config.bar; })]; }`
<leo__> Oh!
<leo__> For sure.
<leo__> In this case it wouldn't only be available to nix tools, right?
<leo__> But it's not a problem.
MmeQuignon has joined #nixos
<leo__> (e.g in `nix repl`)
<elvishjerricco> What do you mean "only be available to nix tools"?
<leo__> elvishjerrico: In `nix repl`
<leo__> What my nixpkgs-overlays points to.
<elvishjerricco> Oh. Yea if it's just in your `configuration.nix` modules, then it won't be in stuff like `nix repl`
<leo__> No sense to put an overlay that depends on config
jgt1 has quit [Ping timeout: 276 seconds]
<leo__> There
<{^_^}> [nixpkgs] @Infinisil merged pull request #68604 → nixos/ttyd: init → https://git.io/Jer01
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/Jer0M
<leo__> elvishjerrico++
<leo__> elvishjerricco++
<{^_^}> elvishjerricco's karma got increased to 13
<leo__> clever++
<{^_^}> clever's karma got increased to 241
<leo__> `if the overlay exists in a nixos module, it can read config`
<leo__> I forgot this. Thank you guys. .-.
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 2 commits to nixos-19.09-small: https://git.io/JerRJ
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/7cf395938ac (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
mexisme has joined #nixos
marler8997__ has quit [Quit: Leaving]
sigmundv has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @worldofpeace pushed to master « kdeApplications.print-manager: fix build »: https://git.io/Jer0S
acarrico has quit [Ping timeout: 268 seconds]
selfsymmetric-mu has joined #nixos
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 252 seconds]
mbrgm_ is now known as mbrgm
Fare has joined #nixos
jluttine has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 6 commits to nixpkgs-19.09-darwin: https://git.io/Jer0b
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/133d836dafa (from 42 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
WhatisRT has left #nixos ["ERC (IRC client for Emacs 26.1)"]
<gchristensen> I'm getting this error: error: The unique option `environment.variables.XCURSOR_PATH' is defined multiple times, in: - /home/grahamc/projects/grahamc/nixos-config/devices/petunia/configuration.nix - /home/grahamc/projects/github.com/NixOS/nixpkgs/nixos/modules/config/shells-environment.nix. at git rev 7827d3f4497ed722fedca57fd4d5ca1a65c38256 but
<gchristensen> /home/grahamc/projects/github.com/NixOS/nixpkgs/nixos/modules/config/shells-environment.nix. definitely doesn't set environment.variables.XCURSOR_PATH -- anyone seen this?
<clever> gchristensen: 158 environment.variables = config.environment.sessionVariables;
<clever> gchristensen: that line set it
CSP-GLOBAL has quit [Ping timeout: 246 seconds]
<gchristensen> not a very nice error :/
<clever> yeah
* gchristensen biects
<{^_^}> [nixpkgs] @worldofpeace merged pull request #73336 → Update deepin packages → https://git.io/JerTX
<{^_^}> [nixpkgs] @worldofpeace pushed 31 commits to master: https://git.io/JerEL
peanutbutter144 has quit [Quit: No Ping reply in 180 seconds.]
<gchristensen> worldofpeace: I used to do environment.variables.XCURSOR_PATH = [ "${pkgs.gnome3.adwaita-icon-theme}/share/icons" ]; -- is there a better approach now?
peanutbutter144 has joined #nixos
Rusty1 has quit [Remote host closed the connection]
<infinisil> Ideally the values would get merged hmm..
<gchristensen> (lib.mkForce obviously is an option, but maybe there is a better solution)
<worldofpeace> gchristensen: You don't need to set this at all.
<gchristensen> oh?
<worldofpeace> You just need to add the package to systemPackages
<infinisil> Ah, profileRelativeSessionVariables
<infinisil> Nice
o1lo01ol1o has joined #nixos
<gchristensen> does it work better if I put it in to system packages?
<worldofpeace> environment.profileRelativeSessionVariables.XCURSOR_PATH, makes it so it actually looks for cursors that are installed
<worldofpeace> We had nothing but terrible workarounds in display-managers for example so they could have proper cursors (wrappers!!!)
<worldofpeace> gchristensen: I believe it should work as it was always intended if in systemPackages
markus1199 has joined #nixos
<gchristensen> yeah, but say for example I go for the mkForce option, am I missing out on other good behaviors?
<worldofpeace> might have to set XCURSOR_THEME though
<worldofpeace> You couldn't use a cusor theme from your $HOME
hlolli_ has joined #nixos
<gchristensen> cool, then I'll stick to the mkForce :P
<worldofpeace> we honestly need a theming module that can control cursor themes
markus1189 has quit [Ping timeout: 276 seconds]
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<infinisil> worldofpeace: I'm not sure if nixos is the right place for that
kleisli has joined #nixos
<infinisil> Something like home-manager would be better suited
<colemickens> Does anyone play around with OpenXR in NixOS? I'm trying to understand how the runtime part of it interacts with the Nix of it all.
<infinisil> Something user-scoped
hlolli__ has quit [Ping timeout: 246 seconds]
CSP-GLOBAL has joined #nixos
<worldofpeace> infinisil: hmm https://github.com/NixOS/nixpkgs/pull/71079.
<{^_^}> #71079 (by gnidorah, 4 weeks ago, open): Theming options for Gtk and Qt
<worldofpeace> infinisil: There's already theming configuration in nixos though.
<infinisil> Hm yeah
<infinisil> I'm more talking about an ideal world
<worldofpeace> I also don't really understand, why things that are `user scoped` shouldn't be in NixOS?
Rusty1 has joined #nixos
<fifeefo> What does "user-scoped" mean? Not a term I've heard before.
<infinisil> worldofpeace: Because NixOS options can't be used by unprivileged users
<infinisil> fifeefo: Just things users would configure in theyr $HOME
<fifeefo> Thanks.
<infinisil> Instead of system-wide
<worldofpeace> infinisil: true, but I use the home-manager module as a nixos module in configuration.nix. so as a user of home-manager I need to be privileged.
<infinisil> worldofpeace: Yeah, for single-user systems it doesn't make a difference
<infinisil> But for multi-user and different distros it does
<infinisil> E.g. home-manager works for unprivileged users on darwin
<worldofpeace> right this is a bit tricky infinisil
<gchristensen> I wonder if making git use python3 is as simple as changing it to use python3
NoctisLabs has quit [Quit: WeeChat 2.6]
<worldofpeace> infinisil: we do have users.users.‹name?›.packages. tbh, I wish home-manager function could be reimplemented into nixos.
NoctisLabs has joined #nixos
<infinisil> home-manager can user users.users.<name?>.packages on NixOS to install stuff
<{^_^}> [nixpkgs] @fpletz merged pull request #71510 → Add namespace support to Wireguard module → https://git.io/JeRId
<{^_^}> [nixpkgs] @fpletz pushed 2 commits to master: https://git.io/JerE8
<infinisil> And it uses system-wide systemd services to do the $HOME setup
<{^_^}> [nixpkgs] @fpletz closed pull request #60983 → wireguard: add 'namespace' option to set interface netns → https://git.io/JerE0
<infinisil> The only problem is that home-manager isn't in-tree
<infinisil> With some careful thought this might be possible though
<worldofpeace> gchristensen: looks like fedora's got some stuff https://src.fedoraproject.org/rpms/git/blob/master/f/git.spec#_613
<gchristensen> that is a much more reasoned approach than what I've done :P
<worldofpeace> gchristensen: a good tip, is to look at repology and stalk everyone else's build expressions :P
* gchristensen 'd just started rebuilding with python = python3;
wildtrees has quit [Quit: Leaving]
<gchristensen> is everybody ready for their nixpkgs contributions to be printed out as a QR code and shoved in an ice cave?
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JerEg
<worldofpeace> ?? is it an icelandic cave?
pointfourone has quit [Ping timeout: 240 seconds]
captn3m0 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #68424 → pythonPackages.pefile: init at 2019.4.18 → https://git.io/JemJ9
<{^_^}> [nixpkgs] @jonringer pushed commit from @Pamplemousse to master « pythonPackages.pefile: init at 2019.4.18 »: https://git.io/JerE2
pointfourone has joined #nixos
<worldofpeace> your description has given me the same reaction as I'm having reading this now
<gchristensen> lol
<worldofpeace> "They might regard our age of open source ubiquity, volunteer communities, and Moore’s Law as historically significant. " Moore's Law is just sacred knowledge or something
drakonis has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #64998 → pythonPackages.monkeyhex: init at 1.7.1 → https://git.io/fj1uH
<{^_^}> [nixpkgs] @jonringer pushed commit from @Pamplemousse to master « pythonPackages.monkeyhex: init at 1.7.1 »: https://git.io/JerE1
o1lo01ol1o has joined #nixos
leo__ has quit [Quit: leaving]
o1lo01ol1o has quit [Remote host closed the connection]
<infinisil> gchristensen: Nice, we should definitely get Nix/NixOS in there!
<infinisil> "On February 2, 2020, GitHub will capture a snapshot of every active public repository, to be preserved in the GitHub Arctic Code Vault"
<infinisil> Better get your PR's merged until then, because this won't be updated for 5 years after that!
CSP-GLOBAL has quit [Read error: Connection reset by peer]
<gchristensen> haha
o1lo01ol1o has joined #nixos
ddellacosta has joined #nixos
<DigitalKiwi> Us: please stop supporting ICE github: here's an archive nobody asked for
<infinisil> Hold on, a QR code???
<gchristensen> yeah
<gchristensen> you have to hold your phone really steady, but when the camera snaps you've got a picture of 24t of software
<infinisil> "For greater data density and integrity, most of the data will be stored QR-encoded"
<infinisil> Hm, I guess maybe that makes sense for super-long-term storage
<drakonis> ICE TO MEET YOU
waleee-cl has quit [Quit: Connection closed for inactivity]
<DigitalKiwi> Gitlab: we would literally host Hitler
<DigitalKiwi> And DHS uses jira :(
ng0 has quit [Quit: Alexa, when is the end of world?]
soju has quit [Quit: Connection closed for inactivity]
Okinan has joined #nixos
soju has joined #nixos
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 39 commits to nixos-unstable-small: https://git.io/Jeru3
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e2bad17af7d (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
CSP-GLOBAL has joined #nixos
silver has quit [Read error: Connection reset by peer]
h0m1 has quit [Ping timeout: 252 seconds]
Fare has quit [Ping timeout: 240 seconds]
h0m1 has joined #nixos
captn3m0 has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #73361 → jpegexiforient: init at 2002-02-17 → https://git.io/JerlX
<{^_^}> [nixpkgs] @Infinisil pushed 3 commits to master: https://git.io/JeruE
<gchristensen> clever: https://status.nixos.org/prometheus/graph?g0.range_input=1d&g0.expr=round(hydra_jobset_seconds_total%20%2F%20hydra_jobset_shares_used_total)&g0.tab=1
<clever> :q
red[evilred] has joined #nixos
<red[evilred]> exactly clever (IRC)
<clever> lol
<gchristensen> there you are, the original number of shares per jobset
<clever> the mouse moved while in vim
<red[evilred]> sloppy focus is awesome
<red[evilred]> except with passwords
noudle has quit []
<clever> gchristensen: i believe hdyra also exports shares used
<gchristensen> used but not original shares
<clever> gchristensen: http://hydra.nixos.org/queue-runner-status -> jobsets.<foo>.shareUsed
<gchristensen> I mean, I'm literally using that data in the URL I sent you :P
<clever> oh
<clever> your dividing
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 4 commits to nixos-19.09-small: https://git.io/Jeru2
<gchristensen> yes, to get from shares used tothe original number of shares
acarrico has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/133d836dafa (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
ddellacosta has quit [Ping timeout: 240 seconds]
jluttine has joined #nixos
`_ has joined #nixos
<{^_^}> [nixpkgs] @nh2 opened pull request #73375 → consul-alerts: 0.5.0 -> 0.6.0 → https://git.io/JeruK
Fare has joined #nixos
<`_> I'm having an issue with systemd-ask-password in regards to starting an openvpn client.
captn3m0- has joined #nixos
captn3m0 has quit [Ping timeout: 240 seconds]
<`_> It seems when I run `sudo systemctl start openvpn-myvpn` it doesn't want to ask for a password. I'm assuming systemd-ask-password can't connect to my session
<{^_^}> [nixpkgs] @nh2 opened pull request #73376 → elogind: 239.5 -> 241.3 → https://git.io/JeruP
<`_> When I initially added the client config to /etc/nixos/configuration.nix and ran `sudo nixos-rebuild switch` it did in fact ask me for a password for my key
<`_> But after rebooting and manually attempting to start the client, I'm seeing it asking for the password in `journalctl -xeu openvpn-myvpn`
<`_> Err sorry, seeing that in `systemctl status openvpn-myvpn`
<`_> so it's asking for it at some point, just not in a way that I can interact with it.
drakonis has quit [Quit: WeeChat 2.6]
MmeQuignon has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @jtojnar opened pull request #73377 → kdeApplications.print-manager: disable format-security → https://git.io/Jeru1
ThatGhostKid has quit [Remote host closed the connection]
drakonis has joined #nixos
Fare has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @cdepillabout merged pull request #73362 → buildStackProject: Set __noChroot to make it fail without sandbox → https://git.io/Jer8u
<{^_^}> [nixpkgs] @cdepillabout pushed 3 commits to master: https://git.io/Jeruy
qubasa_ has joined #nixos
mexisme has quit [Ping timeout: 240 seconds]
qubasa has quit [Ping timeout: 240 seconds]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
`_ has quit [Ping timeout: 240 seconds]
treffynnon has joined #nixos
`_ has joined #nixos
chocopuff has joined #nixos
_rvl has quit [Quit: ZNC 1.7.4 - https://znc.in]
_rvl has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
Soo_Slow has quit [Quit: Soo_Slow]
<chocopuff> hi, i am not sure if this is a nix issue, but i didnt have this problem when the laptop was running Gentoo. New user here. For some reason, when I try to connect to my institution's eduroam network, not all sites would immediately load
<chocopuff> google, bing, apple.com, would load, but some other sites like github would return a server not found error at first
treffynnon has quit [Ping timeout: 240 seconds]
<chocopuff> and after a few minutes, they would finally work. I have this issue on my desktop too, is this a DNS problem? I don't really understand networking and I wonder if I am potentially configuring anything wrong
felixfoertsch23 has joined #nixos
reallymemorable has joined #nixos
felixfoertsch has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @worldofpeace opened pull request #73378 → nixos/gdm: make desktopManager.default work → https://git.io/Jerzq
mexisme has joined #nixos
detran has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace closed pull request #73377 → kdeApplications.print-manager: disable format-security → https://git.io/Jeru1
mexisme has quit [Ping timeout: 240 seconds]
treffynnon has joined #nixos
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
treffynnon has quit [Ping timeout: 240 seconds]
treffynnon has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #73379 → mpv: fix build on darwin → https://git.io/JerzV
<{^_^}> [nixpkgs] @marsam merged pull request #73358 → shadowenv: 1.2.1 -> 1.3.1 → https://git.io/JerW4
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JerzK
LnL has quit [Read error: Connection reset by peer]
NoctisLabs has quit [Quit: WeeChat 2.6]
LnL has joined #nixos
LnL has joined #nixos
LnL has quit [Changing host]
NoctisLabs has joined #nixos
chocopuff has quit [Remote host closed the connection]
hlolli_ has quit [Ping timeout: 276 seconds]
Supersonic112 has joined #nixos
Supersonic has quit [Disconnected by services]
Supersonic112 is now known as Supersonic
soju has quit [Quit: Connection closed for inactivity]
treffynn1n has joined #nixos
<{^_^}> [nixpkgs] @fpletz pushed to master « nixos/libvirtd: fix typo »: https://git.io/JerzF
treffynnon has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #73380 → buildGoPackage: disable go module → https://git.io/Jerzp
CSP-GLOBAL has quit [Ping timeout: 276 seconds]
endformationage has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #73381 → luaPackages.luasystem: fix build on darwin → https://git.io/Jerge
captn3m0- has quit [Ping timeout: 268 seconds]
domogled has joined #nixos
CSP-GLOBAL has joined #nixos
alexbakker has quit [Quit: Dikke doei]
alexbakker has joined #nixos
captn3m0 has joined #nixos
red[evilred] has quit [Quit: Idle timeout reached: 10800s]
Church- has quit [Quit: I'm divorcing the channel]
captn3m0 has quit [Ping timeout: 276 seconds]
twistedjoe has joined #nixos
felixfoertsch23 has quit [Quit: ZNC 1.7.3 - https://znc.in]
felixfoertsch has joined #nixos
twistedj- has joined #nixos
twistedj- has quit [Client Quit]
twistedj- has joined #nixos
Thra11_ has quit [Ping timeout: 240 seconds]
twistedj- has quit [Client Quit]
captn3m0 has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
xkapastel has joined #nixos
Rusty1 has quit [Quit: Konversation terminated!]
Thra11_ has joined #nixos
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 46 commits to nixos-unstable-small: https://git.io/Jergl
domogled has quit [Ping timeout: 245 seconds]
reallymemorable has quit [Quit: reallymemorable]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/6ba2f551a0a (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
pie_ has quit [Remote host closed the connection]
dani- has joined #nixos
<dani-> hello everyone
dansho has quit [Quit: Leaving]
gudea[m] has joined #nixos
kolbycrouch has quit [Ping timeout: 250 seconds]
pie_ has joined #nixos
<jackdk> sup
marusich has joined #nixos
<dani-> time to figure this nix thing
craige has quit [Quit: ZNC - http://znc.in]
Thra11_ has quit [Ping timeout: 276 seconds]
mexisme has joined #nixos
rauno has joined #nixos
o1lo01ol1o has joined #nixos
Thra11_ has joined #nixos
o1lo01ol1o has quit [Ping timeout: 245 seconds]
palo1 has joined #nixos
palo has quit [Ping timeout: 265 seconds]
palo1 is now known as palo
<pie_> dani-: o/
kenran has joined #nixos
<dani-> pie_: \o
andersk has quit [Remote host closed the connection]
andersk has joined #nixos
mexisme has quit [Ping timeout: 245 seconds]
kenran has quit [Quit: leaving]
kenran has joined #nixos
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
orivej has quit [Ping timeout: 268 seconds]
kleisli has quit [Ping timeout: 265 seconds]
aveltras has joined #nixos
pareidolia has quit [Ping timeout: 265 seconds]
fusion809 has joined #nixos
kenran has quit [Ping timeout: 240 seconds]
wrl has quit [Ping timeout: 268 seconds]
sb0 has joined #nixos
treffynn1n has quit [Ping timeout: 268 seconds]
mojjo has joined #nixos
<mojjo> say I have a nix file containing an attribute set of packages. Is there a convenient way to build all of them at once?
<tilpner> mojjo: nix-build file-with-attrs.nix
jgt1 has joined #nixos
<mojjo> ah, ok :) this is indeed easy
philr has joined #nixos
<{^_^}> [nixpkgs] @peti merged pull request #73348 → nixos/postfix: add missing setgid wrapper → https://git.io/Jerqa
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/Jer2b
Heirlung has quit [Quit: ZNC - http://znc.in]
fendor has joined #nixos
<fendor> No sure if really nixos related, but I have the problem that when closing my notebook, that it is not suspended and runs with 100% cpu usage. any idea on how to debug this?
<tilpner> fendor: journalctl -eu systemd-logind is a start
<clever> ,profiling
<{^_^}> Use NIX_COUNT_CALLS=1 and/or NIX_SHOW_STATS=1 to profile Nix evaluation
<fendor> tilpner, thanks!
xd1le has joined #nixos
lovesegfault has joined #nixos
<lovesegfault> It's been so long since the last unstable channel release
<lovesegfault> 10 days, it's nuts
<xd1le> yeah it be like this sometimes :/
<fendor> now I see messages like lid closed and lid opened without a sleep command in between, that sounds like a culprit?
Heirlung has joined #nixos
<tilpner> fendor: Mine says "Suspening..." and "Operation 'sleep' finished."
<tilpner> fendor: Do you not have those?
NoctisLabs has quit [Quit: WeeChat 2.6]
<fendor> not always.
<fendor> just sometimes
<tilpner> (I should note I have no idea how to debug this, it's always just worked)
<tilpner> But you do want to check /etc/systemd/logind.conf for odd values you forgot you set
lukash_|away is now known as lukash_
<sgraf> Hey folks, I have this .deb package that runs python3.7 which dlopens glibc and needs it to be version 2.28. Nix currently bundles 2.27. I'm using `autoPatchelfHook`, so basically all I'm asking is how to locally override glibc's version to 2.28 for `buildInputs`
<immae> fendor: if it works intermittently, you may have the same "issue" as me: sometimes when I do actions linked to logind (closing lid, pushing the shutdown button, ...) too quickly - say less than 15s -, he forgets to suspend when I close the lid, could it be that you’re in that situation?
<sgraf> Just overrideAttr doesn't work, it will rebuild 2.27...
<fendor> immae, maybe, it often happens when I just close the lid and not explicitly lock the screen
<fendor> In my logind.conf, HandleLidSwitch=suspend looks good
melleb has joined #nixos
<immae> Maybe it is overriden by your window manager?
<immae> (if the behavior is different when you’re locked or not)
<tilpner> fendor: What DE are you using?
<fendor> tilpner, kde, plasma5
<tilpner> Apparently there are systemd events for suspension
<immae> do you have the possibility to try a "smaller" one (like xfce or even smaller), just to check the hypothesis?
<tilpner> If you can hook into those, you might be able to tell if it's trying to suspend but failing, or just not trying to suspend
<fendor> immae, yeah, I can just switch desktops
<tilpner> ${glib.bin}/bin/gdbus monitor might help with that
<fendor> tilpner, there should be no fancy configuration, the only customizations I did were in kde settings
<melleb> Hi all, I'd like to build my first 'real' derivation for NixOS. It's an Eclipse-based application, which comes bundled with it's own java binary. Does anyone know how to approach this?
<ctp> Hi, hi, I try to appy the emacs-overlay to my install, but have hard times with :) https://github.com/nix-community/emacs-overlay The overlay is fetched fine since it's in my nixpkgs.overlays as described there but I just don't get ir properly referenced in my emacs.nix. This is my emacs.nix currently, which does use the nixpkgs emacs https://gist.github.com/asconix/b153bfbab645b2f8ec01933c4dc7f0cf
<tilpner> fendor: I don't know if I'm being helpful, but the login1 dbus API has a ListInhibitors method
<ctp> I tried few different approaches to redefine the let block to refer the overlay but failed. Anyone has a hint for me? The emacs-overlay README says:
<fendor> tilpner, you are totally being helpful.
<ctp> argh, sorry, last paste, nvm
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
<tilpner> fendor: Here's how to call it:
<ctp> So emacsWithPackagesFromUsePackage is the key, but how? :D Not that new to Nix* but still didn't make click in my head when it comes to such things ...
<tilpner> fendor: gdbus call --system --dest org.freedesktop.login1 --object-path /org/freedesktop/login1 -m org.freedesktop.login1.Manager.ListInhibitors
lord| has joined #nixos
<tilpner> fendor: Mine says that networkmanager needs to get a turn shutting down networks before suspend (at least, that's how I interpret it)
<fendor> tilpner, oh wow, that is a huge command
<fendor> thanks!
<tilpner> Huh, that's a lot more than mine
<tilpner> Does it work if you close Discord?
<immae> fendor: isn’t the last one basically saying "let kde handle it"?
<fendor> tilpner, good question, I can try it
<etu> ctp: Hey, we have the #nixos-emacs channel as well where we center around the overlay and such :)
<fendor> better formatted: https://hastebin.com/ugutubatac.bash
<fendor> immae, I would read it the same way
<ctp> @etu oh, right. nice!
treffynnon has joined #nixos
<immae> I think the "delay" ones can be ignored and can only delay shutdown for a limited time
<pie_> wat. does this say what I think it does? https://github.com/NixOS/nixpkgs/blob/696767a9c9dc4b6b5066a3172c89138c0bb6e40d/pkgs/misc/vscode-extensions/vscode-utils.nix#L29 it removes the attribute and adds it back with an inherit 3 lines later
<tilpner> fendor: I'm not convinced that the sleep entries are irrelevant
mexisme has joined #nixos
<pie_> oh i think i might have misread the order of operations
<tilpner> fendor: It might be interesting to poll this method at various times during lid-closing, and monitor if those processes exist
m0rphism has joined #nixos
<fendor> tilpner, how exactly? with the gdbus command?
civodul has joined #nixos
<fendor> and I dont know if it only happens if discord is running, I will try it
<tilpner> fendor: I would try disabling some of those inhibitors, to try and find the one that's blocking it
<tilpner> fendor: And gdbus in a loop (with sleep) might be good enough to monitor if the return value changes during lid-closing
<tilpner> Append the output to a file every 0.5s
logzet has joined #nixos
<fendor> alright, trying rn
genesis has quit [Ping timeout: 265 seconds]
<tilpner> gdbus also has a monitor command, but I don't know how to use it
kenran has joined #nixos
<tilpner> Something like gdbus monitor --system --dest org.freedesktop.login1 --object-path /org/freedesktop/login1 perhaps
<fendor> a loop sounds good enough to me
<fendor> now I cant reproduce it with either discord running or not running
<tilpner> :/
<mojjo> Does anyone have experience with https://github.com/input-output-hk/haskell.nix?I followed the example for a stack project. I'm using lts-14.12 (for ghc 8.6.5). I wonder why nix builds eeeeverything from scratch with GHC 8.4.4?
<tilpner> mojjo: Did you see the cache section in that readme?
<fendor> notebook was put to sleep in each test
<fendor> tilpner, alright, now I can look at it at least! thank you, I will come back when I can reproduce it somehow :D
<immae> fendor: you might want to simply monitor the processes to know which one takes 100% cpu, that could give a hint
<tilpner> atop is an option for that monitoring, but there isn't necessarily a 100% cpu process
<immae> (I think it happens somewhere in kde, since I have a list similar to yours apart from this one)
treffynnon has quit [Ping timeout: 252 seconds]
<fendor> immae, maybe it only runs hot, because when I open the lid again, the notebook is very hot, but there is no process that takes 100% cpu
<immae> tilpner: Hmm fendor first message was that there was a cpu at 100%, wasn’t it?
<immae> ah
<immae> ok sorry I misunderstood
<mojjo> tilpner I added the binaray cache as described. After that.. build logs that it's using the cache.. but still the same.. building& building....
wfranzini has joined #nixos
<fendor> immae, yeah, I know, there was a similar bug before, where the screen wasnt locked and the touchscreen somehow opneed dozens of system monitors
<fendor> but this hasnt actually happened
<immae> ok
<fendor> no, I did say it, my mistake
lovesegfault has quit [Quit: WeeChat 2.6]
CSP-GLOBAL has quit [Read error: Connection reset by peer]
treffynnon has joined #nixos
mexisme has quit [Ping timeout: 246 seconds]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @johanot opened pull request #73382 → kubernetes: 1.15.4 -> 1.15.6 → https://git.io/Jerai
<colemickens> how do I do something like `buildInputs = [] ++ with pkgs; [x y] ++ with other pkgs; [z a];` ?
treffynnon has quit [Ping timeout: 252 seconds]
<immae> colemickens: with parenthesis?
wfranzini has quit [Quit: wfranzini]
<colemickens> immae: I swear I tried it, but it works now, thanks...
Chiliparrot has joined #nixos
__monty__ has joined #nixos
exfalso has joined #nixos
<wucke13> Would someone please take a look at #69646 ?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/69646 (by wucke13, 6 weeks ago, open): Add autochanger support to bacula-sd & improving the module in general
craige has joined #nixos
zupo has quit [Ping timeout: 240 seconds]
Makaveli7 has joined #nixos
zupo has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 3 commits to nixos-unstable-small: https://git.io/Jerax
Makaveli7 has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/db3beda6b56 (from 81 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<pbb> it would be very nice if someone could take a look at https://github.com/NixOS/nixpkgs/issues/72791, it is a pretty severe issue in my opinion
<{^_^}> #72791 (by petabyteboy, 1 week ago, open): Postfix policyd-spf issuing traceback on incoming mail, mails being falsely rejected
<wucke13> pbb: I second your opionion regarding the serverity. Email servers are somewhat critical...
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
thc202 has joined #nixos
<chreekat_> nix-prefetch-git doesn't include 'ref' in its output, but I usually want it for builtins.fetchGit. Is there some other tool that does add it, or should nix-prefetch-git do it?
<dminuoso> I would like to split my postfix.nix into several nixos modules to split the configuration into several domain specific bits, such as `postfix-tls.nix`, `postfix-milter.nix`, `postfix-sasl.nix` etc.
<dminuoso> Now, what's a reasonable way to share some attrset `maps = { ... }` between them all?
<alexarice[m]> dminuoso: you could make a readonly option
<{^_^}> [nixpkgs] @herrwiese opened pull request #73383 → microcodeIntel: 20191112 -> 20191113 → https://git.io/JerVL
<dminuoso> alexarice[m]: I see. That sounds more reasonable than having each module import some `./maps.nix` :)
joshuagl has joined #nixos
aveltras has quit [Quit: Connection closed for inactivity]
mexisme has joined #nixos
cosimone has joined #nixos
cosimone has quit [Client Quit]
cosimone has joined #nixos
<{^_^}> [nixpkgs] @herrwiese opened pull request #73384 → [19.09] microcodeIntel: 20190618 -> 20191113 → https://git.io/JerVg
noudle has joined #nixos
domenkozar[m] has quit [Quit: authenticating]
<dminuoso> alexarice[m]: Mmm, am I missing something or cant you have a function type as an option?
melleb has quit [Quit: WeeChat 2.6]
CcxWrk has quit [Ping timeout: 240 seconds]
mojjo has quit [Remote host closed the connection]
_d0t has joined #nixos
<_d0t> ohai! Is there anything in Nix language for easily working with XML?
ng0 has joined #nixos
_d0t has quit [Ping timeout: 240 seconds]
alexherbo2 has joined #nixos
cosimone has quit [Remote host closed the connection]
cosimone has joined #nixos
packer has joined #nixos
<{^_^}> [nixpkgs] @saschagrunert opened pull request #73385 → kubernix: v0.2.0 → https://git.io/Jerwm
<{^_^}> [nix] @edolstra merged pull request #3220 → manual: nix-shell: Elaborate on using `-p` with expressions → https://git.io/JeVh8
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JerwY
zupo_ has joined #nixos
cosimone has quit [Remote host closed the connection]
cosimone has joined #nixos
<alexarice[m]> dminuoso: Not using nixpkgs types I believe
<alexarice[m]> There is a home-manager type for it I think
ThatDocsLady has joined #nixos
sigmundv has joined #nixos
<dminuoso> Mmm. Fair enough, Ill just use types.unspecified then
<dminuoso> I mean in this particular use case the types are silly anyway, because I first declare the option and then 3 lines below it Ill define it as readonly.,
Makaveli7 has quit [Quit: WeeChat 2.6]
Makaveli7 has joined #nixos
<exfalso> Hi, what's the appropriate way to filter out directories that don't contain any non-filtered files using builtins.filterSource?
<exfalso> All examples I've enconutered so far include *all* directories, but this invalidates the nix cache whenever an unrelated directory is added
dsg has quit [Read error: Connection reset by peer]
dsg has joined #nixos
cosimone has quit [Quit: Terminated!]
ThatDocsLady has quit [Read error: Connection reset by peer]
ThatDocsLady_ has joined #nixos
sb0 has quit [Quit: Leaving]
ng0 has quit [Quit: Alexa, when is the end of world?]
gxt_ has joined #nixos
mexisme has quit [Ping timeout: 252 seconds]
<ij> exfalso, terrifying problem
iyzsong has joined #nixos
Jackneilll has quit [Ping timeout: 252 seconds]
<Twey> exfalso: `postUnpack` find -type d -exec rmdir {} \|\| : \; ? :þ
<{^_^}> [nixpkgs] @cptMikky opened pull request #73388 → maintainers: add cptMikky → https://git.io/JerrG
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @marsam merged pull request #73357 → starship: 0.25.2 -> 0.26.4 → https://git.io/JerC4
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JerrC
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
drakonis_ has joined #nixos
drakonis has quit [Ping timeout: 240 seconds]
Jackneilll has joined #nixos
asymmetric has joined #nixos
asymmetric has quit [Changing host]
<{^_^}> [nixpkgs] @FRidh closed pull request #73388 → maintainers: add cptMikky → https://git.io/JerrG
Jackneilll has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @vcunat pushed 91 commits to staging-19.09: https://git.io/JerrS
alexherbo2 has joined #nixos
o1lo01ol1o has joined #nixos
h0m1 has quit [Quit: WeeChat 2.6]
h0m1 has joined #nixos
<{^_^}> [nixpkgs] @cptMikky closed pull request #73372 → pythonPackage.ovirt-engine-sdk: init at 4.3.3 → https://git.io/Jer0E
o1lo01ol1o has quit [Ping timeout: 268 seconds]
Jackneilll has joined #nixos
chloekek has joined #nixos
<chloekek> Is there a YAML equivalent of builtins.parseJSON?
<adisbladis> chloekek: No there is not.
<chloekek> Thanks.
<chloekek> Then I finally have an excuse to convert these YAML files to a sensible format. :)
<Twey> chloekek: There's JSON and now TOML
<chloekek> An Nix!
<Shoubit> You can always look at Dhall, and then you can convert to either, plus also directly to Nix.
<chloekek> Yeah I currently have a script that parses the YAML and generates Nix, but it would be nice if there were just one step instead of two, i.e. read the data directly in the Nix language.
<adisbladis> chloekek: You could also abuse IFD
<ar> chloekek: json is not a sensible format
<ar> it's underspecified
<{^_^}> [nixpkgs] @cptMikky opened pull request #73389 → pythonPackage.ovirt-engine-sdk: init at 4.3.3 → https://git.io/Jerrj
<adisbladis> ar: Certainly more sensible than yaml
<ar> adisbladis: notso sure about it
<chloekek> adisbladis: what is IFD?
<chloekek> Oooh neat.
<adisbladis> ,IFD chloekek
<{^_^}> chloekek: import-from-derivation (IFD) is when you evaluate nix from a derivation result, for example `import (pkgs.writeText "n" "1 + 1")` will evaluate to 2. This is sometimes problematic because it requires evaluating some, building some, and then evaluating the build result. It has been described as "such a nice footgun."
<{^_^}> [cabal2nix] @peti pushed to master « fltkhs: expand the obsolete 'libGLU_combined' alias »: https://git.io/Jerof
<adisbladis> chloekek: esentially you could do something like: `lib.importJSON (pkgs.runCommand "blah.json" {} "${pkgs.remarshal}/bin/remarshal -i ${somefile.yaml} -o $out")`
<adisbladis> I don't remember all the remarshal params, so they are likely incorrect
<chloekek> Thanks! I will try this.
<{^_^}> [nixpkgs] @fpletz merged pull request #73379 → mpv: fix build on darwin → https://git.io/JerzV
sweep has joined #nixos
<{^_^}> [nixpkgs] @fpletz pushed 3 commits to master: https://git.io/Jerok
<{^_^}> [nixpkgs] @FRidh pushed to master « recode: 3.7.4 -> 3.7.6, use python3 »: https://git.io/JeroI
<exfalso> Twey: is the caching based on the state after postUnpack?
FRidh has joined #nixos
orivej has joined #nixos
<Twey> exfalso: Depends how you engineer it. You can make effectively an IFD that imports the path you get after doing some transformation
<adisbladis> chloekek: Btw, if this is for nixpkgs we don't allow IFD
<adisbladis> But if it's in a private repo, by all means, go ahead :)
civodul has quit [Read error: Connection reset by peer]
<Twey> Sounds like it's for development
mariel__ has joined #nixos
civodul has joined #nixos
ThatDocsLady_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @marsam opened pull request #73390 → nodejs-13_x: 13.0.1 -> 13.1.0 → https://git.io/Jerom
<mikky> hey, I'd like to test this PR (https://github.com/NixOS/nixpkgs/pull/73307 not mine) but I'm not sure how to install the package to cups. I can build it, got in in the nix store but obviously cups doesn't register it
<{^_^}> #73307 (by kylesferrazza, 1 day ago, open): canon-cups-ufr2: 2.90 -> 3.70
<{^_^}> [nixpkgs] @FRidh pushed 280 commits to staging-next: https://git.io/JeroO
<{^_^}> [nixpkgs] @srhb merged pull request #73382 → kubernetes: 1.15.4 -> 1.15.6 → https://git.io/Jerai
<{^_^}> [nixpkgs] @srhb pushed 2 commits to release-19.09: https://git.io/Jero8
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
jgt1 has quit [Ping timeout: 265 seconds]
Gopal[m] has quit [*.net *.split]
LiuWeiHua[m] has quit [*.net *.split]
olejorgenb[m] has quit [*.net *.split]
coniferous-cube[ has quit [*.net *.split]
joelpet1 has quit [*.net *.split]
imj[m] has quit [*.net *.split]
aterius has quit [*.net *.split]
contrun[m] has quit [*.net *.split]
rihardsk[m] has quit [*.net *.split]
alexarice[m] has quit [*.net *.split]
pingveno[m] has quit [*.net *.split]
phyfey[m] has quit [*.net *.split]
mirsal has quit [*.net *.split]
musicmatze has quit [*.net *.split]
thequux[m] has quit [*.net *.split]
pinage404[m] has quit [*.net *.split]
Jackneilll has quit [*.net *.split]
sweep has quit [*.net *.split]
Makaveli7 has quit [*.net *.split]
dsg has quit [*.net *.split]
xd1le has quit [*.net *.split]
kenran has quit [*.net *.split]
captn3m0 has quit [*.net *.split]
mbrgm has quit [*.net *.split]
markus1199 has quit [*.net *.split]
pointfourone has quit [*.net *.split]
rardiol has quit [*.net *.split]
adam- has quit [*.net *.split]
kwork has quit [*.net *.split]
vuko has quit [*.net *.split]
das_j has quit [*.net *.split]
bridge[evilred] has quit [*.net *.split]
glasserc has quit [*.net *.split]
ajs124 has quit [*.net *.split]
atlas_ has quit [*.net *.split]
evanjs has quit [*.net *.split]
tpanum- has quit [*.net *.split]
lorimer has quit [*.net *.split]
LogicAside has quit [*.net *.split]
ravndal has quit [*.net *.split]
asymmetric has quit [*.net *.split]
ornxka has quit [*.net *.split]
Ralith_ has quit [*.net *.split]
dckc has quit [*.net *.split]
betawaffle has quit [*.net *.split]
sam_d has quit [*.net *.split]
aminechikhaoui has quit [*.net *.split]
trinityhex has quit [*.net *.split]
lukash_ has quit [*.net *.split]
troydm has quit [*.net *.split]
ivegotasthma has quit [*.net *.split]
amfl has quit [*.net *.split]
johnnyfive has quit [*.net *.split]
migy has quit [*.net *.split]
mog has quit [*.net *.split]
petar has quit [*.net *.split]
iMatejC has quit [*.net *.split]
mlen has quit [*.net *.split]
kvik has quit [*.net *.split]
mfernandez has quit [*.net *.split]
ShaRose has quit [*.net *.split]
j4m3s__ has quit [*.net *.split]
joko has quit [*.net *.split]
Philonous has quit [*.net *.split]
foldingcookie has quit [*.net *.split]
HedgeMage has quit [*.net *.split]
fl0_id has quit [*.net *.split]
statusfailed has quit [*.net *.split]
jD91mZM2 has quit [*.net *.split]
kaychaks has quit [*.net *.split]
locallycompact has quit [*.net *.split]
ggp0647 has quit [*.net *.split]
clever has quit [*.net *.split]
rsa has quit [*.net *.split]
mupf has quit [*.net *.split]
delroth has quit [*.net *.split]
monokrome has quit [*.net *.split]
minicom has quit [*.net *.split]
linuus has quit [*.net *.split]
mutantmell has quit [*.net *.split]
disasm has quit [*.net *.split]
kipari has quit [*.net *.split]
Intensity has quit [*.net *.split]
mrus has quit [*.net *.split]
dev3 has quit [*.net *.split]
marek has quit [*.net *.split]
kriztw has quit [*.net *.split]
pemeunie1 has quit [*.net *.split]
Amnesia has quit [*.net *.split]
hodapp has quit [*.net *.split]
hellrazo1 has quit [*.net *.split]
umachan has quit [*.net *.split]
goodwill has quit [*.net *.split]
swistak35 has quit [*.net *.split]
switchy has quit [*.net *.split]
neildaemond has quit [*.net *.split]
danderson has quit [*.net *.split]
wedens[m] has quit [*.net *.split]
BrightOne[m] has quit [*.net *.split]
joelwallis1[m] has quit [*.net *.split]
adamCS has quit [*.net *.split]
arianvp[m] has quit [*.net *.split]
LinuXit has quit [*.net *.split]
lel[m] has quit [*.net *.split]
VaNilLa[m] has quit [*.net *.split]
MiloIgnis[m] has quit [*.net *.split]
MerlinGttlinger[ has quit [*.net *.split]
balsoft has quit [*.net *.split]
setthemfree[m] has quit [*.net *.split]
midi[m] has quit [*.net *.split]
kirelagin has quit [*.net *.split]
bennofs[m] has quit [*.net *.split]
colemickens has quit [*.net *.split]
abbec has quit [*.net *.split]
nbardiuk has quit [*.net *.split]
gaisseml[m] has quit [*.net *.split]
cornu has quit [*.net *.split]
am3on[m] has quit [*.net *.split]
Dandellion[m] has quit [*.net *.split]
ejpcmac has quit [*.net *.split]
atopuzov[m] has quit [*.net *.split]
sylvie[m] has quit [*.net *.split]
bendlas has quit [*.net *.split]
kaychaks[m] has quit [*.net *.split]
wak-work has quit [*.net *.split]
h0m1 has quit [*.net *.split]
thc202 has quit [*.net *.split]
noudle has quit [*.net *.split]
gudea[m] has quit [*.net *.split]
marusich has quit [*.net *.split]
palo has quit [*.net *.split]
fusion809 has quit [*.net *.split]
misuzu has quit [*.net *.split]
buckley310 has quit [*.net *.split]
tbenst_ has quit [*.net *.split]
Blessjah has quit [*.net *.split]
corpix[m] has quit [*.net *.split]
das-g[m] has quit [*.net *.split]
codyopel has quit [*.net *.split]
NoblesseOblige24 has quit [*.net *.split]
sauyon[m] has quit [*.net *.split]
ma27[m] has quit [*.net *.split]
tokudan[m] has quit [*.net *.split]
DenisLehmann[m] has quit [*.net *.split]
gaisseml[m]1 has quit [*.net *.split]
vaibhavsagar has quit [*.net *.split]
Seb[m] has quit [*.net *.split]
timokau[m] has quit [*.net *.split]
ninjatrappeur[m] has quit [*.net *.split]
siraben has quit [*.net *.split]
copy` has quit [*.net *.split]
mica[m] has quit [*.net *.split]
dingenskirchen has quit [*.net *.split]
mt[m] has quit [*.net *.split]
li_matrix has quit [*.net *.split]
roadt[m] has quit [*.net *.split]
Guest87406 has quit [*.net *.split]
Thinkofname[m] has quit [*.net *.split]
Yakulu[m] has quit [*.net *.split]
dtz has quit [*.net *.split]
Victor[m] has quit [*.net *.split]
cyris212 has quit [*.net *.split]
marcinja has quit [*.net *.split]
dsx has quit [*.net *.split]
greizgh has quit [*.net *.split]
hexa- has quit [*.net *.split]
pawpy has quit [*.net *.split]
Havvy has quit [*.net *.split]
lordcirth__ has quit [*.net *.split]
hisham has quit [*.net *.split]
symphorien has quit [*.net *.split]
noogie has quit [*.net *.split]
awygle has quit [*.net *.split]
fadenb has quit [*.net *.split]
lordcirth_ has quit [*.net *.split]
fooker has quit [*.net *.split]
ericsagnes has quit [*.net *.split]
ben has quit [*.net *.split]
LeshaInc has quit [*.net *.split]
drainful has quit [*.net *.split]
pingiun has quit [*.net *.split]
demize has quit [*.net *.split]
obadz has quit [*.net *.split]
shlevy has quit [*.net *.split]
evhan has quit [*.net *.split]
chkno has quit [*.net *.split]
fpob has quit [*.net *.split]
tghume has quit [*.net *.split]
megfault has quit [*.net *.split]
witchof0x20 has quit [*.net *.split]
pikajude has quit [*.net *.split]
anderslundstedt has quit [*.net *.split]
Forkk has quit [*.net *.split]
Khetzal has quit [*.net *.split]
tom39291 has quit [*.net *.split]
esclear has quit [*.net *.split]
sk8forether has quit [*.net *.split]
redredred has quit [*.net *.split]
develCuy has quit [*.net *.split]
NinjaTrappeur has quit [*.net *.split]
bpierre has quit [*.net *.split]
joepie91 has quit [*.net *.split]
Shados has quit [*.net *.split]
lebaux has quit [*.net *.split]
nlofaro has quit [*.net *.split]
peel has quit [*.net *.split]
oharvey has quit [*.net *.split]
sevanspowell has quit [*.net *.split]
ajmcmiddlin has quit [*.net *.split]
ghuntley has quit [*.net *.split]
skorpy2009 has quit [*.net *.split]
techtangents has quit [*.net *.split]
drvirgilio has quit [*.net *.split]
typetetris has quit [*.net *.split]
raoul has quit [*.net *.split]
stramble-M has quit [*.net *.split]
joshuagl has quit [*.net *.split]
philr has quit [*.net *.split]
_rvl has quit [*.net *.split]
duairc has quit [*.net *.split]
njd has quit [*.net *.split]
cheshircat has quit [*.net *.split]
bdju has quit [*.net *.split]
jtcs has quit [*.net *.split]
marcusr has quit [*.net *.split]
cptchaos83 has quit [*.net *.split]
kahiru has quit [*.net *.split]
bgamari_ has quit [*.net *.split]
naivesheep has quit [*.net *.split]
MinceR has quit [*.net *.split]
simukis__ has quit [*.net *.split]
Maxdamantus has quit [*.net *.split]
kaliumxyz has quit [*.net *.split]
Unode has quit [*.net *.split]
johnny101 has quit [*.net *.split]
tokudan has quit [*.net *.split]
rembo10 has quit [*.net *.split]
judson__ has quit [*.net *.split]
niso has quit [*.net *.split]
ToxicFrog has quit [*.net *.split]
Baughn has quit [*.net *.split]
cross has quit [*.net *.split]
mabel has quit [*.net *.split]
penguwin has quit [*.net *.split]
meck has quit [*.net *.split]
DanC has quit [*.net *.split]
sepi`` has quit [*.net *.split]
q3k has quit [*.net *.split]
edwtjo has quit [*.net *.split]
Shell has quit [*.net *.split]
Gohla has quit [*.net *.split]
qz has quit [*.net *.split]
silver_hook has quit [*.net *.split]
lohfu has quit [*.net *.split]
aszlig has quit [*.net *.split]
delan has quit [*.net *.split]
rkrishnan has quit [*.net *.split]
ldlework has quit [*.net *.split]
runciter has quit [*.net *.split]
unacceptable has quit [*.net *.split]
c_wraith has quit [*.net *.split]
ekleog has quit [*.net *.split]
woffs has quit [*.net *.split]
evax has quit [*.net *.split]
MasseR has quit [*.net *.split]
energizer has quit [*.net *.split]
davidcl has quit [*.net *.split]
FireFly has quit [*.net *.split]
hyperfekt has quit [*.net *.split]
W1lkins has quit [*.net *.split]
ciaran0 has quit [*.net *.split]
mrSpec has quit [*.net *.split]
FRidh has quit [*.net *.split]
mariel__ has quit [*.net *.split]
sigmundv has quit [*.net *.split]
__monty__ has quit [*.net *.split]
exfalso has quit [*.net *.split]
fendor has quit [*.net *.split]
Heirlung has quit [*.net *.split]
m0rphism has quit [*.net *.split]
alexbakker has quit [*.net *.split]
twistedjoe has quit [*.net *.split]
pie_ has quit [*.net *.split]
rauno has quit [*.net *.split]
selfsymmetric-mu has quit [*.net *.split]
peanutbutter144 has quit [*.net *.split]
acarrico has quit [*.net *.split]
qubasa_ has quit [*.net *.split]
`_ has quit [*.net *.split]
aw has quit [*.net *.split]
spacefrogg has quit [*.net *.split]
mounty has quit [*.net *.split]
tilpner has quit [*.net *.split]
cyphase has quit [*.net *.split]
chloekek has quit [*.net *.split]
Acou_Bass has quit [*.net *.split]
emilsp has quit [*.net *.split]
vesper11 has quit [*.net *.split]
infinisil has quit [*.net *.split]
amir has quit [*.net *.split]
janneke has quit [*.net *.split]
omnipotententity has quit [*.net *.split]
efriend has quit [*.net *.split]
Kritnich has quit [*.net *.split]
bastion-tester has quit [*.net *.split]
seanparsons has quit [*.net *.split]
sterni has quit [*.net *.split]
akaWolf has quit [*.net *.split]
codezero has quit [*.net *.split]
dminuoso has quit [*.net *.split]
cyraxjoe has quit [*.net *.split]
andromeda-galaxy has quit [*.net *.split]
evils has quit [*.net *.split]
nbp has quit [*.net *.split]
octe has quit [*.net *.split]
ddima has quit [*.net *.split]
eraserhd has quit [*.net *.split]
ivan has quit [*.net *.split]
epta has quit [*.net *.split]
jonge has quit [*.net *.split]
endocrimes has quit [*.net *.split]
dustinm- has quit [*.net *.split]
spacekookie has quit [*.net *.split]
niksnut has quit [*.net *.split]
ajp has quit [*.net *.split]
Czen1 has quit [*.net *.split]
jordansinn_ has quit [*.net *.split]
dkibi_ has quit [*.net *.split]
liori has quit [*.net *.split]
jonafato has quit [*.net *.split]
zfnmxt has quit [*.net *.split]
laerling has quit [*.net *.split]
jeaye has quit [*.net *.split]
kini has quit [*.net *.split]
georges has quit [*.net *.split]
thommey has quit [*.net *.split]
jeschli has quit [*.net *.split]
duckfullstop has quit [*.net *.split]
xqsl_ has quit [*.net *.split]
lejonet has quit [*.net *.split]
meatcar has quit [*.net *.split]
alp has quit [*.net *.split]
civodul has quit [*.net *.split]
evilmonads has quit [*.net *.split]
craige has quit [*.net *.split]
xkapastel has quit [*.net *.split]
darkf has quit [*.net *.split]
nisstyre has quit [*.net *.split]
AluisioASG has quit [*.net *.split]
morr has quit [*.net *.split]
nocoolnametom has quit [*.net *.split]
Shoubit has quit [*.net *.split]
Dagger has quit [*.net *.split]
jak[m]1 has quit [*.net *.split]
aymenstudios[m] has quit [*.net *.split]
Moredread[m] has quit [*.net *.split]
HappyEnt[m] has quit [*.net *.split]
alienpirate5 has quit [*.net *.split]
marius851000[m] has quit [*.net *.split]
harkenedraven has quit [*.net *.split]
escaP[m] has quit [*.net *.split]
Brian[m]4 has quit [*.net *.split]
Nyanloutre[m] has quit [*.net *.split]
alex[m]11 has quit [*.net *.split]
danielrf[m] has quit [*.net *.split]
truby has quit [*.net *.split]
mniip has quit [*.net *.split]
segfault[m] has quit [*.net *.split]
luftmensch[m] has quit [*.net *.split]
leons has quit [*.net *.split]
ilya-fedin has quit [*.net *.split]
offlinehacker has quit [*.net *.split]
EuAndreh[m] has quit [*.net *.split]
rycee has quit [*.net *.split]
MichaelEden[m] has quit [*.net *.split]
arcnmx has quit [*.net *.split]
thefloweringash has quit [*.net *.split]
arturo[m] has quit [*.net *.split]
eddyb has quit [*.net *.split]
attero has quit [*.net *.split]
jul1u5 has quit [*.net *.split]
fpletz has quit [*.net *.split]
Phillemann has quit [*.net *.split]
Yaniel has quit [*.net *.split]
devalot has quit [*.net *.split]
prusnak has quit [*.net *.split]
nixy3 has quit [*.net *.split]
gjabell has quit [*.net *.split]
jmeredith has quit [*.net *.split]
ArdaXi has quit [*.net *.split]
skrzyp has quit [*.net *.split]
pointfree has quit [*.net *.split]
shiver has quit [*.net *.split]
notgne2 has quit [*.net *.split]
hax404 has quit [*.net *.split]
dontobey has quit [*.net *.split]
tv has quit [*.net *.split]
maralorn has quit [*.net *.split]
lucus16 has quit [*.net *.split]
PyroLagus has quit [*.net *.split]
Arahael has quit [*.net *.split]
kumikumi has quit [*.net *.split]
noonien has quit [*.net *.split]
afics has quit [*.net *.split]
rajivr___ has quit [*.net *.split]
fuzen has quit [*.net *.split]
ZeDestructor has quit [*.net *.split]
xacktm has quit [*.net *.split]
Niall has quit [*.net *.split]
enteee has quit [*.net *.split]
fnords has quit [*.net *.split]
Ashy has quit [*.net *.split]
benny has quit [*.net *.split]
primeos has quit [*.net *.split]
nwspk has quit [*.net *.split]
DigitalKiwi has quit [*.net *.split]
mk_modrzew has quit [*.net *.split]
johanot has quit [*.net *.split]
taylskid has quit [*.net *.split]
snajpa has quit [*.net *.split]
dmj` has quit [*.net *.split]
ocharles has quit [*.net *.split]
johs has quit [*.net *.split]
davidtwco has quit [*.net *.split]
victorbjelkholm_ has quit [*.net *.split]
vdemeester has quit [*.net *.split]
dongcarl has quit [*.net *.split]
komasa has quit [*.net *.split]
teozkr has quit [*.net *.split]
digitalgrease has quit [*.net *.split]
metalrain has quit [*.net *.split]
tazjin has quit [*.net *.split]
georgew has quit [*.net *.split]
Wimpress has quit [*.net *.split]
dani- has quit [*.net *.split]
Peter_Storm has quit [*.net *.split]
WooDWorkeR has quit [*.net *.split]
zimbatm has quit [*.net *.split]
nand0p_ has quit [*.net *.split]
sputny[m] has quit [*.net *.split]
crabemis[m] has quit [*.net *.split]
talvdav[m] has quit [*.net *.split]
wrunt[m] has quit [*.net *.split]
icetan has quit [*.net *.split]
chreekat[m] has quit [*.net *.split]
abbafei[m] has quit [*.net *.split]
bohan[m] has quit [*.net *.split]
Christian[m]2 has quit [*.net *.split]
layus[m] has quit [*.net *.split]
marijan[m] has quit [*.net *.split]
nh2[m] has quit [*.net *.split]
bkl[m] has quit [*.net *.split]
abbradar[m] has quit [*.net *.split]
nilsirl[m] has quit [*.net *.split]
tyrion1 has quit [*.net *.split]
TravisRt2botio[m has quit [*.net *.split]
jschievink has quit [*.net *.split]
IslandUsurper has quit [*.net *.split]
l33[m] has quit [*.net *.split]
yoho[m] has quit [*.net *.split]
cyberwolf[m] has quit [*.net *.split]
geemili has quit [*.net *.split]
jonge[m] has quit [*.net *.split]
cocreature has quit [*.net *.split]
Ox4A6F has quit [*.net *.split]
bikki[m] has quit [*.net *.split]
averell has quit [*.net *.split]
Ankhers has quit [*.net *.split]
martyet-o has quit [*.net *.split]
zemm has quit [*.net *.split]
fayesafe has quit [*.net *.split]
oleks has quit [*.net *.split]
trfl has quit [*.net *.split]
charukiewicz has quit [*.net *.split]
otti0815 has quit [*.net *.split]
Phlogistique has quit [*.net *.split]
catern has quit [*.net *.split]
DrWhax has quit [*.net *.split]
shapr has quit [*.net *.split]
bourbon has quit [*.net *.split]
kalbasit has quit [*.net *.split]
Nazral has quit [*.net *.split]
bohan has quit [*.net *.split]
nore has quit [*.net *.split]
gxt_ has quit [*.net *.split]
phreedom has quit [*.net *.split]
jb55 has quit [*.net *.split]
xelxebar has quit [*.net *.split]
cartwright has quit [*.net *.split]
klntsky has quit [*.net *.split]
andreas31 has quit [*.net *.split]
betaboon has quit [*.net *.split]
DerGuteMoritz has quit [*.net *.split]
n3t has quit [*.net *.split]
sveitser has quit [*.net *.split]
ikwildrpepper has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
notarock has quit [*.net *.split]
srk has quit [*.net *.split]
Ultrasauce has quit [*.net *.split]
deni has quit [*.net *.split]
maurer has quit [*.net *.split]
Squarism has quit [*.net *.split]
lpsmith has quit [*.net *.split]
n1x_ has quit [*.net *.split]
superbaloo has quit [*.net *.split]
grw has quit [*.net *.split]
teto has quit [*.net *.split]
pepesza has quit [*.net *.split]
glines has quit [*.net *.split]
greymalkin has quit [*.net *.split]
edcragg has quit [*.net *.split]
samueldr has quit [*.net *.split]
tarruda has quit [*.net *.split]
dweller has quit [*.net *.split]
Guest86933 has quit [*.net *.split]
mg- has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
rixed has quit [*.net *.split]
gambpang has quit [*.net *.split]
djanatyn has quit [*.net *.split]
luigy has quit [*.net *.split]
ixiqem has quit [*.net *.split]
stew has quit [*.net *.split]
lvmond has quit [*.net *.split]
boegel has quit [*.net *.split]
tobim[m] has quit [*.net *.split]
aloysius[m] has quit [*.net *.split]
fifeefo has quit [*.net *.split]
bricewge has quit [*.net *.split]
Sisyphe[m] has quit [*.net *.split]
Vskilet has quit [*.net *.split]
hienergy[m] has quit [*.net *.split]
sevcsik- has quit [*.net *.split]
snupples[m] has quit [*.net *.split]
ronny has quit [*.net *.split]
slabity has quit [*.net *.split]
haslersn has quit [*.net *.split]
macerbi[m]1 has quit [*.net *.split]
DanP[m] has quit [*.net *.split]
zummed[m] has quit [*.net *.split]
wangoe[m] has quit [*.net *.split]
provessor[m] has quit [*.net *.split]
frislie[m] has quit [*.net *.split]
tilpner2 has quit [*.net *.split]
Noughtmare[m] has quit [*.net *.split]
spacekitteh[m] has quit [*.net *.split]
goibhniu has quit [*.net *.split]
joepie91[m] has quit [*.net *.split]
manveru[m] has quit [*.net *.split]
blahaj[m] has quit [*.net *.split]
JaakkoLuttinen[m has quit [*.net *.split]
veleiro has quit [*.net *.split]
wolfshappen has quit [*.net *.split]
nornagon has quit [*.net *.split]
siiky has quit [*.net *.split]
nikola has quit [*.net *.split]
chrisaw has quit [*.net *.split]
tg has quit [*.net *.split]
mjsir911 has quit [*.net *.split]
talyz has quit [*.net *.split]
michaelpj has quit [*.net *.split]
litschi has quit [*.net *.split]
smove has quit [*.net *.split]
ericnoan has quit [*.net *.split]
JohnAZoidberg has quit [*.net *.split]
alanz has quit [*.net *.split]
srid has quit [*.net *.split]
ent has quit [*.net *.split]
mjrosenb has quit [*.net *.split]
djahandarie has quit [*.net *.split]
packer has quit [*.net *.split]
raboof has quit [*.net *.split]
sgraf has quit [*.net *.split]
hamishmack has quit [*.net *.split]
nick_h has quit [*.net *.split]
scott has quit [*.net *.split]
Tritlo has quit [*.net *.split]
Miyu-saki has quit [*.net *.split]
dolanbatar has quit [*.net *.split]
mudri has quit [*.net *.split]
thoradam has quit [*.net *.split]
jeregrine has quit [*.net *.split]
c00w has quit [*.net *.split]
cbarrett has quit [*.net *.split]
carter has quit [*.net *.split]
Mic92 has quit [*.net *.split]
lally has quit [*.net *.split]
chessai has quit [*.net *.split]
mkaito has quit [*.net *.split]
Adluc has quit [*.net *.split]
d1rewolf has quit [*.net *.split]
marcinkuzminski has quit [*.net *.split]
manveru has quit [*.net *.split]
_cyril_ has quit [*.net *.split]
garbas has quit [*.net *.split]
Luker has quit [*.net *.split]
lord| has quit [*.net *.split]
jluttine has quit [*.net *.split]
detran has quit [*.net *.split]
leotaku has quit [*.net *.split]
Mateon1 has quit [*.net *.split]
leothrix has quit [*.net *.split]
shyim has quit [*.net *.split]
grumble has quit [*.net *.split]
acertain has quit [*.net *.split]
callahad8 has quit [*.net *.split]
wolke has quit [*.net *.split]
kgz has quit [*.net *.split]
inkbottle has quit [*.net *.split]
lassulus has quit [*.net *.split]
tjg1 has quit [*.net *.split]
lecethimon has quit [*.net *.split]
andymandias has quit [*.net *.split]
Taneb has quit [*.net *.split]
rotaerk has quit [*.net *.split]
doelie has quit [*.net *.split]
adisbladis has quit [*.net *.split]
lux2 has quit [*.net *.split]
__Myst__ has quit [*.net *.split]
realrokka has quit [*.net *.split]
zaeph has quit [*.net *.split]
emacsomancer has quit [*.net *.split]
exarkun has quit [*.net *.split]
myme has quit [*.net *.split]
sigtrm has quit [*.net *.split]
immae has quit [*.net *.split]
jfroche has quit [*.net *.split]
Rovanion has quit [*.net *.split]
page has quit [*.net *.split]
jaeckel has quit [*.net *.split]
Lears has quit [*.net *.split]
puffnfresh has quit [*.net *.split]
arianvp has quit [*.net *.split]
multun has quit [*.net *.split]
lewo` has quit [*.net *.split]
coderobe has quit [*.net *.split]
codedmart has quit [*.net *.split]
edef has quit [*.net *.split]
monsieurp has quit [*.net *.split]
kandinski has quit [*.net *.split]
dashkal has quit [*.net *.split]
dbe has quit [*.net *.split]
Serus has quit [*.net *.split]
xantoz has quit [*.net *.split]
phI||Ip has quit [*.net *.split]
sshow has quit [*.net *.split]
plp_ has quit [*.net *.split]
kraem has quit [*.net *.split]
juhoh has quit [*.net *.split]
bigvalen has quit [*.net *.split]
acowley has quit [*.net *.split]
drgbr has quit [*.net *.split]
habbah has quit [*.net *.split]
AstroBadger has quit [*.net *.split]
mightybyte has quit [*.net *.split]
cransom has quit [*.net *.split]
Raito_Bezarius has quit [*.net *.split]
nurelin has quit [*.net *.split]
logzet has quit [*.net *.split]
chiefgoat has quit [*.net *.split]
Okinan has quit [*.net *.split]
gentauro has quit [*.net *.split]
nikivi has quit [*.net *.split]
sphalerite has quit [*.net *.split]
groggy[m] has quit [*.net *.split]
hackeryarn[m] has quit [*.net *.split]
fasd has quit [*.net *.split]
tails[m] has quit [*.net *.split]
risson has quit [*.net *.split]
fpletz[m] has quit [*.net *.split]
GerdFlaig[m] has quit [*.net *.split]
philipp[m] has quit [*.net *.split]
regnat[m] has quit [*.net *.split]
xavierm02 has quit [*.net *.split]
hiroshi[m] has quit [*.net *.split]
schmittlauch[m] has quit [*.net *.split]
Izorkin has quit [*.net *.split]
hpfr[m] has quit [*.net *.split]
simbergm has quit [*.net *.split]
tabasko has quit [*.net *.split]
shizonic has quit [*.net *.split]
NickHu has quit [*.net *.split]
chreekat has quit [*.net *.split]
bachp has quit [*.net *.split]
florianjacob has quit [*.net *.split]
chris| has quit [*.net *.split]
ardumont has quit [*.net *.split]
lopsided98_ has quit [*.net *.split]
evil-olive has quit [*.net *.split]
drewr has quit [*.net *.split]
Cale has quit [*.net *.split]
boolman has quit [*.net *.split]
WilliButz has quit [*.net *.split]
daGrevis has quit [*.net *.split]
aswanson has quit [*.net *.split]
gchristensen has quit [*.net *.split]
{^_^} has quit [*.net *.split]
sauyon has quit [*.net *.split]
barrucadu has quit [*.net *.split]
rot13 has quit [*.net *.split]
brnzz has quit [*.net *.split]
m1cr0man has quit [*.net *.split]
vk3wtf_ has quit [*.net *.split]
br_ has quit [*.net *.split]
inf has quit [*.net *.split]
shad has quit [*.net *.split]
zgrep has quit [*.net *.split]
ctp has quit [*.net *.split]
b42 has quit [*.net *.split]
helpusobi has quit [*.net *.split]
Olgierd has quit [*.net *.split]
nervengift has quit [*.net *.split]
sethetter_ has quit [*.net *.split]
ashkitten has quit [*.net *.split]
kcalvinalvin has quit [*.net *.split]
teej has quit [*.net *.split]
pingveno has quit [*.net *.split]
parseval has quit [*.net *.split]
joshmeredith has quit [*.net *.split]
bodqhrohro has quit [*.net *.split]
gausby_ has quit [*.net *.split]
mankyKitty has quit [*.net *.split]
nimblepoultry has quit [*.net *.split]
ij has quit [*.net *.split]
NekomimiScience has quit [*.net *.split]
rizary_ has quit [*.net *.split]
taktoa[c] has quit [*.net *.split]
higherorder has quit [*.net *.split]
philipcristiano has quit [*.net *.split]
KennosiS has quit [*.net *.split]
hoek has quit [*.net *.split]
Fulgen has quit [*.net *.split]
ProofTechnique has quit [*.net *.split]
d10n-work has quit [*.net *.split]
uwap has quit [*.net *.split]
p01ar has quit [*.net *.split]
TallerGhostWalt_ has quit [*.net *.split]
newhoggy has quit [*.net *.split]
nh2 has quit [*.net *.split]
AmandaC has quit [*.net *.split]
jw358 has quit [*.net *.split]
eri451 has quit [*.net *.split]
otwieracz has quit [*.net *.split]
ok2` has quit [*.net *.split]
aranea has quit [*.net *.split]
flokli has quit [*.net *.split]
azazel has quit [*.net *.split]
rnhmjoj has quit [*.net *.split]
aanderse has quit [*.net *.split]
Smith[m] has quit [*.net *.split]
zmlww[m] has quit [*.net *.split]
otini has quit [*.net *.split]
yangm has quit [*.net *.split]
is0x3F has quit [*.net *.split]
null_radix[m] has quit [*.net *.split]
flacks has quit [*.net *.split]
mdash has quit [*.net *.split]
jtojnar has quit [*.net *.split]
abbe has quit [*.net *.split]
alexherbo2 has quit [*.net *.split]
Thra11_ has quit [*.net *.split]
hyper_ch has quit [*.net *.split]
globin has quit [*.net *.split]
stzsch has quit [*.net *.split]
robogoat has quit [*.net *.split]
truh[m] has quit [*.net *.split]
pbb has quit [*.net *.split]
shabius has quit [*.net *.split]
submoo[m] has quit [*.net *.split]
ndarwincorn has quit [*.net *.split]
isgy[m] has quit [*.net *.split]
y0x3y[m] has quit [*.net *.split]
jwaksbaum[m] has quit [*.net *.split]
pachacuti[m] has quit [*.net *.split]
wildtrees[m] has quit [*.net *.split]
ZD[m] has quit [*.net *.split]
sonercirit[m] has quit [*.net *.split]
clefru has quit [*.net *.split]
Notkea[m] has quit [*.net *.split]
quiet_laika[m] has quit [*.net *.split]
malteof[m] has quit [*.net *.split]
ZerataX has quit [*.net *.split]
peel1 has quit [*.net *.split]
zurdo has quit [*.net *.split]
MilkManzJourDadd has quit [*.net *.split]
roberth has quit [*.net *.split]
Ericson2314 has quit [*.net *.split]
worldofpeace has quit [*.net *.split]
Minijackson[m] has quit [*.net *.split]
MayeulC_backup has quit [*.net *.split]
blitzclone_ has quit [*.net *.split]
momack2[m] has quit [*.net *.split]
fgaz has quit [*.net *.split]
MarkOtaris has quit [*.net *.split]
craige[m] has quit [*.net *.split]
clacke[m] has quit [*.net *.split]
andreabedini has quit [*.net *.split]
andi- has quit [*.net *.split]
Neo-- has quit [*.net *.split]
leah2 has quit [*.net *.split]
GlennS has quit [*.net *.split]
Orbstheorem has quit [*.net *.split]
Swant has quit [*.net *.split]
xensky has quit [*.net *.split]
swflint has quit [*.net *.split]
nixy has quit [*.net *.split]
avocadoom has quit [*.net *.split]
glowpelt has quit [*.net *.split]
lsyoyom has quit [*.net *.split]
swapgs has quit [*.net *.split]
SOO7 has quit [*.net *.split]
lurkless has quit [*.net *.split]
stigo has quit [*.net *.split]
valwal has quit [*.net *.split]
aristid has quit [*.net *.split]
ryantm has quit [*.net *.split]
mcfrank has quit [*.net *.split]
fyuuri has quit [*.net *.split]
ehmry has quit [*.net *.split]
Twey has quit [*.net *.split]
pbogdan has quit [*.net *.split]
coot has quit [*.net *.split]
mikky has quit [*.net *.split]
wirew0rm has quit [*.net *.split]
loonquawl has quit [*.net *.split]
englishm has quit [*.net *.split]
georgyo_ has quit [*.net *.split]
aria has quit [*.net *.split]
angerman has quit [*.net *.split]
lukego has quit [*.net *.split]
elvishjerricco has quit [*.net *.split]
jchw has quit [*.net *.split]
lightbulbjim has quit [*.net *.split]
evck has quit [*.net *.split]
steveeJ has quit [*.net *.split]
sorear has quit [*.net *.split]
bitonic has quit [*.net *.split]
alunduil has quit [*.net *.split]
nkaretnikov has quit [*.net *.split]
r0bby has quit [*.net *.split]
heatm1s3r has quit [*.net *.split]
morgib has quit [*.net *.split]
mitsuhiko has quit [*.net *.split]
dukedave has quit [*.net *.split]
feepo has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
zertox has quit [*.net *.split]
NemesisD has quit [*.net *.split]
savanni has quit [*.net *.split]
lluchs has quit [*.net *.split]
joedevivo has quit [*.net *.split]
sdier has quit [*.net *.split]
mstruebing has quit [*.net *.split]
`slikts has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
jlpeters has quit [*.net *.split]
rodarmor has quit [*.net *.split]
hl has quit [*.net *.split]
tsrt^ has quit [Max SendQ exceeded]
zer0xp[m] has joined #nixos
h0m1 has joined #nixos
Jackneilll has joined #nixos
alexherbo2 has joined #nixos
chloekek has joined #nixos
mariel__ has joined #nixos
gxt_ has joined #nixos
FRidh has joined #nixos
Makaveli7 has joined #nixos
sweep has joined #nixos
thc202 has joined #nixos
__monty__ has joined #nixos
lord| has joined #nixos
xd1le has joined #nixos
m0rphism has joined #nixos
packer has joined #nixos
fendor has joined #nixos
Thra11_ has joined #nixos
palo has joined #nixos
sigmundv has joined #nixos
rauno has joined #nixos
logzet has joined #nixos
craige has joined #nixos
exfalso has joined #nixos
wrl has joined #nixos
fusion809 has joined #nixos
philr has joined #nixos
Heirlung has joined #nixos
joshuagl has joined #nixos
dsg has joined #nixos
civodul has joined #nixos
kenran has joined #nixos
noudle has joined #nixos
dani- has joined #nixos
xkapastel has joined #nixos
pie_ has joined #nixos
markus1199 has joined #nixos
captn3m0 has joined #nixos
nisstyre has joined #nixos
twistedjoe has joined #nixos
nocoolnametom has joined #nixos
shyim has joined #nixos
marcusr has joined #nixos
xelxebar has joined #nixos
bgamari_ has joined #nixos
hyper_ch has joined #nixos
aw has joined #nixos
fifeefo has joined #nixos
qubasa_ has joined #nixos
robogoat has joined #nixos
pointfourone has joined #nixos
jak[m]1 has joined #nixos
glasserc has joined #nixos
cyphase has joined #nixos
sphalerite has joined #nixos
BrightOne[m] has joined #nixos
manveru[m] has joined #nixos
cptchaos83 has joined #nixos
Amnesia has joined #nixos
gudea[m] has joined #nixos
das_j has joined #nixos
jluttine has joined #nixos
leothrix has joined #nixos
stzsch has joined #nixos
AluisioASG has joined #nixos
acarrico has joined #nixos
bridge[evilred] has joined #nixos
darkf has joined #nixos
wolke has joined #nixos
truh[m] has joined #nixos
cheshircat has joined #nixos
Acou_Bass has joined #nixos
philipp[m] has joined #nixos
phreedom has joined #nixos
bachp has joined #nixos
MilkManzJourDadd has joined #nixos
phyfey[m] has joined #nixos
shabius has joined #nixos
nikivi has joined #nixos
emilsp has joined #nixos
Mateon1 has joined #nixos
TravisRt2botio[m has joined #nixos
spacekitteh[m] has joined #nixos
marusich has joined #nixos
colemickens has joined #nixos
tilpner has joined #nixos
pbb has joined #nixos
leotaku has joined #nixos
nilsirl[m] has joined #nixos
kwork has joined #nixos
bdju has joined #nixos
DenisLehmann[m] has joined #nixos
sonercirit[m] has joined #nixos
attero has joined #nixos
is0x3F has joined #nixos
grumble has joined #nixos
callahad8 has joined #nixos
talvdav[m] has joined #nixos
detran has joined #nixos
lel[m] has joined #nixos
midi[m] has joined #nixos
tobim[m] has joined #nixos
Dagger has joined #nixos
LinuXit has joined #nixos
otini has joined #nixos
ma27[m] has joined #nixos
Yakulu[m] has joined #nixos
GerdFlaig[m] has joined #nixos
arturo[m] has joined #nixos
Shoubit has joined #nixos
tilpner2 has joined #nixos
bendlas has joined #nixos
macerbi[m]1 has joined #nixos
imj[m] has joined #nixos
bohan[m] has joined #nixos
MayeulC_backup has joined #nixos
_rvl has joined #nixos
Okinan has joined #nixos
ronny has joined #nixos
arcnmx has joined #nixos
provessor[m] has joined #nixos
ZD[m] has joined #nixos
coniferous-cube[ has joined #nixos
ejpcmac has joined #nixos
HappyEnt[m] has joined #nixos
Gopal[m] has joined #nixos
Nyanloutre[m] has joined #nixos
rihardsk[m] has joined #nixos
dckc has joined #nixos
awygle has joined #nixos
andromeda-galaxy has joined #nixos
siiky has joined #nixos
aminechikhaoui has joined #nixos
talyz has joined #nixos
PyroLagus has joined #nixos
lopsided98_ has joined #nixos
segfault[m] has joined #nixos
timokau[m] has joined #nixos
leah2 has joined #nixos
jmeredith has joined #nixos
efriend has joined #nixos
Rovanion has joined #nixos
gchristensen has joined #nixos
hiroshi[m] has joined #nixos
escaP[m] has joined #nixos
tokudan[m] has joined #nixos
avocadoom has joined #nixos
rsa has joined #nixos
pikajude has joined #nixos
georges has joined #nixos
goodwill has joined #nixos
ij has joined #nixos
danderson has joined #nixos
p01ar has joined #nixos
oharvey has joined #nixos
ent has joined #nixos
niksnut has joined #nixos
mjrosenb has joined #nixos
alunduil has joined #nixos
luigy has joined #nixos
kandinski has joined #nixos
hoek has joined #nixos
flokli has joined #nixos
lally has joined #nixos
heatm1s3r has joined #nixos
bourbon has joined #nixos
kalbasit has joined #nixos
morgib has joined #nixos
d1rewolf has joined #nixos
teej has joined #nixos
Heirlung has quit [Ping timeout: 240 seconds]
justanotheruser has quit [Max SendQ exceeded]
lstanley has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
<exfalso> unrelated question: is there a reason for fixed output derivations to be cached on the output hash? wouldn't it be better if they were cached on the output hash+input src? This way we wouldn't need to do the fiddlydo with the hash when we change something
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71489 → arb: 2.16.0 -> 2.17.0 → https://git.io/JeRJz
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
justanotheruser has joined #nixos
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
calbrecht[mb]_ has quit [Remote host closed the connection]
<{^_^}> [rfcs] @domenkozar merged pull request #51 → [RFC 0051] Mark stale nixpkgs issues → https://git.io/fjNhc
<{^_^}> [rfcs] @domenkozar pushed commit from @ryantm to master « [RFC 0051] Mark stale nixpkgs issues (#51) »: https://git.io/JeroX
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
LnL has joined #nixos
LnL has joined #nixos
LnL has quit [Changing host]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
lstanley has joined #nixos
calbrecht[mb] has joined #nixos
<{^_^}> [nixpkgs] @fpletz merged pull request #73339 → prometheus: 2.13.1 -> 2.14.0 → https://git.io/JerIU
<{^_^}> [nixpkgs] @fpletz pushed 2 commits to master: https://git.io/JeroM
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
m0rphism1 has joined #nixos
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
drakonis has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.6]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
m0rphism1 has quit [Ping timeout: 240 seconds]
Heirlung has joined #nixos
drakonis_ has quit [Ping timeout: 276 seconds]
silver has joined #nixos
orivej has quit [Ping timeout: 276 seconds]
kgz has joined #nixos
Ariakenom has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #73391 → python3Packages.black: fix build on darwin → https://git.io/JerKJ
smatting has joined #nixos
<__monty__> I was trying to test this PR to an issue I submitted. I'm failing to build the package, what am I doing wrong? https://github.com/NixOS/nixpkgs/pull/73379
<{^_^}> #73379 (by marsam, 9 hours ago, merged): mpv: fix build on darwin
xd1le has quit [Quit: leaving]
rauno has quit [Ping timeout: 240 seconds]
cfricke has joined #nixos
m0rphism1 has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71172 → awslogs: propagate setuptools → https://git.io/Je8Mr
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @c0deaddict to master « awslogs: propagate setuptools »: https://git.io/JerKB
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71180 → rbtools: propagate setuptools → https://git.io/Je8SM
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @c0deaddict to master « rbtools: propagate setuptools »: https://git.io/JerK0
FRidh has quit [Quit: Konversation terminated!]
Rusty1 has joined #nixos
Ariakenom has quit [Quit: WeeChat 2.6]
<evanjs> Any fellow @angular/cli users have a minute to check #73225 out?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/73225 (by evanjs, 2 days ago, open): nodePackages."@angular/cli": disable analytics
xkapastel has quit [Quit: Connection closed for inactivity]
m0rphism1 has quit [Ping timeout: 265 seconds]
<symphorien> mikky: there https://nixos.org/nixos/options.html#services.printing.drivers
cfricke has quit [Ping timeout: 265 seconds]
adam| has joined #nixos
MmeQuignon has joined #nixos
cfricke has joined #nixos
kaliumxyz has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71032 → passExtensions.pass-genphrase: 0.1 -> 0.2 → https://git.io/JelS3
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @seqizz to master « passExtensions.pass-genphrase: 0.1 -> 0.2 »: https://git.io/JerKN
jgt1 has joined #nixos
<{^_^}> [nixpkgs] @babariviere opened pull request #73393 → terraform: 0.12.13 -> 0.12.14 → https://git.io/JerKA
<{^_^}> [nixpkgs] @Ma27 pushed to structured-attrs « buildGoPackage: fix builds »: https://git.io/JerKx
<betaboon> samueldr: it works :D
<betaboon> samueldr: this is just hella dirty atm, but the refind tests run (everything else should be broken xD) https://gist.github.com/betaboon/601795c1291b1657a65ae082a94149c6
psyanticy has joined #nixos
cfricke has quit [Quit: WeeChat 2.6]
<betaboon> nix flakes looks damn good
<{^_^}> [nixpkgs] @pasqui23 opened pull request #73394 → nixos/xserver:services.xserver.xkbOptions is now commas → https://git.io/Jer6q
Chiliparrot has joined #nixos
reallymemorable has joined #nixos
ddellacosta has joined #nixos
cosimone has joined #nixos
adam| has quit [Quit: ZNC 1.7.5 - https://znc.in]
cosimone has quit [Client Quit]
<{^_^}> [nixpkgs] @filalex77 opened pull request #73395 → mkcert: 1.4.0 -> 1.4.1 → https://git.io/Jer6a
<{^_^}> [nixpkgs] @saschagrunert opened pull request #73396 → conmon: v2.0.2 -> v2.0.3 → https://git.io/Jer6X
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
adam| has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « signal-desktop: 1.27.4 -> 1.28.0 »: https://git.io/Jer69
philr has quit [Ping timeout: 265 seconds]
Fare has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #73397 → [19.09] signal-desktop: 1.27.4 -> 1.28.0 (backport) → https://git.io/Jer6h
WilliamHamilton has joined #nixos
<mikky> symphorien: I don't know is how to add a locally-built package there, that's what I meant
<symphorien> ah
<WilliamHamilton> could someone recommend me a graphical tablet that works well under nixos? The main use for it would be screen-sharing a notepad on which I can draw to illustrate ideas when coding remotely
cosimone has joined #nixos
<symphorien> services.printing.drivers = [ (import /path/to/clone {}).canon-cups-ufr2 ];
<mikky> symphorien: thx, I'll try
<symphorien> because `pkgs.` is defined as `import <nixpkgs> {}` and <nixpkgs> itself expands to some path where nix-channel cloned nixpkgs
endformationage has joined #nixos
<mikky> symphorien: that actually makes sense :)
<{^_^}> [nixpkgs] @eadwu opened pull request #73398 → nvidia_x11: i686bundled only on i686 systems → https://git.io/JeriO
<mikky> symphorien: had to add (import ... { config.allowUnfree = true; } )
Izorkin has joined #nixos
<symphorien> ah yes makes sense
Fare has quit [Ping timeout: 252 seconds]
<DigitalKiwi> WilliamHamilton: do you have a price range you're looking for
<WilliamHamilton> DigitalKiwi not over 100$, but as I'll use it occasionally I hope something in the ~50$ vicinity
<WilliamHamilton> DigitalKiwi but I really don't know that market, so I accept suggestions
<DigitalKiwi> hmm, i don't have first hand experience, but i've seen some people using wacoms i think (the irc logs are in the topic so might be worth a shot if nobody answers) and there are drivers in nixpkgs
<DigitalKiwi> a friend always recommends me the monoprice one but i don't know if/what drivers it needs or if it just works on linux
<DigitalKiwi> when i looked at it the monopriced one is good price and good tablet much cheaper than comparable wacom
not_a_frenchman_ has joined #nixos
<WilliamHamilton> thanks DigitalKiwi I'll look into the monopriced tablt
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
<DigitalKiwi> nice 55 https://www.monoprice.com/product?p_id=10594 now just find out if it works >.>
rauno has joined #nixos
zupo has joined #nixos
<DigitalKiwi> looks like it's 40 on amazon
bvdw has quit [Read error: Connection reset by peer]
orivej has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<not_a_frenchman_> Hello, I'm trying to get a cross compiler running for the sh3eb-elf target but can't figure out how using NixOS
bvdw has joined #nixos
<not_a_frenchman_> I've tried going the crossSystem.system = "sh3eb-elf"; route but that ends up with unknown CPU Type
<symphorien> not_a_frenchman_:I think you have to add it to nixpkgs: https://github.com/NixOS/nixpkgs/pull/45340/files
<{^_^}> [nixpkgs] @Ma27 pushed to structured-attrs « ghc*: fix eval »: https://git.io/JeriV
<{^_^}> [hydra] @knl opened pull request #692 → Add host tag to InfluxDB metrics → https://git.io/Jerio
Fare has joined #nixos
<not_a_frenchman_> @symphorien Thanks, I suspected as much. Sounds like I have a weekend project
Ariakenom has joined #nixos
WilliamHamilton has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Profpatsch merged pull request #72889 → lorri: init at version unstable-2019-10-30 → https://git.io/JeaCa
<{^_^}> [nixpkgs] @Profpatsch pushed 2 commits to master: https://git.io/Jerii
<{^_^}> [nixpkgs] @rht opened pull request #73400 → brave: 0.69.135 -> 1.0.0 → https://git.io/JeriX
<{^_^}> [nixpkgs] @wizeman opened pull request #73401 → ocamlPackages.lwt_ppx: fix dependency propagation → https://git.io/Jeri1
Phillemann has left #nixos ["WeeChat 2.6"]
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 2 commits to nixpkgs-19.09-darwin: https://git.io/Jero8
<{^_^}> [nixpkgs] @eadwu opened pull request #73402 → mesa: 19.2.3 -> 19.2.4 → https://git.io/JeriS
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/c8ff042dac8 (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
WilliamHamilton has joined #nixos
__monty__ has quit [Quit: leaving]
h0m1 has quit [Quit: WeeChat 2.6]
o1lo01ol1o has joined #nixos
jhoff has joined #nixos
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to staging: https://git.io/JerPk
<{^_^}> [nixpkgs] @adisbladis merged pull request #73402 → mesa: 19.2.3 -> 19.2.4 → https://git.io/JeriS
<jhoff> hi guys, got a problem, I'm trying to create docker image using `dockerTools.buildImage` while using `fetchgitPrivate`, this is the output: https://pastebin.com/cHydUn4L
<{^_^}> [nixpkgs] @zimbatm merged pull request #73393 → terraform: 0.12.13 -> 0.12.14 → https://git.io/JerKA
<{^_^}> [nixpkgs] @zimbatm pushed commit from @babariviere to master « terraform: 0.12.13 -> 0.12.14 (#73393) »: https://git.io/JerPY
not_a_frenchman_ has quit [Remote host closed the connection]
deluvi[m] has joined #nixos
werner291 has joined #nixos
alexherbo2 has joined #nixos
werner291 has quit [Client Quit]
<adisbladis> jhoff: Use builtins.fetchGit instead
<adisbladis> jhoff: builtin fetchers run inside the evaluator as your user, so you can use your regular user ssh keys
waleee-cl has joined #nixos
<adisbladis> While nixpkgs fetchers run as a fixed-output derivation (inside the sandbox), but with network restrictions lifted
h0m1 has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<adisbladis> Tbh we should probably remove fetchgitPrivate
<gchristensen> +1 +1 +1 +1 +1
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
<{^_^}> [nixpkgs] @kylesferrazza opened pull request #73403 → mattermost: fix path in desktop file → https://git.io/JerP4
<jhoff> oh wow, looks like its working !
<jhoff> @adis
<jhoff> @adisbladis thanks!
maralorn has joined #nixos
<adisbladis> jhoff: Sweet :) Np
<{^_^}> [nixpkgs] @FRidh pushed commit from @eadwu to staging-next « mesa: 19.2.3 -> 19.2.4 »: https://git.io/JerPE
<Ariakenom> hm I have autologin enabled but no default desktop or window manager. it seems to be working fine, the manual says you need those
rauno has quit [Ping timeout: 276 seconds]
alexherbo2 has joined #nixos
<jhoff> @adisbladis got confused because it was running on macos, but the binary was built with macos dependencies (like `Security`) and than docker image can't run due to incompatible binary
<{^_^}> [nixpkgs] @FRidh merged pull request #73396 → conmon: v2.0.2 -> v2.0.3 → https://git.io/Jer6X
<{^_^}> [nixpkgs] @FRidh pushed commit from @saschagrunert to master « conmon: v2.0.2 -> v2.0.3 »: https://git.io/JerPo
werner291 has joined #nixos
werner291 has quit [Client Quit]
drakonis1 has joined #nixos
werner291 has joined #nixos
werner291 has quit [Client Quit]
civodul has joined #nixos
<{^_^}> [nixpkgs] @mrVanDalo opened pull request #73405 → nixos/syncthing: add versioning → https://git.io/JerPP
<{^_^}> [nixpkgs] @c0bw3b merged pull request #73369 → argp-standalone: Find ar when cross compiling → https://git.io/JerRX
<{^_^}> [nixpkgs] @c0bw3b pushed 2 commits to master: https://git.io/JerPX
Izorkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
Thra11_ has quit [Ping timeout: 252 seconds]
asymmetric has joined #nixos
Izorkin has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b merged pull request #70507 → qtpbfimageplugin: 1.4 -> 2.0 → https://git.io/JeC89
<{^_^}> [nixpkgs] @c0bw3b pushed 2 commits to master: https://git.io/JerPy
aleph- has joined #nixos
<{^_^}> [nixops-aws] @PsyanticY opened pull request #17 → aws: data lifecycle manager → https://git.io/JerPd
adam| has quit [Quit: ZNC 1.7.5 - https://znc.in]
<alexarice[m]> what is up with unstable?
mananamenos has joined #nixos
<DigitalKiwi> elaborate?
Thra11_ has joined #nixos
<evils> it's been 10 days since nixos-unstable passed hydra tests
adam| has joined #nixos
<{^_^}> [nixpkgs] @adisbladis opened pull request #73406 → fetchgitPrivate: Remove fetcher → https://git.io/JerXf
Okinan has quit [Quit: Konversation terminated!]
<DigitalKiwi> oh
werner291 has joined #nixos
fendor has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @juaningan opened pull request #73407 → openjdk11: split gnome3 and gnome2 deps → https://git.io/JerXk
adam| has quit [Quit: ZNC 1.7.5 - https://znc.in]
pamplemousse has joined #nixos
kenran has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @livnev opened pull request #73408 → john: copy rules → https://git.io/JerXn
m0rphism has quit [Quit: WeeChat 2.4]
<DigitalKiwi> gchristensen: do your charts tell you why
drakonis1 has quit [Quit: WeeChat 2.6]
m0rphism has joined #nixos
<gchristensen> no, someone will have to look at the jobset and see what is holding it up
<DigitalKiwi> feature request: your charts tell you why
mananamenos has quit [Remote host closed the connection]
<gchristensen> charts can only say what :P
<gchristensen> need a person to know why
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 6 commits to nixos-unstable-small: https://git.io/JerX4
WilliamHamilton has quit [Remote host closed the connection]
<DigitalKiwi> this sounds like a job for AI
<infinisil> nixos.iso_minimal.i686-linux seems to be failing
<alexarice[m]> infinisil: I've seen that, just seems strange that different things have been failing for 10 days
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/c747894638a (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<infinisil> That sure is a bit of an unlucky coincidence
sweep is now known as genesis
genesis has quit [Changing host]
genesis has joined #nixos
<Miyu-saki> How do I repair-path current-system?
adam| has joined #nixos
<infinisil> Miyu-saki: nix-store --repair-path /run/current-system?
<Miyu-saki> infinisil: Is --repair-path recursive?
<infinisil> Try it out
<Miyu-saki> Oh it is. Lmao
<Miyu-saki> Thanks!
drakonis_ has joined #nixos
jgt1 has quit [Ping timeout: 265 seconds]
drakonis has quit [Ping timeout: 268 seconds]
justanotheruser has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 2 commits to nixos-19.09-small: https://git.io/Jero8
kim0 has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/c8ff042dac8 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<{^_^}> [nixpkgs] @jonringer merged pull request #73290 → python3.pkgs.authlib: init at 0.13 → https://git.io/JewSm
<{^_^}> [nixpkgs] @jonringer pushed commit from @flokli to master « python3.pkgs.authlib: init at 0.13 »: https://git.io/Jer1k
<kim0> Hi folks .. How do I convince the bot that auto-upgrades stuff on nixpkgs .. to auto-upgrade a certain package with waiting many weeks
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #73409 → jitterentropy: Find strip when crosscompiling → https://git.io/Jer1Y
<{^_^}> [nixpkgs] @jonringer merged pull request #73391 → python3Packages.black: fix build on darwin → https://git.io/JerKJ
<{^_^}> [nixpkgs] @jonringer pushed commit from @marsam to master « python3Packages.black: fix build on darwin »: https://git.io/Jer1G
drakonis has joined #nixos
<evils> kim0: i think that uses repology.org, is the package tracked by that?
<kim0> Yes
Ariakenom has quit [Quit: WeeChat 2.6]
drakonis_ has quit [Ping timeout: 250 seconds]
drakonis_ has joined #nixos
<kim0> @evils so how do I nudge it
<evils> unfortunately that's about all i know about that...
<{^_^}> [nixpkgs] @ckauhaus opened pull request #73410 → vulnix: 1.8.2 -> 1.9.1 → https://git.io/Jer18
justanotheruser has joined #nixos
hlolli_ has joined #nixos
chloekek has quit [Quit: WeeChat 2.6]
drakonis has quit [Ping timeout: 250 seconds]
Fare has quit [Ping timeout: 240 seconds]
ambro718 has joined #nixos
adam| has left #nixos ["ERC (IRC client for Emacs 26.3)"]
adam| has joined #nixos
o1lo01ol1o has quit [Read error: Connection reset by peer]
o1lo01ol1o has joined #nixos
sigmundv has quit [Ping timeout: 240 seconds]
drakonis_ has quit [Read error: Connection reset by peer]
dingenskirchen1 has joined #nixos
adam| has quit [Quit: ZNC 1.7.5 - https://znc.in]
dingenskirchen1 is now known as dingenskirchen
leo_ has joined #nixos
adam| has joined #nixos
<leo_> Pinning nixpkgs is a test of my hardware and internet
<leo_> Very old HD ... I don't know if it's a good idea.
<{^_^}> [nixpkgs] @jonringer merged pull request #73400 → brave: 0.69.135 -> 1.0.0 → https://git.io/JeriX
<{^_^}> [nixpkgs] @jonringer pushed commit from @rht to master « brave: 0.69.135 -> 1.0.0 »: https://git.io/Jer1P
<leo_> I think I'll have to get some upgrades. :|
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
m0rphism1 has joined #nixos
<{^_^}> [nixpkgs] @ehmry merged pull request #73375 → consul-alerts: 0.5.0 -> 0.6.0 → https://git.io/JeruK
<{^_^}> [nixpkgs] @ehmry pushed commit from @nh2 to master « consul-alerts: 0.5.0 -> 0.6.0 »: https://git.io/Jer11
fendor has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #73410 → vulnix: 1.8.2 -> 1.9.1 → https://git.io/Jer18
<{^_^}> [nixpkgs] @jonringer pushed commit from @ckauhaus to master « vulnix: 1.8.2 -> 1.9.1 »: https://git.io/Jer19
jgt1 has joined #nixos
joshuagl has quit [Quit: Textual IRC Client: www.textualapp.com]
mariel__ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #73371 → celluloid: 0.17 -> 0.18 → https://git.io/JerRN
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/Jer1F
mexisme has joined #nixos
<exfalso> i'm completely dumbfounded by a bug. nix-daemon SIGKILLs certain users' shells when they invoke nix-env -i, but only those users. I tried with a completely fresh NixOS installation, and can reproduce the kill. The only thing that seems to affect whether the kill happens.. is the *name* of the user. I could reproduce with a user named 'c'. I straced both nix-env and nix-daemon and it seems the kill happens
<exfalso> right after nix-env instructs nix-daemon to build the user-environment derivation. Does anyone recognize any of this?
<exarkun> does nix-copy-closure support resuming interrupted transfers? doesn't seem to. does `nix copy` or something else?
rossabaker has joined #nixos
<exarkun> failed to download 5cnbq72lgp7n618wxxf8n2n85n6vgdsv-raspberrypi-kernel_1.20180619-1.tar.gz to my local network about five times already
<exarkun> would be really nice to have something that knows how to resume from where it was interrupted
<{^_^}> [nixpkgs] @jonringer merged pull request #73333 → davmail: 5.2.0 -> 5.4.0 → https://git.io/JerTn
<{^_^}> [nixpkgs] @jonringer pushed commit from @fadenb to master « davmail: 5.2.0 -> 5.4.0 »: https://git.io/JerMe
Ariakenom has joined #nixos
mexisme has quit [Ping timeout: 250 seconds]
ng0 has joined #nixos
drakonis_ has joined #nixos
<rossabaker> Hi, all. I'm trying to install on a laptop with an Intel AX200 wireless card, which requires a >= 5.1 kernel.
<rossabaker> I tried to create an ISO from installation-cd-minimal-new-kernel.nix: https://gist.github.com/rossabaker/258f87ca84451d1baa543a816866396e
<rossabaker> I also tried setting `boot.kernelPackages = pkgs.linuxPackages_5_3;`
drakonis_ has quit [Read error: Connection reset by peer]
alexherbo2 is now known as alex```
<rossabaker> Either way, my ISO still boots to a 4.x kernel, so I have no network, and the installation fails.
<rossabaker> Is there a different way to get an installer with a newer kernel?
<{^_^}> [nixpkgs] @jonringer merged pull request #73363 → libinput-gestures: Add coreutils to $PATH → https://git.io/Jer8X
<{^_^}> [nixpkgs] @jonringer pushed commit from @sgraf812 to master « libinput-gestures: Add coreutils to $PATH »: https://git.io/JerMO
<{^_^}> [nixpkgs] @jonringer merged pull request #73351 → kubernetes-helm: 2.15.1 -> 3.0.0 → https://git.io/JermE
<{^_^}> [nixpkgs] @jonringer pushed commit from @saschagrunert to master « kubernetes-helm: 2.15.1 -> 3.0.0 »: https://git.io/JerMs
<{^_^}> [nixpkgs] @jonringer merged pull request #73406 → fetchgitPrivate: Remove fetcher → https://git.io/JerXf
<{^_^}> [nixpkgs] @jonringer pushed commit from @adisbladis to master « fetchgitPrivate: Remove fetcher »: https://git.io/JerMR
fendor_ has joined #nixos
lassulus has joined #nixos
<{^_^}> [nixpkgs] @primeos merged pull request #73397 → [19.09] signal-desktop: 1.27.4 -> 1.28.0 (backport) → https://git.io/Jer6h
<{^_^}> [nixpkgs] @primeos pushed 2 commits to release-19.09: https://git.io/JerMw
drakonis_ has joined #nixos
gxt_ has quit [Ping timeout: 260 seconds]
Fare has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #73403 → mattermost: fix path in desktop file → https://git.io/JerP4
<{^_^}> [nixpkgs] @jonringer pushed commit from @kylesferrazza to master « mattermost: fix path in desktop file »: https://git.io/JerMy
<{^_^}> [nixpkgs] @Mic92 merged pull request #73280 → fix grafana smtp enable typo → https://git.io/JewXV
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JerM5
ckauhaus has joined #nixos
texasmynsted has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #73311 → jazzy: 0.11.2 -> 0.12.0 → https://git.io/JewNr
<{^_^}> [nixpkgs] @jonringer pushed commit from Lily Ballard to master « jazzy: 0.11.2 -> 0.12.0 »: https://git.io/JerMp
<texasmynsted> so no nix for macos mojave yet right?
Jackneilll has quit [Remote host closed the connection]
<DigitalKiwi> i thought it worked on mojave
<DigitalKiwi> do you mean catalina?
<{^_^}> nix#2925 (by mroi, 23 weeks ago, open): /nix will not be writable on macOS Catalina
<{^_^}> [nixpkgs] @Mic92 pushed commit from @PsyanticY to release-19.09 « nixos/grafana: fix smtp enable typo »: https://git.io/JerDv
<rossabaker> My teammates are running it on Mojave, and I'm running it on Catalina, following some tips from the above.
smatting has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @c0bw3b merged pull request #72212 → openrct2: 0.2.3 -> 0.2.4 → https://git.io/JeurO
<{^_^}> [nixpkgs] @c0bw3b pushed 2 commits to master: https://git.io/JerDm
<texasmynsted> does not work for me
<texasmynsted> hmm
<{^_^}> [nixpkgs] @gazally opened pull request #73411 → nixosTests.yggdrasil: port to python → https://git.io/JerDY
<texasmynsted> I even tried a source install
mexisme has joined #nixos
cosimone has quit [Ping timeout: 265 seconds]
<texasmynsted> okay going to try binary install again
<texasmynsted> error: cannot connect to daemon at '/nix/var/nix/daemon-socket/socket': No such file or directory
<texasmynsted> /var/folders/p4/vt03sfnj1p9_49gc0nnjk0n40000gn/T/nix-binary-tarball-unpack.XXXXXXXXXX.2Z0bjB02/unpack/nix-2.3.1-x86_64-darwin/install: unable to register valid paths
<texasmynsted> oops
<texasmynsted> hmm nope
<texasmynsted> warning: unknown setting 'signed-binary-caches'
<texasmynsted> and same errors
* texasmynsted shrug
<hlolli_> sudo chmod -R $USER /nix
<hlolli_> should help the deamon error on cataline
<texasmynsted> I did that
<hlolli_> ok :=)
kyren has quit [Quit: ZNC 1.7.4 - https://znc.in]
MmeQuignon has quit [Ping timeout: 265 seconds]
<texasmynsted> It is set to mmynsted wheel, and 0755
<hlolli_> did you make a mount /run and /nix?
<hlolli_> ok, should be enough
<hlolli_> can you restart the deamon?
<texasmynsted> I removed the /nix. Then I created it with mkdir -m 0755, then I chown mmynsted /nix
<texasmynsted> then I 'sh <(curl https://nixos.org/nix/install) --no-daemon'
<texasmynsted> maybe single user install does not work on mojave?
kyren has joined #nixos
<clever> texasmynsted: single-user should be simpler
<hlolli_> just to understand, you are able to install nix and call the nix executeable?
Thra11_ has quit [Ping timeout: 276 seconds]
<hlolli_> where you encounter the daemon-socket error?
<texasmynsted> no
<hlolli_> ah, ok
<clever> texasmynsted: how did the last install fail, when you already owned /nix
aveltras has joined #nixos
<texasmynsted> here I will remove nix, then start over and copy to gist
<texasmynsted> error: cannot connect to daemon at '/nix/var/nix/daemon-socket/socket': No such file or directory
<hlolli_> how can you mkdir on /nix when catalina has a write protection?
<clever> is $NIX_REMOTE set ?
<{^_^}> [nixpkgs] @fadenb opened pull request #73413 → [19.09] davmail: 5.2.0 -> 5.4.0 → https://git.io/JerDR
<hlolli_> you should probably use the mount hack, I'll try to find where I found how to do it
<cransom> https://gist.github.com/cransom/e8016b5543970ce07fdd376ae98fff5b#gistcomment-3049992 is one method. you dont' need to run the script but it's fairly easy to follow
<cransom> (for catalina install, that is)
<texasmynsted> yes $NIX_REMOTE is 'deamon'
<hlolli_> looks good ^ can't find it myself, but this is what I did
<clever> texasmynsted: you must `unset NIX_REMOTE`
<{^_^}> [nixpkgs] @jonringer merged pull request #73267 → mariadb: 10.3.18 -> 10.3.20 → https://git.io/Jewaw
<{^_^}> [nixpkgs] @jonringer pushed commit from @aanderse to master « mariadb: 10.3.18 -> 10.3.20 »: https://git.io/JerDV
<clever> texasmynsted: thats telling the nix installer to talk to nix-daemon, which doesnt exist
<texasmynsted> hmm. I wonder how that got set
<clever> the previous multi-user install sets that
<texasmynsted> okay
<texasmynsted> Thank you. That seemed to work. (Many warning: unknown setting 'signed-binary-caches')
<clever> your old nix.conf is still there
sondr3 has joined #nixos
alex``` has quit [Ping timeout: 268 seconds]
alex```7 has joined #nixos
<texasmynsted> so just delete it?
<sondr3> anyone here using (n)vim? How do you configure your plugins? vim-plug, VAM or with `pkgs.Vimplugins`?
drakonis_ has quit [Read error: Connection reset by peer]
<texasmynsted> where is nix.conf
<texasmynsted> Not finding it
<clever> texasmynsted: /etc/nix/nix.conf
<{^_^}> [nixpkgs] @jonringer merged pull request #73413 → [19.09] davmail: 5.2.0 -> 5.4.0 → https://git.io/JerDR
<{^_^}> [nixpkgs] @jonringer pushed commit from @fadenb to release-19.09 « davmail: 5.2.0 -> 5.4.0 »: https://git.io/JerDS
<texasmynsted> sigh. I guess that would be a good place for a multi-user isntall
<texasmynsted> should I delete it and then re-install?
<clever> its probably fine
<texasmynsted> okay
<texasmynsted> Thanks again
frederic_chopwn[ has quit [Remote host closed the connection]
babariviere[m] has quit [Remote host closed the connection]
jak[m]1 has quit [Remote host closed the connection]
Brio[m] has quit [Remote host closed the connection]
ZD[m] has quit [Remote host closed the connection]
LinuXit has quit [Remote host closed the connection]
bendlas has quit [Write error: Connection reset by peer]
lel[m] has quit [Remote host closed the connection]
midi[m] has quit [Write error: Connection reset by peer]
otini has quit [Read error: Connection reset by peer]
ejpcmac has quit [Write error: Connection reset by peer]
BrightOne[m] has quit [Write error: Connection reset by peer]
colemickens has quit [Write error: Connection reset by peer]
is0x3F has quit [Read error: Connection reset by peer]
HappyEnt[m] has quit [Remote host closed the connection]
escaP[m] has quit [Write error: Connection reset by peer]
segfault[m] has quit [Write error: Connection reset by peer]
arcnmx has quit [Write error: Connection reset by peer]
attero has quit [Write error: Connection reset by peer]
arturo[m] has quit [Write error: Connection reset by peer]
Nyanloutre[m] has quit [Write error: Connection reset by peer]
zer0xp[m] has quit [Read error: Connection reset by peer]
talvdav[m] has quit [Remote host closed the connection]
TravisRt2botio[m has quit [Write error: Connection reset by peer]
bohan[m] has quit [Write error: Connection reset by peer]
nilsirl[m] has quit [Read error: Connection reset by peer]
tokudan[m] has quit [Remote host closed the connection]
DenisLehmann[m] has quit [Remote host closed the connection]
gudea[m] has quit [Remote host closed the connection]
timokau[m] has quit [Write error: Connection reset by peer]
Yakulu[m] has quit [Read error: Connection reset by peer]
ma27[m] has quit [Read error: Connection reset by peer]
Gopal[m] has quit [Remote host closed the connection]
rihardsk[m] has quit [Read error: Connection reset by peer]
imj[m] has quit [Read error: Connection reset by peer]
coniferous-cube[ has quit [Remote host closed the connection]
phyfey[m] has quit [Read error: Connection reset by peer]
MilkManzJourDadd has quit [Write error: Connection reset by peer]
sonercirit[m] has quit [Read error: Connection reset by peer]
MayeulC_backup has quit [Write error: Connection reset by peer]
truh[m] has quit [Write error: Connection reset by peer]
GerdFlaig[m] has quit [Remote host closed the connection]
hiroshi[m] has quit [Remote host closed the connection]
bachp has quit [Write error: Connection reset by peer]
philipp[m] has quit [Write error: Connection reset by peer]
deluvi[m] has quit [Write error: Connection reset by peer]
tobim[m] has quit [Remote host closed the connection]
ronny has quit [Write error: Connection reset by peer]
macerbi[m]1 has quit [Write error: Connection reset by peer]
spacekitteh[m] has quit [Write error: Connection reset by peer]
provessor[m] has quit [Write error: Connection reset by peer]
tilpner2 has quit [Write error: Connection reset by peer]
manveru[m] has quit [Remote host closed the connection]
<qyliss> ahh, Matrix
<clever> and we got matrixed again
<fifeefo> Somebody took the red pill, bad move.
Thra11_ has joined #nixos
lovesegfault has joined #nixos
MmeQuignon has joined #nixos
skrzyp has joined #nixos
fendor_ has quit [Ping timeout: 250 seconds]
jgt1 has quit [Ping timeout: 240 seconds]
tbenst has joined #nixos
jhoff has quit [Ping timeout: 260 seconds]
<tbenst> apologies for the dumb question: how can I find the .drv file for a given store path? I know it says during build but there must be another way?
<gchristensen> nix-store --query --deriver /nix/store/715lcljfyp8grxlmaf51pn0n3ml3dwgg-bash-interactive-4.4-p23
<tbenst> gchristensen, amazing! thx!
<gchristensen> yep!
<gchristensen> (not a dumb question)
<Twey> -qd for short :)
<tbenst> *thumbs up*
<Twey> nix-store --query --binding (-qb) is one that it took me far too long to discover…
<fifeefo> When a Nix package is installed on a non-NixOS distro, what command can be run to list that package's installed files (paths)?
<clever> fifeefo: i usually just build it with nix-build, then ls that directory
<Twey> fifeefo: ls -R /nix/store/*-package?
<Twey> fifeefo: What do you mean by ‘installed’ exactly? With `nix-env`? If so it's a symlink: ls -R $(readlink $(type -P package-command))/..
<fifeefo> Twey: ew :-( There must be better tooling that that, surely nix knows where it installed stuff without searching the store. :P
<clever> fifeefo: nix-build
<fifeefo> Tewy: Yes, nix-env --install
<Twey> fifeefo: Ah, then just look at that symlink
drakonis_ has joined #nixos
shibboleth has joined #nixos
<tbenst> so here's a weird question. I just pulled the latest nixpkgs and suddenly my build platform in various .drv changed from x86_64-linux to i686-linux when using nixos-rebuild
<tbenst> and they fail
<rossabaker> Is the best way to install NixOS from a 5.x kernel to use another distro and lustrate? I'm surprised `boot.kernelPackages` isn't doing the trick.
<Twey> fifeefo: In Nix every package is installed under its own prefix. So you can find all the files installed by a package just by looking at that package's install prefix.
<clever> tbenst: do you have 32bit dri or pulse enabled?
<clever> rossabaker: you can get a 5.x iso image
<fifeefo> But where is the symlink? When I install an executable I know to look in ~/.nix-profile/bin, but package names that are not executables?
<clever> fifeefo: run `nix-build '<nixpkgs>' -A packagename`
<tbenst> clever, yes I have `driSupport32Bit = true` in hardware.opengl which I believe is required for nvidia-docker
<clever> 2019-11-07 01:13:05< clever> rotaerk: https://hydra.nixos.org/build/105246685
<clever> 2019-11-07 01:13:37< clever> rotaerk: that is the linux 5.3 iso image, for the current build of nixos-unstable
<clever> rossabaker: ^^
<clever> tbenst: that will build all of your opengl drivers in i686-linux mode
<fifeefo> clever: Will that build something? I don't need it built, it's already installed in the store with nix-env --install.
<rossabaker> clever: Ah, nice. I'll give that a shot. I tried following https://nixos.wiki/wiki/Creating_a_NixOS_live_CD, and I could see it depending on a 5.3 package, but it still booted to 4.19.something.
<clever> fifeefo: if its already built, it wont build it again
<Twey> fifeefo: There's also `nix-env -q --out-path <name>` if you really want to use the package name.
<fifeefo> Thanks, I'll try both of those ideas.
<{^_^}> [nixpkgs] @Ericson2314 pushed to staging-next « treewide: CAML_LD_LIBRARY_PATH may be undefined »: https://git.io/Jerys
<Twey> fifeefo: `nix-env` basically does two things (over `nix-build`): goes searching the store for packages with the given name (unless you use -A, which is faster and better) and manages your user profile (the tree of symlinks under ~/.nix-profile)
jgt1 has joined #nixos
<fifeefo> Twey: I'd hppily use the prefix, if I knew it. But all I know is the package name that nix-env installed. Of course I could rummage around in the store looking for related paths, but that's not tooling, that's rummaging around. :P
<clever> fifeefo: what exact nix-env command did you use to install the package?
<Twey> s/the store/nixpkgs/
<fifeefo> clever: nix-env --install packageName
<clever> fifeefo: and what did you use for packageName?
alex```77 has joined #nixos
alex```7 has quit [Ping timeout: 268 seconds]
<fifeefo> clever: the output of nix search packageName, which confirmed that my guess of packageName was right.
justan0theruser has joined #nixos
<clever> fifeefo: and what package was that?
<Twey> Does `man nix-env` lie? It says (about --attr-path/-P): Print the attribute path of the derivation, which can be used to unambiguously select it using the --attr option available in commands that install derivations like nix-env --install.
<fifeefo> synapse, the Matrix homeserver, but the question is generic, not specific to that one.
<Twey> But if I say `nix-env -qP xmodmap` I only get `6 xmodmap-1.0.10`
<clever> fifeefo: nix-build '<nixpkgs>' -A synapse && ls -lh result/
<fifeefo> clever: Ta, trying
<{^_^}> [nixpkgs] @c0bw3b merged pull request #72196 → plex: 1.18.0.1944 -> 1.18.1.1973 → https://git.io/JeuuS
<tbenst> clever, ah I see. As shown by nix-diff, something changed in master, previously xorgproto had `x86_64-linux`, now has `i686-linux`, but in any case the error I'm seeing is the same as https://github.com/NixOS/nixpkgs/issues/73319#issuecomment-553211664
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @bachp to master « plex: 1.18.0.1944 -> 1.18.1.1973 »: https://git.io/Jeryc
<Twey> I don't know what that number is but it doesn't look like an attribute path
<tilpner> fifeefo: cd $(nix-build --no-out-link '<nixpkgs>' -A matrix-synapse)
Heirlung has quit [Ping timeout: 250 seconds]
<Twey> Works with `nix-env -qaP xmodmap` though.
<tbenst> meson.build:21:0: ERROR: Unknown compiler(s): [['/nix/store/38rh09iclvs97fisbgy8fg6wxr33ijr1-gcc-wrapper-8.3.0/bin/cc'
<clever> tbenst: ah, ive noticed the exact same error on my hydra
<tbenst> fails on building xorgproto
<tilpner> fifeefo: synapse is not a Matrix HS
<clever> tbenst: i have my hydra configured to pre-build my nixos config against the latest nixpkgs
<clever> so i can see breakage before i try to upgrade
<tbenst> clever, clever
<clever> > synapse.meta.description
<{^_^}> "Semantic launcher to start applications and find relevant files"
justanotheruser has quit [Ping timeout: 268 seconds]
<tbenst> what's the latest nixpkgs that isn't broken for you?
<clever> > synapse.meta.longDescription
<{^_^}> "Semantic launcher written in Vala that you can use to start applications\nas well as find and access relevant documents and files by making use of\nthe Zeitgeist engine\n"
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<exarkun> is there a nix-copy-closure that knows how to resume interrupted transfers
lovesegfault has quit [Read error: Connection timed out]
<gchristensen> don't think so, exarkun
<exarkun> How do I use curl or rsync to put something into /nix/store, then
lovesegfault has joined #nixos
<clever> exarkun: create a local directory, containing the .nar.xz and .narinfo files, then use nix copy
Heirlung has joined #nixos
<Twey> Does `nix copy` do resume?
<exarkun> Twey: no
<Twey> Oh, `nix copy` locally on the other side I guess
<exarkun> How do I get the .nar.xz and .narinfo files?
shibboleth has quit [Quit: shibboleth]
<pie_> i guess asking nicely is an option but i dont think thats what you want
<exarkun> oh, nix copy, I guess
<clever> exarkun: /nix/store/foo-name maps to https://cache.nixos.org/foo.narinfo
<clever> exarkun: curl that, and look inside for the path to the .nar.xz
mexisme has quit [Ping timeout: 246 seconds]
<exarkun> if cache.nixos.org doesn't have it?
<clever> then its not in the cache
<fifeefo> tilpner: Synapse is the Matrix reference homeserver, although because of name collisions its package name in nixpkgs is matrix-synapse.
* exarkun starts at the beginning
<fifeefo> clever: That worked fine, thankees.
<exarkun> trying to update an rpi3 install, it wants to build /nix/store/5cnbq72lgp7n618wxxf8n2n85n6vgdsv-raspberrypi-kernel_1.20180619-1.tar.gz which requires downloading https://codeload.github.com/raspberrypi/linux/tar.gz/raspberrypi-kernel_1.20180619-1
<exarkun> I tried downloading that archive 7 times, it failed several hundred megs in every time
<exarkun> so I can't finish the rpi3 update
<exarkun> what should I do
<tilpner> fifeefo: I was just correcting "fifeefo | synapse, the Matrix homeserver"
<Twey> exarkun: Rather than `nix-copy-closure`, how about just downloading the file with rsync or curl or your favourite resumable download manager, then using `nix-store --add` to manually put the file in the store?
<tilpner> In case you expected something else to be there
<clever> Twey: nix-store --add doesnt work with anything that has dependencies
<exarkun> Twey: aha!
<Twey> clever: From the sound of it, they just want to get this particular source file so the build can proceed
<exarkun> a fixed output source archive derivation shouldn't have any dependencies, right?
<fifeefo> tilpner: Ah righto, cheers. But the question was generic, any package, including whatever an unadorned "synapse" refers to.
<exarkun> I'm downloading it with rsync now, I'll try `nix-store --add` when it's done, thanks
<clever> nix copy --to file:///tmp/example2 /nix/store/q9yajgszjnvhi6n5083i415y196qmhgj-synapse-0.2.99.4
<Twey> clever: They didn't actually say they wanted to get anything from the cache, and I guess `nix-copy-closure` was an X-for-Y
<clever> exarkun: if you flip this around (change --to into --from), it will copy from a directory, that contains narinfo and nar.xz files
<clever> exarkun: you can then use whatever tools you want, to mirror the files out of https://cache.nixos.org/
<exarkun> clever: I tried that and it got about 750 out of 760 megs in and then seemed to hang mysteriously
<Twey> exarkun: Sometimes `nix copy` is very slow… I'm not sure why
<Twey> exarkun: Might be worth just leaving it for a bit
<exarkun> okay, I'll let that run a while and see
<exarkun> about 2 seconds to do 753 megs
<exarkun> oh yea it's 100% cpu now
<clever> exarkun: its probably uncompressing
fragamus has joined #nixos
fragamus has quit [Client Quit]
<{^_^}> [nixpkgs] @kolaente opened pull request #73415 → gitea: 1.9.5 -> 1.9.6 → https://git.io/Jeryw
srl295 has joined #nixos
Fare has quit [Ping timeout: 240 seconds]
Ariakenom_ has joined #nixos
Ariakenom_ has quit [Read error: Connection reset by peer]
fragamus has joined #nixos
<{^_^}> [nixpkgs] @kolaente opened pull request #73416 → gitea: 1.9.5 -> 1.10.0 → https://git.io/JeryP
Ariakenom_ has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b merged pull request #70614 → intecture-cli: use openssl 1.0.2 → https://git.io/JeC9M
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @Taneb to master « intecture-cli: use openssl 1.0.2 »: https://git.io/JeryX
Ariakenom has quit [Ping timeout: 268 seconds]
pareidolia has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @Taneb to release-19.09 « intecture-cli: use openssl 1.0.2 »: https://git.io/JeryM
Soo_Slow has joined #nixos
kenran has joined #nixos
fendor_ has joined #nixos
fendor_ has quit [Client Quit]
fendor_ has joined #nixos
fendor_ has quit [Remote host closed the connection]
rossabaker has quit [Ping timeout: 276 seconds]
lordcirth has joined #nixos
pamplemousse has quit [Ping timeout: 268 seconds]
pamplemousse has joined #nixos
pareidolia_ has joined #nixos
pareidolia has quit [Ping timeout: 250 seconds]
fragamus has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
psyanticy has quit [Quit: Connection closed for inactivity]
rossabaker has joined #nixos
Fare has joined #nixos
magnetophon has joined #nixos
fragamus has joined #nixos
fragamus has quit [Client Quit]
fragamus has joined #nixos
kleisli has joined #nixos
<kim0> I've tried learning more about nix packaging .. I find the entry barrier, still too high! Can anyone recommend an easy to follow tutorial
evanjs has joined #nixos
<lordcirth> kim0, could you specify what you are trying to package? Eg a Go module, program with ./configure && make, etc?
<tbenst> kim0: honestly, I'd recommend cloning nixpkgs & reading some derivations. Use the manuals to lookup things you don't understand
<fifeefo> kim0: Still trying to find a good workflow myself. Maybe we need a rosettacode type of site, showing equivalents to other package manager workflows.
<kim0> I just want to feel more comfortable with nix .. I'm not looking to package something specific
<fifeefo> Most people only use half a dozen or so pkg manager commands in their daily workflow, like package discovery by name (that's easy since "search" is a nix subcommand), discovery by regex on description, discovery by a known component (eg. executable or lib). And then the install command, a command to find out what version is installed and what versions are available, a file lister for an installed package, and not a lot
<fifeefo> else.
<fifeefo> A bit surprising that those aren't on the 1st page of the manual. :P
tmplt has joined #nixos
<fifeefo> Speaking of manual, nix itself doesn't have a man page.
MmeQuignon has quit [Ping timeout: 252 seconds]
lewo has joined #nixos
<tmplt> Any idea what derivation yields /nix/store/<hash>-gcc-8.3.0-lib? Can I get it from stdenv.cc somehow?
<symphorien> > stdenv.cc.cc.lib
<{^_^}> "<derivation /nix/store/mmk9mnh8vr8qgawa7y2wmy7zhgnwpi4s-gcc-8.3.0.drv>"
<tmplt> that derivation lacks the -lib suffix, however
jumper149 has joined #nixos
<clever> > "${stdenv.cc.cc.lib}"
<{^_^}> "/nix/store/1220kf6lvlswh677wvizp9p51c6rcp3x-gcc-8.3.0-lib"
<lordcirth> Why is it .cc.cc ?
<clever> lordcirth: stdenv.cc is cc-wrapper
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 16 commits to nixos-unstable-small: https://git.io/JerSB
<tmplt> clever: that's weird. Why is the -lib appended there?
<clever> tmplt: multiple output derivations
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/b64034e1d25 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<jumper149> Hi, im trying to write a derivation and in my builder I call gcc with -I and -L to include library paths but I dont know how to give the right paths
<clever> jumper149: if you add something to buildInputs and use the stdenv, it will handle -L and -I for you
<{^_^}> [nixpkgs] @teto merged pull request #73381 → luaPackages.luasystem: fix build on darwin → https://git.io/Jerge
<{^_^}> [nixpkgs] @teto pushed commit from @marsam to master « luaPackages.luasystem: fix build on darwin »: https://git.io/JerSV
<jumper149> I guess I'm not using stdenv then because Im getting include errors from gcc
<clever> jumper149: use buildCommand, rather then builder
worldofpeace has joined #nixos
chloekek_ has joined #nixos
<jumper149> is there a manual to mkDerivation where I can check out all the options?
<clever> jumper149: it should be in the nixpkgs manual
<lovesegfault> Goddamn, only one job failing
kenran has quit [Ping timeout: 246 seconds]
aveltras has quit [Quit: Connection closed for inactivity]
zupo has joined #nixos
mexisme has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #73101 → luaPackages.pulseaudio: 0.1 -> 0.2 → https://git.io/JeV2N
<{^_^}> [nixpkgs] @teto pushed commit from @doronbehar to master « luaPackages.pulseaudio: 0.1 -> 0.2 »: https://git.io/JerSN
<worldofpeace> lovesegfault: bisecting the issue now
<{^_^}> #73417 (by worldofpeace, 3 minutes ago, open): meson builds failing on i686-linux
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 5 commits to nixos-19.09-small: https://git.io/JerSh
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/83c85b548f5 (from 70 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<{^_^}> [nixpkgs] @jtojnar merged pull request #70690 → gstreamer 1.16.1 → https://git.io/JeWUc
<{^_^}> [nixpkgs] @jtojnar pushed 16 commits to staging: https://git.io/Jer9m
tmplt has quit [Quit: leaving]
<{^_^}> [nixpkgs] @teto merged pull request #72919 → protocol: 20171226 -> 2019-03-28 → https://git.io/Jeauw
<{^_^}> [nixpkgs] @teto pushed commit from @JohnAZoidberg to master « protocol: 20171226 -> 2019-03-28 »: https://git.io/Jer9s
inkbottle has joined #nixos
ckauhaus has quit [Quit: WeeChat 2.6]
drakonis_ has quit [Ping timeout: 252 seconds]
fragamus has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<jumper149> I got my derivation working now, but Im not sure why^^ the program consists of a python script and other stuff but python is not given anywhere as a dependency. Is it only working because python is in my users path?
<clever> jumper149: probably, thats why i never install things like python, so such programs fail during development
<jumper149> oh I just checked python isn't even in my path
<jumper149> why is it working then?
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71057 → renderdoc: 1.4 -> 1.5 → https://git.io/JelFD
<{^_^}> [nixpkgs] @c0bw3b pushed 2 commits to master: https://git.io/Jer9B
<fifeefo> Is there an alternative way of specifying the argument to nix-build '<nixpkgs>' without the angle brackets? It's a bit unfriendly in shell scripts, I'd have to treat it specially.
<clever> jumper149: read the generated script that your running, what does it do?
<clever> fifeefo: as long as you quote it, things should be fine, shellcheck will complain any time you dont quote things like that
<{^_^}> [nixpkgs] @jitwit opened pull request #73419 → chez-matchable: init at 1.0 → https://git.io/Jer9u
<fifeefo> clever: Passing quoted fields through shell scripts is messy. It can be done, but best avoided. I guess that command was designed by a non-Unix person.
work_ has joined #nixos
<jumper149> clever: It is a python script with the HashBang: #!/usr/bin/env python
<clever> fifeefo: its based on things line #include <foo.h> in c/c++
<fifeefo> Eeeek.
<clever> jumper149: does it still look like that after you nix-build it? read the file under result
<jumper149> #!/usr/bin/env python3 to be exact. yes thats in the result path
<clever> jumper149: what does `type python3` report?
<jumper149> i get the nix-store path
<clever> jumper149: then your in a nix-shell?
<jumper149> but in another shell it doesnt find anyting
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @jansol to release-19.09 « renderdoc: 1.4 -> 1.5 »: https://git.io/Jer9w
<jumper149> no Im in bash both times
<clever> jumper149: what direnv?
<jumper149> clever: what do you mean with direnv? somewhere in my homedirectory
<{^_^}> [nixpkgs] @c0bw3b closed pull request #71961 → renderdoc: 1.4 -> 1.5 (backport) → https://git.io/Je07g
<clever> jumper149: what does `ps` report in the shell that things work in?
<jumper149> clever: got it, im running ranger which is written in python and run bash from there
<clever> jumper149: that will do it
<clever> jumper149: add python3 to your buildInputs and see if the output #! changes
pamplemousse has quit [Ping timeout: 250 seconds]
<jumper149> it didn't change it and in my normal bash shell it's not working
<clever> jumper149: can you pastebin your nix file?
drakonis_ has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
civodul has joined #nixos
bvdw has joined #nixos
<jumper149> im really not sure about the buildCommand part but I needed to pass PREFIX explicitly because there is no configure script
<clever> jumper149: try deleting the entire buildCommand, and instead do installPhase = "make install PREFIX=$out";
drakonis has joined #nixos
<lovesegfault> Thanks worldofpeace!
<jumper149> that worked, ty
<jumper149> now i have the nix/store path in the python script
drakonis_ has quit [Ping timeout: 246 seconds]
rossabaker has quit [Ping timeout: 245 seconds]
drakonis_ has joined #nixos
drakonis_ has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos
MmeQuignon has joined #nixos
drakonis has quit [Ping timeout: 245 seconds]
<clever> jumper149: there is a fixup phase that fixes things, and buildCommand bypasses that
<{^_^}> [nixpkgs] @tadeokondrak opened pull request #73421 → discord-canary: 0.0.97 -> 0.0.98 → https://git.io/Jer95
drakonis_ has quit [Ping timeout: 250 seconds]
<jumper149> clever: yes ty, I really should read chapter 6 (stdenv) of the nixpkgs manual thoroughly. It seems like everything is explained there and i couldve avoided a lot of trouble!
<clever> jumper149: you probably also want to use fetchFromGitHub, rather then fetchurl
<jumper149> clever: good point I will fix that
halfbit has joined #nixos
mexisme has quit [Ping timeout: 252 seconds]
davean has joined #nixos
CMCDragonkai has quit [Quit: Connection closed for inactivity]
Jackneill has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed to structured-attrs « cargo: fix build »: https://git.io/JerHZ
<{^_^}> [nixpkgs] @c0bw3b merged pull request #70604 → asciidoctorj init at 2.1.0 → https://git.io/JeCS1
<{^_^}> [nixpkgs] @c0bw3b pushed 2 commits to master: https://git.io/JerHn
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #73422 → dragon-drop: 1.1.0 -> 1.1.1 → https://git.io/JerHC
rossabaker has joined #nixos
philr has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed to staging « meson: fix patch URL »: https://git.io/JerH4
Jackneill has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jtojnar opened pull request #73423 → meson: fix unknown compiler error → https://git.io/JerHB
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 6 commits to nixpkgs-19.09-darwin: https://git.io/JerHz
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #73424 → yq: 2.8.1 -> 2.9.2 → https://git.io/JerH2
<{^_^}> [nixpkgs] @herberteuler opened pull request #73425 → mathematica: fix version issue with zlib → https://git.io/JerHr
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/872b6a2f50e (from 62 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
mexisme has joined #nixos
selfsymmetric-pa has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
rossabaker has quit [Ping timeout: 268 seconds]
leo_ has quit [Remote host closed the connection]
ambro718 has quit [Ping timeout: 265 seconds]
ym555 has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pamplemousse has joined #nixos
Ariakenom_ has quit [Quit: Leaving]
lord| has joined #nixos
pareidolia_ has quit [Quit: ZNC 1.7.3 - https://znc.in]
<{^_^}> [nix] @Ma27 opened pull request #3228 → Fix attr path to nixpkgs flake in flake template → https://git.io/JerQs
<{^_^}> [nixpkgs] @veprbl merged pull request #73425 → mathematica: fix version issue with zlib → https://git.io/JerHr
<{^_^}> [nixpkgs] @veprbl pushed commit from @herberteuler to master « mathematica: fix version issue with zlib (#73425) »: https://git.io/JerQG
<raboof> when I add `programs.gnupg.agent.enable = true` to /etc/nixos/configuration.nix and switch, should the right gpg-agent be automatically started?
<{^_^}> [nixpkgs] @jtojnar merged pull request #73423 → meson: fix unknown compiler error → https://git.io/JerHB
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JerQW
ym555 has quit [Quit: leaving...]
abathur has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed 46 commits to staging-next: https://git.io/JerQ8
<clever> raboof: some stuff like that, may require logging out and back in
philr has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @jtojnar pushed 329 commits to staging: https://git.io/JerQR
pareidolia has joined #nixos
<{^_^}> [nixpkgs] @equirosa opened pull request #73426 → signal-desktop: 1.27.4 -> 1.28.0 → https://git.io/JerQw
growpotkin has joined #nixos
kim0 has quit [Quit: Connection closed for inactivity]
Fare has quit [Ping timeout: 245 seconds]
selfsymmetric-pa has quit [Remote host closed the connection]
Fare has joined #nixos
lovesegfault has quit [Quit: WeeChat 2.6]
tokudan has joined #nixos
<{^_^}> [nixpkgs] @JohnAZoidberg merged pull request #73158 → python3Packages.geopy: 1.20 -> unstable-2019-11-10 → https://git.io/JeVNH
<{^_^}> [nixpkgs] @JohnAZoidberg pushed 3 commits to master: https://git.io/Jer7G
zeta_0 has joined #nixos
alex```77 has quit [Ping timeout: 276 seconds]
smatting has joined #nixos
<zeta_0> in terms of the nix language, what is the difference between `package` and `derivation` ?
<{^_^}> [nixpkgs] @nixos-channel-bot pushed 24 commits to nixos-unstable-small: https://git.io/Jer78
<{^_^}> [nixpkgs] @petabyteboy opened pull request #73427 → Revert "python37Packages.pyspf: 2.0.12 -> 2.0.13" → https://git.io/Jer74
<{^_^}> [nixpkgs] @JohnAZoidberg merged pull request #60182 → grip-0.8: indexed grip → https://git.io/fjsmw
<{^_^}> [nixpkgs] @JohnAZoidberg pushed 2 commits to master: https://git.io/Jer7R
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/df7cdb37ce9 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
CMCDragonkai has joined #nixos
<CMCDragonkai> Hi, the ipxe build in nixpkgs does not work with HTTPS URLs.
<CMCDragonkai> If I change to chain into HTTP URLs, it does work
<CMCDragonkai> HTTPS keeps going into 0x3e11618e
<CMCDragonkai> which is apparently a DNS error, but that seems unlikely
work_ has quit [Quit: Connection closed for inactivity]
<CMCDragonkai> given that HTTP URLs work
<CMCDragonkai> but HTTPS doesnt!?
mexisme has quit [Ping timeout: 246 seconds]
worldofpeace has quit [Ping timeout: 250 seconds]
<clever> CMCDragonkai: when ipxe starts, it lists what features its been compiled with, what do you see?
<CMCDragonkai> I'm pretty sure i saw HTTPS
evanjs has quit [Quit: ZNC 1.7.5 - https://znc.in]
<CMCDragonkai> listed there
<CMCDragonkai> I'm just using that ^
<CMCDragonkai> and that has `DOWNLOAD_HTTPS_PROTO` enabled
<CMCDragonkai> perhaps ipxe's CA cert is out of date?
fragamus has joined #nixos
mexisme has joined #nixos
<CMCDragonkai> Funny I don't see that derivation bringing in the OS certs that are distributed with NixOS
<clever> CMCDragonkai: oh, i think it lacks ca certs by default, it only has ca cert hashes
<jumper149> Am I right saying that the tools provided by stdenv (sed, grep, awk, ...) are in buildInputs of the new derivation?
<CMCDragonkai> according to: https://ipxe.org/crypto
<clever> because cers are too big
<CMCDragonkai> ipxe is meant to be bundled with the the ipxeroot cert which is "cross signed" with the moziall public certs?
<clever> jumper149: i believe they are propated in, from stdenv
evanjs has joined #nixos
<CMCDragonkai> so does that mean ipxe is meant to be able to download https things that mozilla supports
<CMCDragonkai> i'm not sure what that sentence means on ipxe's website
<clever> CMCDragonkai: ive primarily used custom certs and the signing built into ipxe
<CMCDragonkai> clever: ... suppose that's true
<CMCDragonkai> clever: how do I get the OS level certs into it?
<clever> CMCDragonkai: let me grab my example...
<CMCDragonkai> clever: Like I want to be able to contact any legitimate HTTPS cert
<CMCDragonkai> clever: Can I use the `cacert` package in Nix?
<clever> CMCDragonkai: line 75 bakes a cert into the build
<clever> CMCDragonkai: line 78 and 79 tell it to embed that cert in, and to trust it
<CMCDragonkai> seems like i could use cacert then?
<clever> CMCDragonkai: the trust flag only embeds the hash of the cert, while embed puts the entire cert file in
<clever> CMCDragonkai: maybe
<CMCDragonkai> clever: what is the difference?
<CMCDragonkai> clever: like what is the effect of only using the hash vs having the entire cert?
<clever> CMCDragonkai: trust is for size-constrained images, like actual NIC boot roms
<clever> CMCDragonkai: you must download the cert at runtime, using one of the ipxe commands
<clever> CMCDragonkai: https://ipxe.org/cmd/certstore
<CMCDragonkai> im in the IPXE debug shell atm
<CMCDragonkai> and that command does not exist
<CMCDragonkai> `certstore`
<clever> This command is available only when the build option CERT_CMD is enabled.
<CMCDragonkai> i'm thinking... that ipxe "by default" is meant to get the ipxe ca cert downloaded during runtime, and the build doesn't actually enable this
<CMCDragonkai> the nixpkgs build in particular
<CMCDragonkai> clever: i see... it seems like an oversight, perhaps a PR to the ipxe.nix derivation to enable this?
<clever> CMCDragonkai: probably
fusion809 has quit [Remote host closed the connection]
<clever> CMCDragonkai: but if people can mitm your ipxe script, your hosed
<CMCDragonkai> well that's why i want use HTTPS
<clever> CMCDragonkai: the example in not-os is signing the ipxe script itself, so the only risk is the ipxe binary
<CMCDragonkai> but i thought it would first easy to do with the public certs
<clever> CMCDragonkai: but how does ipxe get that https url?
<CMCDragonkai> instead of private certs
<CMCDragonkai> I embed it
<CMCDragonkai> my custom ipxe script embeds the https url
<clever> ah
<clever> CMCDragonkai: not-os/ipxe.nix has a full example of private certs and signing the files, rather then the whole http
<CMCDragonkai> clever: why didn't you use overrideAttrs?
<CMCDragonkai> clever: the nixpkgs manual says that's what is meant to be used nowadays
acarrico has quit [Ping timeout: 240 seconds]
<clever> CMCDragonkai: this code predates the creation of overrideAttrs
o1lo01ol1o has quit [Remote host closed the connection]
exfalso has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @nyanloutre opened pull request #73428 → ledger-live-desktop: 1.15.0 -> 1.18.2 → https://git.io/Jer7D
<{^_^}> [nixpkgs] @c0bw3b closed pull request #71784 → python37Packages.magic-wormhole-mailbox-server: 0.3.1 -> 0.4.1 → https://git.io/Je0Tx
fendor has quit [Read error: Connection reset by peer]
jgt1 has quit [Ping timeout: 276 seconds]
<CMCDragonkai> clever: let's hope this works
exfalso has joined #nixos
rossabaker has joined #nixos
pareidolia has quit [Ping timeout: 245 seconds]
<inkbottle> `ssh-add` returns error: "Could not open a connection to your authentication agent", unless I do `eval $(ssh-agent)` before
<infinisil> inkbottle: Did you enable programs.ssh.startAgent?
<infinisil> This should start the agent for you automatically
abathur has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @davidak to master « doc/rl-1909: fix language »: https://git.io/Jer7x
<{^_^}> [nixpkgs] @c0bw3b merged pull request #71516 → Doc: fix language → https://git.io/JeRtv
worldofpeace has joined #nixos
pareidolia has joined #nixos
<{^_^}> [nixpkgs] @c0bw3b pushed commit from @davidak to release-19.09 « doc/rl-1909: fix language »: https://git.io/Jer5f
ddellacosta has quit [Quit: WeeChat 2.2]
cosimone has joined #nixos
<inkbottle> infinisil: OK, thanks
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @rvolosatovs opened pull request #73429 → gofumpt: 2019-07-29 -> 2019-11-11 → https://git.io/Jer5L
<{^_^}> [rfcs] @deliciouslytyped opened pull request #58 → [RFC 0057] Named Ellipses → https://git.io/Jer5q
<{^_^}> [nixpkgs] @rvolosatovs opened pull request #73430 → gotools: 2019-09-05 -> 2019-11-14 → https://git.io/Jer5m
exfalso has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @nixos-channel-bot pushed commit from @jansol to nixos-19.09-small « renderdoc: 1.4 -> 1.5 »: https://git.io/Jer9w
<CMCDragonkai> clever: it didn't work
<CMCDragonkai> clever: I get http://ipxe.org/err/0216eb
<CMCDragonkai> clever: So it seems that the way I setup the certs was invalid, or supplying ca-bundle.crt is not sufficient
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/872b6a2f50e (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
fragamus has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @rvolosatovs opened pull request #73431 → richgo: 0.2.8 -> 0.3.3 → https://git.io/Jer5c
chloekek_ has quit [Ping timeout: 246 seconds]
<CMCDragonkai> If I run `certstat`, I get all the public certs that was embedded though
<inkbottle> infinisil: I did programs.ssh.startAgent = true; and nixos-rebuild switch; but I still have the same error. Should I have to reboot or something?
<clever> inkbottle: try logging out and then logging back in
<infinisil> inkbottle: What does `systemctl --user status ssh-agent` say?
<infinisil> Relogging or `systemctl --user start ssh-agent` might do it
fragamus has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<inkbottle> infinisil: OK, after using the "start" command, the agent is active; but `ssh-add -D` still says "Could not open a connection to your authentication agent"
<infinisil> Ah it probably needs an env var
<inkbottle> So I might try a relogging
jumper149 has quit [Quit: WeeChat 2.6]
fragamus has joined #nixos
drewc has joined #nixos
<infinisil> Yeah
inkbottle has quit [Quit: Konversation terminated!]
inkbottle has joined #nixos
<inkbottle> infinisil: reloggining did it
wildtrees has joined #nixos
<aranea> Hmm, Nix should make it pretty easy to have binaries linked against glibc and musl coexist on the same host, right?
NoctisLabs has joined #nixos
<clever> aranea: yes
<clever> aranea: ive even had arm and x86 binaries co-exist
<aranea> (Background: I'm thinking of migrating to NixOS from a musl-based distro, and while I don't mind going back to glibc for the immediate future, I'd like to work on moving back to musl eventually.)
<aranea> And if I could just work that out one package at a time, that'd be awesome.