worldofpeace changed the topic of #nixos to: NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-inf
linear_cannon has joined #nixos
<matthewcroughan> gchristensen: what do you use on NixOS for proxying stuff? Like ingress?
<matthewcroughan> I'm just getting into traefik and wanting to load balance stuff, but wondering how I could do it.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118700 → dtc: add yaml support and enable tests → https://github.com/NixOS/nixpkgs/pull/118700
<gchristensen> Idon't have that problem very often in my own work, but back when I did nginx was my go-to
<simpson> matthewcroughan: TBH I wouldn't bother. Use nginx or Apache if you need to combine a dynamic site with static assets on a single machine. Traefik, etc. are much more important with virtual fabrics (k8s in particular)
<matthewcroughan> simpson: What? It's more intuitive to use traefik, personally for me.
<matthewcroughan> The idea of configuring nginx/apache, webservers, when all I want to do is proxy traffic, makes me sick :D
<matthewcroughan> Webservers and load balancing are two different things, why should the functionality be coupled? Unix philosophy!
<matthewcroughan> It's a simpler looking config anyway, have you used traefik with nix before?
<simpson> Proxying traffic is usually an antipattern, though. Like, it's usually not what one actually wants to do. If Bob runs a proxy so that Alice can talk to Carol, wouldn't you want to try to let Alice talk directly to Carol?
thc202 has quit [Ping timeout: 245 seconds]
<matthewcroughan> oh, easy, simplification of the configuration
<matthewcroughan> because sometimes abstraction costs, but is worth it
<matthewcroughan> why program in python when you could program in C?
<matthewcroughan> Same answer! :D
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118843 → vimPlugins.vim-opencl: init at 1.1 → https://github.com/NixOS/nixpkgs/pull/118843
<matthewcroughan> simpson: How do you do basic-auth on Nginx/Apache?
<simpson> That doesn't quite follow. A possible reason to use Python over C is for memory safety. What does Traefik provide over e.g. socat? And to configure so much policy... What are you *actually* proxying?
<{^_^}> [nixpkgs] @aanderse opened pull request #118869 → tomcat-native: 1.2.26 -> 1.2.28 → https://github.com/NixOS/nixpkgs/pull/118869
<matthewcroughan> Also, because most of the apps I'm dealing with run their own webservers, I'm never *ever* using Nginx/Apache as the base webserver anyway.
<matthewcroughan> And if you're using OCI containers, those output traffic on ports. It's not an anti-pattern, it's just the way things work today.
<matthewcroughan> it simplifies everything
<matthewcroughan> it's what everyone's calling cloud-native, do you disagree with the approach?
<matthewcroughan> I mean, I live with a greybeard who hates it. But slowly I'm convincing him that this is what it means to have something that is scalable
<simpson> Yes; IMO Traefik is what Somebody Else gives you when you're using Somebody Else's k8s. It's not something I'd set up on my own. And also I don't own a datacenter, so I'm not cloud-native; I'm home-native and have a homelab.
<matthewcroughan> something where I can have 1 instance or 100 instances, and the config is basically the same.
<{^_^}> [nixpkgs] @veehaitch opened pull request #118870 → isl_0_20: do not guess -march=/-mtune= → https://github.com/NixOS/nixpkgs/pull/118870
<matthewcroughan> simpson: the fact that the config is the same whether you have 100 instances or 1 instance, that's what attracts me
<matthewcroughan> I find it simpler to set up, even on Nix.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118858 → devilutionx: update sha256, fix build → https://github.com/NixOS/nixpkgs/pull/118858
<dycan> hi, is ghcjs removed from nixpkgs?
<matthewcroughan> simpson: I'm going to give you a bit of Nix, can you please show me how you would do it with nginx instead?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118853 → unifi6: 6.0.45 -> 6.1.71 → https://github.com/NixOS/nixpkgs/pull/118853
<simpson> matthewcroughan: Nah, I'm good.
<matthewcroughan> simpson: because traefik is setting up https redirects, automatic ssl certs via letsencrypt and cloudflare api tokens
<matthewcroughan> and I even have a setup on my personal server which doesn't face the internet, with tailscale and traefik and cloudflare api tokens, it's like 10 lines.
<matthewcroughan> So I get ssl for <service>.mydomain.com via letsencrypt
<matthewcroughan> <service>.mydomain.com points to the tailscale vpn ip, and none of my services ever touch the internet
<matthewcroughan> I don't know how I would do any of that with nginx
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118847 → pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInput… → https://github.com/NixOS/nixpkgs/pull/118847
<matthewcroughan> This is basically inelegant and could be done more compactly in the nix language
<matthewcroughan> Idk, have you ever used HAProxy? That's what Traefik replaces.
<matthewcroughan> frontend and backend, nothing more
<simpson> That would make sense; HAProxy is something I used to avoid.
<matthewcroughan> If you wanted to run 10 services on your machine, would you still be using nginx, just to reverse proxy to them?
<matthewcroughan> I don't understand, you'd still be reverse proxying if you wanted to use ghost, or node-red, or any app that has a service that runs its own webserver as a matter of design choice
<matthewcroughan> No matter what way you look at it, if you want to use modern web services, you're going to have to do a lot of work to undo their design decisions.
xAr86 has joined #nixos
<simpson> If the app server sucks, yes. I am *extremely* opinionated here, but I used to contribute to Twisted. Check out the headers for https://twistedmatrix.com/trac/ ; they serve Twisted Web directly, including TLS termination IIRC.
<matthewcroughan> So you're interested in optimizing, I am not :P
<matthewcroughan> I just want my services to work first, then over time my config would mature.
<matthewcroughan> Primarily, ACME being easy is what I also care about.
<simpson> Part of why I recommend nginx and Apache is that they don't suck; they're quite hardened compared to the typical app server, they already have basic scaling on a single machine, etc.
<matthewcroughan> And what if Nginx/Apache are running inside of a container, you reverse proxy to it.
<simpson> I'm a high-level language developer and I only write apps in CGI/FastCGI/etc. mode, behind Apache. I'm not stupid enough to believe that I can write a good HTTP parser.
<matthewcroughan> There still is no answer to multi-processing of services in Nix.
<matthewcroughan> running 10 instances of an application, and having Nginx load balance it, I've never seen that done.
<xAr86> Hello, I'm affected of a bug of "rofi-file-browser" and now I need to overwrite to version 1.2.0 which I tried with: rofi = { enable = true;
<xAr86>   package = pkgsUnstable.rofi.override { plugins = [
<xAr86>     pkgsUnstable.rofi-file-browser.override { version = "1.2.0"; }
<xAr86>   ];
<matthewcroughan> (in nix)
<xAr86> };
<simpson> xAr86: You'll have to also provide a new `src` with an updated SHA256 hash. It's annoying, yes, but nixpkgs can't automatically know whether the updated source version is correct or not.
<simpson> *updated version's source, rather. English is hard.
<matthewcroughan> simpson: I see your point and I've taken it on board actually.
<xAr86> simpson thx Will try - sorry for the code paste was trying to change formatation and accidantionally hitted enter
superherointj has quit [Quit: Leaving]
<simpson> matthewcroughan: I recommend a pow-wow with your system architect. They will have so much domain-specific information that I can't know about. It is sounding like y'all might find it good to invest in a dedicated team for owning containers.
rprije has joined #nixos
<matthewcroughan> ? This is just for my personal setup.
<matthewcroughan> And personal knowledge, nothing to do with who I work for :D
<simpson> For homelab, I just don't know; I don't have good practices, and I don't do containers at home (yet?), so I'm not going to have good relevant advice.
<matthewcroughan> They'll never use Nix.
<matthewcroughan> for me, there is no difference between homelab and production, I just want to know what's possible.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118730 → flint: 2.5.2 -> 2.7.1 → https://github.com/NixOS/nixpkgs/pull/118730
<simpson> xAr86: No worries. We do appreciate folks using pastebins for multiple lines of code, and it makes you less likely to be kicked by anti-spam bots.
<xAr86> simpson thx will do this :)
<simpson> matthewcroughan: A Warner-style spellserver would be a good example of something I'd run at home but not in the cloud: https://lobste.rs/s/xcjpyf/spellserver_generic_remote_code Even though this could be run behind Traefik, I'd probably never actually bother doing it. But it's a fun thought, and I can appreciate that it *should* be possible and easy in Nix.
aaabbbbbbbbbb has quit [Ping timeout: 252 seconds]
<matthewcroughan> simpson: what is a spellserver? 0.o
<jesystani> whats the syntax in flakes for using a non-github input? like if i have gitea or something?
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JYhju
<xAr86> simpson my error is "error: attribute 'out' missing," even if I specify the src in override - I cant find out in my template (the original nix file) - https://github.com/NixOS/nixpkgs/blob/nixos-20.09/pkgs/applications/misc/rofi-file-browser/default.nix
kaction has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118723 → electron-cash: 4.2.0 -> 4.2.4 and fix build → https://github.com/NixOS/nixpkgs/pull/118723
<simpson> matthewcroughan: Oh, sorry, http://www.lothar.com/blog/58-The-Spellserver/ is the right link. A spellserver is arbitrary code execution, as a service.
cole-h has quit [Ping timeout: 265 seconds]
xAr86 has quit [Quit: Connection closed]
<simpson> xAr86: I'm not sure which module you're configuring, but I'm guessing that it has a literal `package.out` somewhere. You could either splice around that by setting `package = { out = ...; }` or maybe hack the module.
<simpson> Drat, too slow. :T simpson--
xAr86 has joined #nixos
rajivr has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118694 → kubelogin-oidc: init at 1.23.0 → https://github.com/NixOS/nixpkgs/pull/118694
<Ankhers> xAr86: simpson said this while you were temporarily gone. "I'm not sure which module you're configuring, but I'm guessing that it has a literal `package.out` somewhere. You could either splice around that by setting `package = { out = ...; }` or maybe hack the module."
<Ankhers> Does anyone have an average time from something being committed to master and it appearing in the nixos-20.09 channel (or any other release channel)?
<xAr86> Ankhers thx working on a bouncer beside bc webchat kicks me regulary
<xAr86> is the module I'm trying to use inside my home-manager rofi-configuration
ahmed_elgabri has joined #nixos
liuyb has joined #nixos
stree has quit [Ping timeout: 240 seconds]
jesystani has quit [Quit: WeeChat 3.1]
ahmed_elgabri has quit [Ping timeout: 260 seconds]
dycan has quit [Remote host closed the connection]
liuyb has quit [Ping timeout: 246 seconds]
liuyb has joined #nixos
<simpson> Oh, it's in home-manager. I only looked in nixpkgs, whoops. home-manager's rofi.nix doesn't have any clues; it doesn't do anything inappropriate.
<{^_^}> [nixpkgs] @SuperSandro2000 pushed to master « python3Packages.wakeonlan: change license to MIT »: https://git.io/JYjfT
<simpson> Ankhers: https://status.nixos.org/ has a way to spot-check. I wonder whether gchristensen or other community metrics folks are tracking this in a histogram somewhere.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116570 → gphotos-sync: init at 2.14.2 → https://github.com/NixOS/nixpkgs/pull/116570
bpye8 has joined #nixos
<supersandro2000> ^ simpson Ankhers
jesystani has joined #nixos
jesystani is now known as la-jesystani
bpye8 has quit [Client Quit]
bpye has quit [Ping timeout: 240 seconds]
vidbina has quit [Ping timeout: 268 seconds]
<xAr86> simpson thx anyway :)
bpye has joined #nixos
stree has joined #nixos
<simpson> supersandro2000++ I guess take history-v2 and run statistics on it?
<{^_^}> supersandro2000's karma got increased to 44
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JYjJz
<supersandro2000> simpson: I am not sure what you mean
<simpson> supersandro2000: I might have misunderstood Ankhers, but we could ask about the "average" or "mean" time taken to update the channel, which would be the total sum of time taken, divided by the number of updates. (Indeed I'd ask about other statistical measures, but I like numbers.)
kaction has joined #nixos
bpye has quit [Quit: Ping timeout (120 seconds)]
bpye has joined #nixos
xAr86 has quit [Quit: Connection closed]
dckc has joined #nixos
tejing has joined #nixos
lsix has quit [Ping timeout: 246 seconds]
<Ankhers> supersandro2000, simpson: Thanks!
<Ankhers> simpson: Yes, that is what I was talking about.
<Ankhers> Asking about rather.
<Ankhers> Also, how stable are the nixos-small channels?
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/9e377a6ce42 (from 9 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<{^_^}> [nixpkgs] @penguwin opened pull request #118871 → glow: 1.4.0 -> 1.4.1 → https://github.com/NixOS/nixpkgs/pull/118871
kaction has quit [Ping timeout: 268 seconds]
liuyb has quit [Ping timeout: 260 seconds]
codygman__ has quit [Ping timeout: 240 seconds]
bpye has quit [Ping timeout: 268 seconds]
bpye has joined #nixos
Dr8128 has quit [Ping timeout: 260 seconds]
h0m2 has quit [Ping timeout: 248 seconds]
h0m2 has joined #nixos
tomberek has joined #nixos
<simpson> Ankhers: I hacked up https://gist.github.com/MostAwesomeDude/af932a4c56a5661934312c4b68f0531d to answer the questions. Bad news: It's in Monte. Good news: https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm is yours for free.
jonathan has joined #nixos
jonathan has quit [Client Quit]
berberman_ has joined #nixos
Dotz0cat has quit [Ping timeout: 248 seconds]
berberman has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #118872 → sops: 3.7.0 -> 3.7.1 → https://github.com/NixOS/nixpkgs/pull/118872
Dotz0cat has joined #nixos
la-jesystani has quit [Ping timeout: 248 seconds]
la-jesystani has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #118873 → wal-g: 0.2.19 -> 0.2.21 → https://github.com/NixOS/nixpkgs/pull/118873
la-jesystani has quit [Quit: WeeChat 3.1]
bpye6 has joined #nixos
bpye has quit [Ping timeout: 260 seconds]
bpye6 is now known as bpye
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #118857 → free42: 3.0.1 -> 3.0.2 → https://github.com/NixOS/nixpkgs/pull/118857
<{^_^}> [nixpkgs] @happysalada opened pull request #118875 → zoxide: 0.5.0 -> 0.6.0; fix darwin build → https://github.com/NixOS/nixpkgs/pull/118875
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JYjOb
dotdotok has quit [Ping timeout: 240 seconds]
lordcirth has joined #nixos
lordcirth_ has quit [Ping timeout: 248 seconds]
sX42 has joined #nixos
tejing has quit [Quit: WeeChat 2.9]
stephank has quit [Quit: stephank]
stephank has joined #nixos
Qubasa has quit [Quit: WeeChat 2.9]
Qubasa has joined #nixos
ahmed_elgabri has joined #nixos
<{^_^}> [nixpkgs] @veprbl pushed 116 commits to staging: https://git.io/JYjsU
ManiacOfMadness has quit [Ping timeout: 248 seconds]
zebrag has quit [Quit: Konversation terminated!]
snowflake has joined #nixos
nwspk has quit [Quit: nwspk]
liuyb has joined #nixos
ahmed_elgabri has quit [Ping timeout: 260 seconds]
nwspk has joined #nixos
sX42 has quit [Quit: Goodbye!]
xAr86 has joined #nixos
mzan has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Dr8128 has joined #nixos
mzan has joined #nixos
timon37 has quit [Ping timeout: 260 seconds]
timon37 has joined #nixos
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
AlpineLlama has joined #nixos
LilleCarl has quit [Quit: WeeChat 3.1]
stree has quit [Ping timeout: 246 seconds]
<matthewcroughan> How do I put an overrideAttr into a packageOverrides?
<matthewcroughan> Is that possible?
<matthewcroughan> If I want to override the attributes of a package, does that have to be an overlay?
kandinsk1 is now known as kandinski
timon37 has quit []
domogled has quit [Quit: domogled]
<{^_^}> [nixpkgs] @veprbl merged pull request #118834 → texlive: 2020.20210109 -> 20210408 → https://github.com/NixOS/nixpkgs/pull/118834
linear_cannon has quit [Quit: Leaving]
`_ has joined #nixos
stree has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #118876 → shadowsocks-rust: 1.10.2 -> 1.10.3 → https://github.com/NixOS/nixpkgs/pull/118876
waleee-cl has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @JesusMtnez opened pull request #118877 → vscx/ms-vsliveshare-vsliveshare: 1.0.4070 -> 1.0.4116 → https://github.com/NixOS/nixpkgs/pull/118877
Supersonic112 has joined #nixos
ml| has quit [Ping timeout: 240 seconds]
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
Supersonic has quit [Ping timeout: 240 seconds]
Supersonic112 is now known as Supersonic
novafacing has joined #nixos
ml| has joined #nixos
riksteri has joined #nixos
ddellaco_ has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #118777 → nodejs: 10.24.0 -> 10.24.1, 12.22.0 -> 12.22.1, 14.16.0 -> 14.16.1 → https://github.com/NixOS/nixpkgs/pull/118777
<{^_^}> [nixpkgs] @marsam merged pull request #118591 → libnbd: 1.7.4 -> 1.7.5 → https://github.com/NixOS/nixpkgs/pull/118591
ddellaco_ has quit [Ping timeout: 240 seconds]
ml| has quit [Ping timeout: 252 seconds]
<matthewcroughan> Does anybody know how you're supposed to install udev rules in nixpkgs?
ebn has quit [Ping timeout: 268 seconds]
oida has quit [Remote host closed the connection]
oida has joined #nixos
jonringer has quit [Remote host closed the connection]
<l33[m]> <matthewcroughan "Does anybody know how you're sup"> yep
ml| has joined #nixos
ahmed_elgabri has joined #nixos
mmmattyx has quit [Quit: Connection closed for inactivity]
ml| has quit [Ping timeout: 265 seconds]
bitmapper has quit [Quit: Connection closed for inactivity]
ahmed_elgabri has quit [Ping timeout: 246 seconds]
John69 has joined #nixos
John69 has left #nixos [#nixos]
marusich has joined #nixos
tarruda3 has quit [Ping timeout: 246 seconds]
palo1 has joined #nixos
ml|_ has joined #nixos
eacameron has quit [Quit: Connection closed for inactivity]
palo has quit [Ping timeout: 240 seconds]
palo1 is now known as palo
rsynnest has joined #nixos
ml|_ has quit [Ping timeout: 240 seconds]
avaq has joined #nixos
<cwpubDJ[m]> any ideas?
lordcirth has quit [Remote host closed the connection]
sangoma has joined #nixos
lordcirth has joined #nixos
astylian_ has quit [Remote host closed the connection]
astylian_ has joined #nixos
tomberek has quit [Quit: Connection closed]
lord| has quit [Ping timeout: 260 seconds]
lord| has joined #nixos
ml|_ has joined #nixos
ml|_ is now known as ml|
stree has quit [Ping timeout: 240 seconds]
ml| has quit [Ping timeout: 268 seconds]
tarruda3 has joined #nixos
aleph- has quit [Ping timeout: 246 seconds]
aleph- has joined #nixos
graf_blutwurst has joined #nixos
<{^_^}> [nixpkgs] @bachp merged pull request #118822 → k3s: 1.20.4+k3s1 -> 1.20.5+k3s1 → https://github.com/NixOS/nixpkgs/pull/118822
endformationage has quit [Quit: WeeChat 2.9]
stree has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #118873 → wal-g: 0.2.19 -> 0.2.21 → https://github.com/NixOS/nixpkgs/pull/118873
ml| has joined #nixos
aleph- has quit [Ping timeout: 240 seconds]
ml| has quit [Ping timeout: 240 seconds]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/f2602a0e2a5 (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/c2f5468cec5 (from 11 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
aleph- has joined #nixos
<{^_^}> [nixpkgs] @Emantor opened pull request #118878 → usbsdmux: 0.1.8 -> 0.2.0 → https://github.com/NixOS/nixpkgs/pull/118878
hyiltiz has quit [Ping timeout: 268 seconds]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @lheckemann opened pull request #118879 → mailman: reenable tests, add necessary deps → https://github.com/NixOS/nixpkgs/pull/118879
<{^_^}> [nixpkgs] @vbgl merged pull request #118850 → ocamlPackages.irmin*: 2.5.1 -> 2.5.2 → https://github.com/NixOS/nixpkgs/pull/118850
hyiltiz has joined #nixos
<{^_^}> [nixpkgs] @Emantor opened pull request #118880 → labgrid: 0.3.2 -> 0.3.3 → https://github.com/NixOS/nixpkgs/pull/118880
cole-h has joined #nixos
sss2 has joined #nixos
<{^_^}> [nixpkgs] @cole-h closed pull request #118868 → zoxide: 0.5.0 -> 0.6.0 → https://github.com/NixOS/nixpkgs/pull/118868
ml| has joined #nixos
ml| has quit [Ping timeout: 265 seconds]
<demostanis[m]> commit hooks flood the chat, don't they?
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
<virkony> demostanis[m]: some clients have options to filter messages by nick, channel, pattern ;)
<etu> matthewcroughan: services.udev.packages = [ pkg.that-contains-your-udev-rule ];
ml| has joined #nixos
<SumnerEvans[m]> demostanis: Since you are accessing via the matrix bridge, I know that you can just ignore the user in element, assuming you are using that client.
srk has joined #nixos
mallox has joined #nixos
mallox has quit [Client Quit]
n-osborne has joined #nixos
<eyJhb> etu: I just threw on the latest version of Jellyfin (nixos-unstable-small), and it seemed like media scan was broken. What version are you running?
ml| has quit [Ping timeout: 240 seconds]
<etu> eyJhb: Does it show the version somewhere in the interface or do I have to look at the running process store path? :p
<eyJhb> I was running 10.7.1, if you want to see click the upper right corner, then under admin then dashboard
<eyJhb> There it should display i t
astylian_ has quit [Ping timeout: 260 seconds]
lord| has quit [Ping timeout: 268 seconds]
FRidh has joined #nixos
neiluj has joined #nixos
ahmed_elgabri has joined #nixos
ml| has joined #nixos
lord| has joined #nixos
astylian has joined #nixos
ahmed_elgabri has quit [Ping timeout: 246 seconds]
<eyJhb> btw. etu thetvdb will be removed :/
cfricke has joined #nixos
<etu> eyJhb: what?
<eyJhb> On 10.7.1 TheTVDB is not a part of the default plugins
rsynnest has quit [Quit: Connection closed]
ml| has quit [Ping timeout: 260 seconds]
neiluj has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @fabaff opened pull request #118881 → python3Packages.twitterapi: 2.6.8 -> 2.6.10 → https://github.com/NixOS/nixpkgs/pull/118881
Lord_of_Life has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @beardhatcode opened pull request #118882 → nextcloud: 21.0.0 -> 21.0.1 → https://github.com/NixOS/nixpkgs/pull/118882
Lord_of_Life has joined #nixos
avaq has quit [Ping timeout: 268 seconds]
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
ml| has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118876 → shadowsocks-rust: 1.10.2 -> 1.10.3 → https://github.com/NixOS/nixpkgs/pull/118876
is_null has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118875 → zoxide: 0.5.0 -> 0.6.0; fix darwin build → https://github.com/NixOS/nixpkgs/pull/118875
civodul has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118872 → sops: 3.7.0 -> 3.7.1 → https://github.com/NixOS/nixpkgs/pull/118872
zupo_ has joined #nixos
zupo_ has quit [Client Quit]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118871 → glow: 1.4.0 -> 1.4.1 → https://github.com/NixOS/nixpkgs/pull/118871
muppeth has quit [Remote host closed the connection]
Dr8128 has quit [Ping timeout: 260 seconds]
zupo_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118869 → tomcat-native: 1.2.26 -> 1.2.28 → https://github.com/NixOS/nixpkgs/pull/118869
lsix has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118877 → vscx/ms-vsliveshare-vsliveshare: 1.0.4070 -> 1.0.4116 → https://github.com/NixOS/nixpkgs/pull/118877
zupo has quit [Ping timeout: 268 seconds]
saschagrunert has joined #nixos
saschagrunert has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118844 → python38Packages.h5py: 3.1.0 -> 3.2.1 → https://github.com/NixOS/nixpkgs/pull/118844
saschagrunert has joined #nixos
<{^_^}> [nixpkgs] @petabyteboy opened pull request #118883 → systems: add appropriate rustc.config for android → https://github.com/NixOS/nixpkgs/pull/118883
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #118870 → isl_0_20: do not guess -march=/-mtune= → https://github.com/NixOS/nixpkgs/pull/118870
is_null has quit [Remote host closed the connection]
n-osborne has quit [Remote host closed the connection]
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
n-osborne has joined #nixos
ahmed_elgabri has joined #nixos
ahmed_elgabri has quit [Client Quit]
wallacer has quit [Ping timeout: 258 seconds]
rsynnest has joined #nixos
ahmedelgabri has joined #nixos
rsynnest has quit [Client Quit]
rsynnest has joined #nixos
wallacer has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #118870 → isl_0_20: do not guess -march=/-mtune= → https://github.com/NixOS/nixpkgs/pull/118870
ml| has quit [Ping timeout: 268 seconds]
jimmiehansson has joined #nixos
vidbina has joined #nixos
<{^_^}> [nixpkgs] @veprbl opened pull request #118884 → pythonPackages.smartypants: 1.8.6 -> 2.0.1 → https://github.com/NixOS/nixpkgs/pull/118884
avaq has joined #nixos
ml| has joined #nixos
rsynnest has quit [*.net *.split]
ctp has quit [*.net *.split]
cfricke has quit [*.net *.split]
hyiltiz has quit [*.net *.split]
graf_blutwurst has quit [*.net *.split]
Supersonic has quit [*.net *.split]
Qubasa has quit [*.net *.split]
berberman_ has quit [*.net *.split]
h0m2 has quit [*.net *.split]
mbrgm has quit [*.net *.split]
supersandro2000 has quit [*.net *.split]
bgamari_ has quit [*.net *.split]
tazjin has quit [*.net *.split]
Serus has quit [*.net *.split]
jmeredith has quit [*.net *.split]
civodul has quit [*.net *.split]
Raito_Bezarius has quit [*.net *.split]
typetetris has quit [*.net *.split]
puffnfresh has quit [*.net *.split]
elibrokeit has quit [*.net *.split]
urkk has quit [*.net *.split]
zie has quit [*.net *.split]
spacefrogg has quit [*.net *.split]
Scriptkiddi has quit [*.net *.split]
iceypoi has quit [*.net *.split]
tokudan has quit [*.net *.split]
radvendii has quit [*.net *.split]
anderslu1dstedt has quit [*.net *.split]
Acou_Bass has quit [*.net *.split]
zopieux has quit [*.net *.split]
n3t has quit [*.net *.split]
marsh has quit [*.net *.split]
vdemeester has quit [*.net *.split]
philipcristiano has quit [*.net *.split]
wpcarro has quit [*.net *.split]
joshmeredith has quit [*.net *.split]
dsal has quit [*.net *.split]
nikola1 has quit [*.net *.split]
HedgeMage has quit [*.net *.split]
monokrome has quit [*.net *.split]
mog has quit [*.net *.split]
georges_ has quit [*.net *.split]
mmlb has quit [*.net *.split]
pbb has quit [*.net *.split]
kraem has quit [*.net *.split]
jjakob has quit [*.net *.split]
ris has quit [*.net *.split]
fliegendewurst[m has quit [*.net *.split]
teasea has quit [*.net *.split]
lurkless has quit [*.net *.split]
hlz has quit [*.net *.split]
lopsided98_ has quit [*.net *.split]
kum0 has quit [*.net *.split]
jybs_ has quit [*.net *.split]
gleber has quit [*.net *.split]
techtangents has quit [*.net *.split]
aristid has quit [*.net *.split]
stnr039940 has quit [*.net *.split]
emacsomancer has quit [*.net *.split]
risson has quit [*.net *.split]
drozdziak1 has quit [*.net *.split]
gerschtli has quit [*.net *.split]
Negher_ has quit [*.net *.split]
alanz has quit [*.net *.split]
dgonyeo has quit [*.net *.split]
teozkr_ has quit [*.net *.split]
zaeph has quit [*.net *.split]
_bin has quit [*.net *.split]
n-osborne has quit [*.net *.split]
ross` has quit [*.net *.split]
aasg has quit [*.net *.split]
mutantmell has quit [*.net *.split]
spacekookie has quit [*.net *.split]
srk has quit [*.net *.split]
nwspk has quit [*.net *.split]
justanotheruser has quit [*.net *.split]
Gaelan has quit [*.net *.split]
SrPx has quit [*.net *.split]
r0bby has quit [*.net *.split]
eliasp[m] has quit [*.net *.split]
bachp has quit [*.net *.split]
bendlas has quit [*.net *.split]
bekkvann[m] has quit [*.net *.split]
wvud[m] has quit [*.net *.split]
Guest20474_ has quit [*.net *.split]
mikeplus64 has quit [*.net *.split]
ProofTechnique has quit [*.net *.split]
sudocurse has quit [*.net *.split]
johanot has quit [*.net *.split]
oharvey has quit [*.net *.split]
jbox has quit [*.net *.split]
cbarrett has quit [*.net *.split]
ehmry has quit [*.net *.split]
magnetophon has quit [*.net *.split]
s1341_ has quit [*.net *.split]
MinceR has quit [*.net *.split]
JadoJodo has quit [*.net *.split]
knownunown has quit [*.net *.split]
megfault has quit [*.net *.split]
Liam[m] has quit [*.net *.split]
nahamu has quit [*.net *.split]
miscalculated has quit [*.net *.split]
inferno_geek[m] has quit [*.net *.split]
socialjusticewaf has quit [*.net *.split]
kinroy has quit [*.net *.split]
ghuntley has quit [*.net *.split]
`slikts has quit [*.net *.split]
misuzu has quit [*.net *.split]
qyliss has quit [*.net *.split]
m3thos has quit [*.net *.split]
virkony has quit [*.net *.split]
eddyb[legacy] has quit [*.net *.split]
Tritlo has quit [*.net *.split]
higebu has quit [*.net *.split]
elvishjerricco has quit [*.net *.split]
winny has quit [*.net *.split]
nextloop has quit [*.net *.split]
mcint has quit [*.net *.split]
ocharles has quit [*.net *.split]
omnigoat has quit [*.net *.split]
haritz has quit [*.net *.split]
hax404 has quit [*.net *.split]
andi- has quit [*.net *.split]
agander_m has quit [*.net *.split]
dgpratt has quit [*.net *.split]
dani- has quit [*.net *.split]
ynotperez has quit [*.net *.split]
davidtwco has quit [*.net *.split]
Emantor has quit [*.net *.split]
duffelbag[m] has quit [*.net *.split]
mumuluxi has quit [*.net *.split]
throwaway740928[ has quit [*.net *.split]
ArdaXi_ has quit [*.net *.split]
|beowulf| has quit [*.net *.split]
magnus has quit [*.net *.split]
greymalkin has quit [*.net *.split]
tedious has quit [*.net *.split]
sknebel has quit [*.net *.split]
Uma_ has quit [*.net *.split]
infinisil has quit [*.net *.split]
jybs has quit [*.net *.split]
eyenx has quit [*.net *.split]
hhes has quit [*.net *.split]
dotdotok[m] has quit [*.net *.split]
dutchie has quit [*.net *.split]
fooker has quit [*.net *.split]
taeradan_ has quit [*.net *.split]
m1cr0man has quit [*.net *.split]
hexo- has quit [*.net *.split]
sterni has quit [*.net *.split]
bridge[evilred] has quit [*.net *.split]
englishm has quit [*.net *.split]
ravndal has quit [*.net *.split]
figgyc[m] has quit [*.net *.split]
NULLx76 has quit [*.net *.split]
MidAutumnHotaru has quit [*.net *.split]
nsnc has quit [*.net *.split]
avn has quit [*.net *.split]
averell has quit [*.net *.split]
liori has quit [*.net *.split]
meteo has quit [*.net *.split]
rembo10 has quit [*.net *.split]
ivan has quit [*.net *.split]
Noisytoot has quit [*.net *.split]
mitsuhiko has quit [*.net *.split]
njd has quit [*.net *.split]
okad has quit [*.net *.split]
bhoman has quit [*.net *.split]
VulNix has quit [*.net *.split]
disasm_ has quit [*.net *.split]
euank has quit [*.net *.split]
_habnabit has quit [*.net *.split]
delroth has quit [*.net *.split]
ericnoan has quit [*.net *.split]
lb5tr has quit [*.net *.split]
commander has quit [*.net *.split]
drakonis has quit [*.net *.split]
jtobin_ has quit [*.net *.split]
page has quit [*.net *.split]
fionera_ has quit [*.net *.split]
hyper_ch has quit [*.net *.split]
qqlq has quit [*.net *.split]
johnny101 has quit [*.net *.split]
tomaw has quit [*.net *.split]
jrm has quit [*.net *.split]
cptchaos83 has quit [*.net *.split]
Athas has quit [*.net *.split]
cyris212 has quit [*.net *.split]
managarmr1 has quit [*.net *.split]
acceptable has quit [*.net *.split]
xdej has quit [*.net *.split]
kb[m] has quit [*.net *.split]
ekotik[m] has quit [*.net *.split]
veryepicusername has quit [*.net *.split]
chvp has quit [*.net *.split]
dunc4n has quit [*.net *.split]
betawaffle has quit [*.net *.split]
nrr has quit [*.net *.split]
blackriversoftwa has quit [*.net *.split]
photonshift[m] has quit [*.net *.split]
dsx has quit [*.net *.split]
kgriffin has quit [*.net *.split]
raghavgururajan has quit [*.net *.split]
DigitalKiwi has quit [*.net *.split]
ShaRose has quit [*.net *.split]
sephii has quit [*.net *.split]
litschi has quit [*.net *.split]
hypn0z[m] has quit [*.net *.split]
tomek[m] has quit [*.net *.split]
p01ar has quit [*.net *.split]
uwap_ has quit [*.net *.split]
maxine has quit [*.net *.split]
endocrimes has quit [*.net *.split]
jul1u5[m] has quit [*.net *.split]
dmytrokurch[m] has quit [*.net *.split]
sshow[m] has quit [*.net *.split]
Kng[m] has quit [*.net *.split]
jhgarner[m] has quit [*.net *.split]
coloneljohnby[m] has quit [*.net *.split]
ppom[m] has quit [*.net *.split]
juliendehos[m] has quit [*.net *.split]
vancoding[m] has quit [*.net *.split]
ThomasGummerer[m has quit [*.net *.split]
enno[m] has quit [*.net *.split]
ploupiboulba[m] has quit [*.net *.split]
aaronjanse has quit [*.net *.split]
anton[m]1 has quit [*.net *.split]
eadwu has quit [*.net *.split]
arcnmx has quit [*.net *.split]
omasanori[m] has quit [*.net *.split]
artturin has quit [*.net *.split]
ms[m]1 has quit [*.net *.split]
rycee has quit [*.net *.split]
mt[m] has quit [*.net *.split]
Minijackson has quit [*.net *.split]
hpfr has quit [*.net *.split]
immae has quit [*.net *.split]
nh2[m] has quit [*.net *.split]
l-as has quit [*.net *.split]
ongy[m] has quit [*.net *.split]
Ox4A6F has quit [*.net *.split]
FOSSGuy[m] has quit [*.net *.split]
aanderse has quit [*.net *.split]
Yakulu[m] has quit [*.net *.split]
Schicko has quit [*.net *.split]
DavHau[m] has quit [*.net *.split]
antholop[m] has quit [*.net *.split]
Paul[m]4 has quit [*.net *.split]
ejpcmac has quit [*.net *.split]
blah1367[m] has quit [*.net *.split]
DevTurks[m] has quit [*.net *.split]
snowflake has quit [*.net *.split]
oida has quit [*.net *.split]
est31 has quit [*.net *.split]
awaxa has quit [*.net *.split]
cantstanya has quit [*.net *.split]
nicoo has quit [*.net *.split]
andreas303 has quit [*.net *.split]
gxt has quit [*.net *.split]
phjlip[m] has quit [*.net *.split]
cab404[m] has quit [*.net *.split]
leons has quit [*.net *.split]
luxemboye has quit [*.net *.split]
xelxebar has quit [*.net *.split]
akirill0v[m] has quit [*.net *.split]
mdash has quit [*.net *.split]
thewarsawpakt[m] has quit [*.net *.split]
heyarne[m] has quit [*.net *.split]
sarcasticdream[m has quit [*.net *.split]
l33[m] has quit [*.net *.split]
notgne2[m] has quit [*.net *.split]
gurkan[m] has quit [*.net *.split]
f0x has quit [*.net *.split]
pinkieval has quit [*.net *.split]
gianarb has quit [*.net *.split]
{^_^} has quit [*.net *.split]
marin[m] has quit [*.net *.split]
Nickli has quit [*.net *.split]
CRTified[m] has quit [*.net *.split]
ero-sennin[m] has quit [*.net *.split]
landed-pending[m has quit [*.net *.split]
kevin_m02[m] has quit [*.net *.split]
a12l has quit [*.net *.split]
oreoking[m] has quit [*.net *.split]
tim92[m] has quit [*.net *.split]
ogroendal[m] has quit [*.net *.split]
anser78[m] has quit [*.net *.split]
psibi[m] has quit [*.net *.split]
sebbadk[m] has quit [*.net *.split]
jgart[m] has quit [*.net *.split]
jdnixx[m] has quit [*.net *.split]
vexedblaze has quit [*.net *.split]
kloenk has quit [*.net *.split]
fiveseven[m] has quit [*.net *.split]
rschulman has quit [*.net *.split]
bitonic has quit [*.net *.split]
roberth has quit [*.net *.split]
rmcgibbo[m] has quit [*.net *.split]
hazel[m] has quit [*.net *.split]
maralorn has quit [*.net *.split]
emily has quit [*.net *.split]
colemickens has quit [*.net *.split]
ThaEwat has quit [*.net *.split]
viq[m] has quit [*.net *.split]
kuel0[m] has quit [*.net *.split]
wiszki[m] has quit [*.net *.split]
idkrn[m] has quit [*.net *.split]
oldsk00l has quit [*.net *.split]
tpanum has quit [*.net *.split]
ottidmes has quit [*.net *.split]
ashkitten has quit [*.net *.split]
alexisnotme[m] has quit [*.net *.split]
madonius[m] has quit [*.net *.split]
afontain_ has quit [*.net *.split]
chin-tastic has quit [*.net *.split]
nlofaro has quit [*.net *.split]
ddima has quit [*.net *.split]
LambdaDu1k has quit [*.net *.split]
cypher has quit [*.net *.split]
evax has quit [*.net *.split]
ptotter[m] has quit [*.net *.split]
xelaushi[m] has quit [*.net *.split]
onny[m] has quit [*.net *.split]
epitron[m] has quit [*.net *.split]
andutu[m] has quit [*.net *.split]
hexa- has quit [*.net *.split]
Unempl0yed[m] has quit [*.net *.split]
dbirks[m] has quit [*.net *.split]
odiug[m] has quit [*.net *.split]
marius_k[m]1 has quit [*.net *.split]
timstott[m] has quit [*.net *.split]
phirsch has quit [*.net *.split]
waxlamp[m] has quit [*.net *.split]
Annika[m] has quit [*.net *.split]
tutitau[m] has quit [*.net *.split]
legendofmiracles has quit [*.net *.split]
mhj[m] has quit [*.net *.split]
therajsun[m] has quit [*.net *.split]
atemu12[m] has quit [*.net *.split]
btdmaster[m] has quit [*.net *.split]
jamesrains[m] has quit [*.net *.split]
kunrooted[m] has quit [*.net *.split]
JaakkoLuttinen[m has quit [*.net *.split]
Satyasheel[m] has quit [*.net *.split]
beardhatcode has quit [*.net *.split]
jschievink has quit [*.net *.split]
musicmatze has quit [*.net *.split]
mindtree[m] has quit [*.net *.split]
cepheus has quit [*.net *.split]
cemguresci[m] has quit [*.net *.split]
mith[m] has quit [*.net *.split]
qbit[m] has quit [*.net *.split]
kevin[m]1 has quit [*.net *.split]
ibizaman[m] has quit [*.net *.split]
nikola[m] has quit [*.net *.split]
rednaZ[m] has quit [*.net *.split]
edrex has quit [*.net *.split]
LuxExUmbra has quit [*.net *.split]
spacetato has quit [*.net *.split]
pdp8[m] has quit [*.net *.split]
hiking[m] has quit [*.net *.split]
M86ul[m] has quit [*.net *.split]
regnat[m] has quit [*.net *.split]
hdjdjd[m] has quit [*.net *.split]
fgaz has quit [*.net *.split]
ArtemPelenitsyn[ has quit [*.net *.split]
unclechu has quit [*.net *.split]
ravecoin[m] has quit [*.net *.split]
leonardp has quit [*.net *.split]
rnhmjoj has quit [*.net *.split]
ryantm has quit [*.net *.split]
davidak[m] has quit [*.net *.split]
OJ[m] has quit [*.net *.split]
jojosch[m] has quit [*.net *.split]
kalbasit[m] has quit [*.net *.split]
cogito271[m] has quit [*.net *.split]
Rage-Gamer[m] has quit [*.net *.split]
tristanC has quit [*.net *.split]
AWizzArd has quit [*.net *.split]
d10n-work has quit [*.net *.split]
BinkyTheClown has quit [*.net *.split]
gambpang has quit [*.net *.split]
alexrelis[m] has quit [*.net *.split]
jboy has quit [*.net *.split]
SumnerEvans[m] has quit [*.net *.split]
ili has quit [*.net *.split]
Guest47472 has quit [*.net *.split]
Reventlov has quit [*.net *.split]
dminuoso has quit [*.net *.split]
welterde has quit [*.net *.split]
kandinski has quit [*.net *.split]
cruxeter has quit [*.net *.split]
dmj` has quit [*.net *.split]
oleks has quit [*.net *.split]
jimmiehansson has quit [*.net *.split]
rawtaz has quit [*.net *.split]
Lord_of_Life has quit [*.net *.split]
akhesacaro has quit [*.net *.split]
maurer has quit [*.net *.split]
nckx has quit [*.net *.split]
philr has quit [*.net *.split]
AlpineLlama has quit [*.net *.split]
sss2 has quit [*.net *.split]
afreakk has quit [*.net *.split]
yourfate has quit [*.net *.split]
MightyJoe has quit [*.net *.split]
blueberrypie has quit [*.net *.split]
ajs124 has quit [*.net *.split]
patagonicus has quit [*.net *.split]
cheriimoya has quit [*.net *.split]
seanparsons has quit [*.net *.split]
AtnNn has quit [*.net *.split]
dotlambda has quit [*.net *.split]
ToxicFrog has quit [*.net *.split]
quinn has quit [*.net *.split]
pieguy128 has quit [*.net *.split]
jluttine has quit [*.net *.split]
Arahael has quit [*.net *.split]
Yaniel has quit [*.net *.split]
lally has quit [*.net *.split]
dingenskirchen has quit [*.net *.split]
jkt has quit [*.net *.split]
lcvass has quit [*.net *.split]
Unode has quit [*.net *.split]
kayg04 has quit [*.net *.split]
katrin has quit [*.net *.split]
Siyo has quit [*.net *.split]
xwvvvvwx has quit [*.net *.split]
abathur has quit [*.net *.split]
pie_ has quit [*.net *.split]
ent has quit [*.net *.split]
bvdw has quit [*.net *.split]
simukis_ has quit [*.net *.split]
wucke13 has quit [*.net *.split]
meatcar has quit [*.net *.split]
tnias has quit [*.net *.split]
eoli3n has quit [*.net *.split]
monotux has quit [*.net *.split]
dsg has quit [*.net *.split]
cransom has quit [*.net *.split]
wallacer has quit [*.net *.split]
zhaofeng1 has quit [*.net *.split]
johari has quit [*.net *.split]
sorear has quit [*.net *.split]
pbcheesecake[m] has quit [*.net *.split]
Khetzal has quit [*.net *.split]
fnords has quit [*.net *.split]
D_ has quit [*.net *.split]
e[m]1 has quit [*.net *.split]
isHavvyGhosting has quit [*.net *.split]
joedevivo has quit [*.net *.split]
rpgwaiter has quit [*.net *.split]
SanchayanMaity has quit [*.net *.split]
zml has quit [*.net *.split]
sphalerite has quit [*.net *.split]
ggp0647 has quit [*.net *.split]
tetdim has quit [*.net *.split]
zhaofeng_alt has quit [*.net *.split]
gh0st[m]2 has quit [*.net *.split]
bl1nk has quit [*.net *.split]
PyroLagus has quit [*.net *.split]
kini has quit [*.net *.split]
PorkySpine has quit [*.net *.split]
HeN has quit [*.net *.split]
ipv6[m] has quit [*.net *.split]
Mic92 has quit [*.net *.split]
chreekat[m] has quit [*.net *.split]
figsoda[m] has quit [*.net *.split]
ptman_[m] has quit [*.net *.split]
Essence[m] has quit [*.net *.split]
dev-kcw[m] has quit [*.net *.split]
apo has quit [*.net *.split]
us3r[m] has quit [*.net *.split]
srid has quit [*.net *.split]
michaelpj has quit [*.net *.split]
manveru[m] has quit [*.net *.split]
jbarthelmes[m] has quit [*.net *.split]
snajpa has quit [*.net *.split]
moredhel has quit [*.net *.split]
lvrp16 has quit [*.net *.split]
newhoggy has quit [*.net *.split]
nand0p has quit [*.net *.split]
xacktm has quit [*.net *.split]
thonkpod has quit [*.net *.split]
pingveno has quit [*.net *.split]
swflint has quit [*.net *.split]
gluegadget has quit [*.net *.split]
gausby has quit [*.net *.split]
samhza has quit [*.net *.split]
adisbladis has quit [*.net *.split]
octe has quit [*.net *.split]
talyz has quit [*.net *.split]
feepo has quit [*.net *.split]
mauli has quit [*.net *.split]
f0x2 has quit [*.net *.split]
beaky has quit [*.net *.split]
teej has quit [*.net *.split]
pingiun has quit [*.net *.split]
d1rewolf has quit [*.net *.split]
lohfu1 has quit [*.net *.split]
betaboon has quit [*.net *.split]
davidcl has quit [*.net *.split]
konfou[m] has quit [*.net *.split]
lstanley has quit [*.net *.split]
ramses[m] has quit [*.net *.split]
Lorenzoas3ii[m] has quit [*.net *.split]
Edmund[m] has quit [*.net *.split]
ar has quit [*.net *.split]
sobet[m] has quit [*.net *.split]
ricklafleur[m] has quit [*.net *.split]
ThomasTuegel[m] has quit [*.net *.split]
gyzac[m] has quit [*.net *.split]
ky0ko1 has quit [*.net *.split]
raccoon[m] has quit [*.net *.split]
cidkid[m] has quit [*.net *.split]
siraben has quit [*.net *.split]
disposabled[m] has quit [*.net *.split]
mjlbach has quit [*.net *.split]
nicbk has quit [*.net *.split]
pacc[m] has quit [*.net *.split]
enblanco[m] has quit [*.net *.split]
kerru_an[m] has quit [*.net *.split]
soiledit[m] has quit [*.net *.split]
kevincox has quit [*.net *.split]
humancalico[m] has quit [*.net *.split]
faya01[m] has quit [*.net *.split]
tristan[m] has quit [*.net *.split]
ayyess[m] has quit [*.net *.split]
slby[m] has quit [*.net *.split]
eddyb has quit [*.net *.split]
Ke has quit [*.net *.split]
Milanfallbackacc has quit [*.net *.split]
j0ni[m] has quit [*.net *.split]
alienpirate5 has quit [*.net *.split]
Robozman[m] has quit [*.net *.split]
Linus[m]1 has quit [*.net *.split]
contrun has quit [*.net *.split]
crazazy[m] has quit [*.net *.split]
ma27[m] has quit [*.net *.split]
ronny has quit [*.net *.split]
danielrf[m] has quit [*.net *.split]
DamienCassou has quit [*.net *.split]
JJJollyjim1 has quit [*.net *.split]
thefloweringash has quit [*.net *.split]
Ericson2314 has quit [*.net *.split]
oh_lawd[m] has quit [*.net *.split]
fossdd[m] has quit [*.net *.split]
adamse has quit [*.net *.split]
veleiro has quit [*.net *.split]
diamondman has quit [*.net *.split]
drvirgilio has quit [*.net *.split]
benley has quit [*.net *.split]
cptMikky has quit [*.net *.split]
parseval has quit [*.net *.split]
dkibi has quit [*.net *.split]
GlennS has quit [*.net *.split]
pbogdan has quit [*.net *.split]
komasa has quit [*.net *.split]
Gohla has quit [*.net *.split]
NekomimiScience has quit [*.net *.split]
simpson has quit [*.net *.split]
raboof has quit [*.net *.split]
MasseR has quit [*.net *.split]
ajmcmiddlin has quit [*.net *.split]
wildsebastian has quit [*.net *.split]
angerman has quit [*.net *.split]
hamishmack has quit [*.net *.split]
grfn has quit [*.net *.split]
prusnak has quit [*.net *.split]
robmyers has quit [*.net *.split]
acertain has quit [*.net *.split]
ncl3 has quit [*.net *.split]
visl has quit [*.net *.split]
kiboneu has quit [*.net *.split]
comex has quit [*.net *.split]
chessai has quit [*.net *.split]
jfhbrook has quit [*.net *.split]
gchristensen has quit [*.net *.split]
afics has quit [*.net *.split]
janneke has quit [*.net *.split]
lightandlight has quit [*.net *.split]
bsima has quit [*.net *.split]
shad has quit [*.net *.split]
nisstyre has quit [*.net *.split]
Orbstheorem has quit [*.net *.split]
Ultrasauce has quit [*.net *.split]
zgrep has quit [*.net *.split]
d3z has quit [*.net *.split]
develCuy_ has quit [*.net *.split]
copy_ has quit [*.net *.split]
wesleyac has quit [*.net *.split]
datakurre^ has quit [*.net *.split]
eon` has quit [*.net *.split]
vidbina has quit [*.net *.split]
NaN-irc has quit [*.net *.split]
xlei has quit [*.net *.split]
rail has quit [*.net *.split]
riksteri has quit [*.net *.split]
`_ has quit [*.net *.split]
fresheyeball has quit [*.net *.split]
concept2 has quit [*.net *.split]
mupf has quit [*.net *.split]
kmein has quit [*.net *.split]
m_hackerfoo has quit [*.net *.split]
turq has quit [*.net *.split]
m4ts has quit [*.net *.split]
drewc has quit [*.net *.split]
yaymukund has quit [*.net *.split]
hodapp has quit [*.net *.split]
Graypup_ has quit [*.net *.split]
grumble has quit [*.net *.split]
numkem has quit [*.net *.split]
realrokka has quit [*.net *.split]
dongcarl has quit [*.net *.split]
johnnyfive has quit [*.net *.split]
cybrian has quit [*.net *.split]
h4ck3rm4n has quit [*.net *.split]
troydm has quit [*.net *.split]
rickard9 has quit [*.net *.split]
rattboi has quit [*.net *.split]
cognemo has quit [*.net *.split]
hrnz has quit [*.net *.split]
charukiewicz has quit [*.net *.split]
Crocodil1 has quit [*.net *.split]
benedikt93 has quit [*.net *.split]
cYmen has quit [*.net *.split]
Ankhers has quit [*.net *.split]
duckfullstop has quit [*.net *.split]
rprospero has quit [*.net *.split]
boegel has quit [*.net *.split]
Maxdamantus has quit [*.net *.split]
Sigma has quit [*.net *.split]
aforemny has quit [*.net *.split]
electrocat has quit [*.net *.split]
petar has quit [*.net *.split]
ekleog has quit [*.net *.split]
eyJhb has quit [*.net *.split]
delan has quit [*.net *.split]
lordcirth has quit [*.net *.split]
goodwill has quit [*.net *.split]
lukegb has quit [*.net *.split]
_rvl has quit [*.net *.split]
kori has quit [*.net *.split]
Izorkin has quit [*.net *.split]
zot has quit [*.net *.split]
higherorder__ has quit [*.net *.split]
cz3 has quit [*.net *.split]
b42 has quit [*.net *.split]
dadada_ has quit [*.net *.split]
diamondburned has quit [*.net *.split]
mocker has quit [*.net *.split]
fl0_id has quit [*.net *.split]
nf has quit [*.net *.split]
illustris has quit [*.net *.split]
tdeo has quit [*.net *.split]
Cadey has quit [*.net *.split]
Baughn has quit [*.net *.split]
trevorriles has quit [*.net *.split]
taktoa[c] has quit [*.net *.split]
victorbjelkholm has quit [*.net *.split]
jkkm has quit [*.net *.split]
steveeJ has quit [*.net *.split]
nyanotech has quit [*.net *.split]
sneakweb__ has quit [*.net *.split]
srhb has quit [*.net *.split]
heatm1s3r has quit [*.net *.split]
Adluc has quit [*.net *.split]
GoGi has quit [*.net *.split]
mgsk has quit [*.net *.split]
mewra has quit [*.net *.split]
wirew0rm2 has quit [*.net *.split]
eri451 has quit [*.net *.split]
CustosLimen has quit [*.net *.split]
emilazy has quit [*.net *.split]
sam_w has quit [*.net *.split]
kaychaks has quit [*.net *.split]
belst has quit [*.net *.split]
sdier has quit [*.net *.split]
rizary has quit [*.net *.split]
Soft has quit [*.net *.split]
manveru has quit [*.net *.split]
weechat_4 has quit [*.net *.split]
Taneb has quit [*.net *.split]
XgF has quit [*.net *.split]
flokli has quit [*.net *.split]
cocreature has quit [*.net *.split]
hoek has quit [*.net *.split]
rummik has quit [*.net *.split]
Miyu-saki has quit [*.net *.split]
vulpine has quit [*.net *.split]
duckonomy has quit [*.net *.split]
hauleth has quit [*.net *.split]
helpusobi has quit [*.net *.split]
fiddlerwoaroof has quit [*.net *.split]
skrzyp has quit [*.net *.split]
esotericnonsense has quit [*.net *.split]
thibm has quit [*.net *.split]
reactormonk1 has quit [*.net *.split]
CcxWrk has quit [*.net *.split]
jeschli1 has quit [*.net *.split]
tomcur_ has quit [*.net *.split]
jpo has quit [*.net *.split]
acowley has quit [*.net *.split]
HedgeMage_ has quit [*.net *.split]
aither has quit [*.net *.split]
packer has quit [*.net *.split]
fps has quit [*.net *.split]
jiribenes has quit [*.net *.split]
solene has quit [*.net *.split]
greaka has quit [*.net *.split]
yorick has quit [*.net *.split]
morr has quit [*.net *.split]
bgupta has quit [*.net *.split]
tnks has quit [*.net *.split]
staceee has quit [*.net *.split]
rodarmor has quit [*.net *.split]
cstrahan has quit [*.net *.split]
teehemkay has quit [*.net *.split]
yrashk has quit [*.net *.split]
NemesisD has quit [*.net *.split]
mpickering has quit [*.net *.split]
nick_h has quit [*.net *.split]
jlpeters has quit [*.net *.split]
rotaerk has quit [*.net *.split]
hellrazo1 has quit [*.net *.split]
bennofs has quit [*.net *.split]
c_wraith has quit [*.net *.split]
jasom has quit [*.net *.split]
Dagger has quit [*.net *.split]
leah2 has quit [*.net *.split]
scoates has quit [*.net *.split]
lukego has quit [*.net *.split]
greizgh has quit [*.net *.split]
jackdk has quit [*.net *.split]
saschagrunert has quit [*.net *.split]
sangoma has quit [*.net *.split]
alunduil has quit [*.net *.split]
kitemikaze has quit [*.net *.split]
nek0 has quit [*.net *.split]
stevenroose has quit [*.net *.split]
akaWolf has quit [*.net *.split]
spudly has quit [*.net *.split]
andymandias has quit [*.net *.split]
yjftsjthsd has quit [*.net *.split]
vuko has quit [*.net *.split]
kaivai has quit [*.net *.split]
bdju has quit [*.net *.split]
mniip has quit [*.net *.split]
djanatyn1 has quit [*.net *.split]
Squarism has quit [*.net *.split]
jtcs_ has quit [*.net *.split]
himmAllRight17 has quit [*.net *.split]
pareidolia has quit [*.net *.split]
LnL has quit [*.net *.split]
mjrosenb has quit [*.net *.split]
chipb has quit [*.net *.split]
styledash has quit [*.net *.split]
julm has quit [*.net *.split]
aml has quit [*.net *.split]
novenary has quit [*.net *.split]
microcolonel has quit [*.net *.split]
amfl has quit [*.net *.split]
flx has quit [*.net *.split]
tv has quit [*.net *.split]
matthewcroughan has quit [*.net *.split]
bougyman has quit [*.net *.split]
ml| has quit [*.net *.split]
FireFly has quit [*.net *.split]
jaeckel has quit [*.net *.split]
FRidh has quit [*.net *.split]
brettgilio has quit [*.net *.split]
palo has quit [*.net *.split]
cole-h has quit [*.net *.split]
nonchris has quit [*.net *.split]
novafacing has quit [*.net *.split]
abrar has quit [*.net *.split]
adamCS has quit [*.net *.split]
ece has quit [*.net *.split]
nbathum has quit [*.net *.split]
amk has quit [*.net *.split]
dustinm has quit [*.net *.split]
lunik19 has quit [*.net *.split]
stigo has quit [*.net *.split]
terinjokes has quit [*.net *.split]
kapil_ has quit [*.net *.split]
NieDzejkob has quit [*.net *.split]
hyper_ch5 has quit [*.net *.split]
berber has quit [*.net *.split]
energizer has quit [*.net *.split]
meck has quit [*.net *.split]
stoile_ has quit [*.net *.split]
heywoodlh has quit [*.net *.split]
shapr has quit [*.net *.split]
DerGuteMoritz has quit [*.net *.split]
sshow has quit [*.net *.split]
arianvp has quit [*.net *.split]
mrspec has quit [*.net *.split]
ajp_ has quit [*.net *.split]
woffs has quit [*.net *.split]
CMCDragonkai1 has quit [*.net *.split]
bukkitgerman8608 has quit [*.net *.split]
AmandaC has quit [*.net *.split]
kinozawa has quit [*.net *.split]
lejonet has quit [*.net *.split]
Guest44469 has quit [*.net *.split]
erhandsome has quit [*.net *.split]
Philonous has quit [*.net *.split]
marusich has quit [*.net *.split]
bpye has quit [*.net *.split]
aleph- has quit [*.net *.split]
mindavi has quit [*.net *.split]
aminechikhaoui has quit [*.net *.split]
astylian has quit [*.net *.split]
marnov has quit [*.net *.split]
VideoGameEnjoyer has quit [*.net *.split]
hopheynananey has quit [*.net *.split]
codezero has quit [*.net *.split]
dsrt^ has quit [*.net *.split]
Kritnich has quit [*.net *.split]
kwork has quit [*.net *.split]
awaz has quit [*.net *.split]
marcusr has quit [*.net *.split]
edwtjo has quit [*.net *.split]
jared-w has quit [*.net *.split]
tldr32 has quit [*.net *.split]
ForgottenPackage has quit [*.net *.split]
barm93 has quit [*.net *.split]
Quick_Wango has quit [*.net *.split]
endvra has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
asymmetric has quit [*.net *.split]
mg has quit [*.net *.split]
ambroisie has quit [*.net *.split]
leothrix has quit [*.net *.split]
wolfshappen has quit [*.net *.split]
CMCDragonkai has quit [*.net *.split]
shiver has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
viric has quit [*.net *.split]
terrorjack has quit [*.net *.split]
azahi has quit [*.net *.split]
emp has quit [*.net *.split]
V has quit [*.net *.split]
coderobe has quit [*.net *.split]
etu has quit [*.net *.split]
mayniklas has quit [*.net *.split]
Swant has quit [*.net *.split]
s-ol has quit [*.net *.split]
smyds has quit [*.net *.split]
buffet has quit [*.net *.split]
clerie has quit [*.net *.split]
conkker has quit [*.net *.split]
sneak has quit [*.net *.split]
dottedmag has quit [*.net *.split]
CodeWarrior has quit [*.net *.split]
laerling has quit [*.net *.split]
zceejkr has quit [*.net *.split]
anders^ has quit [*.net *.split]
kgz has quit [*.net *.split]
MarcWeber has quit [*.net *.split]
marble_visions has quit [*.net *.split]
hplar has quit [*.net *.split]
hl has quit [*.net *.split]
fre has quit [*.net *.split]
lord| has quit [*.net *.split]
tmciver has quit [*.net *.split]
emilsp has quit [*.net *.split]
konobi has quit [*.net *.split]
Heirlung has quit [*.net *.split]
sigtrm has quit [*.net *.split]
poscat has quit [*.net *.split]
aszlig has quit [*.net *.split]
deltab has quit [*.net *.split]
pinpox has quit [*.net *.split]
tstat_ has quit [*.net *.split]
gthm has quit [*.net *.split]
Cale has quit [*.net *.split]
leotaku has quit [*.net *.split]
mz` has quit [*.net *.split]
kaptin has quit [*.net *.split]
carbolymer has quit [*.net *.split]
WilliButz has quit [*.net *.split]
mschwaig has quit [*.net *.split]
ronthecookie has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
djanatyn_ has quit [*.net *.split]
JasonO has quit [*.net *.split]
puck has quit [*.net *.split]
superbaloo has quit [*.net *.split]
demize has quit [*.net *.split]
mlen has quit [*.net *.split]
cjay has quit [*.net *.split]
nore has quit [*.net *.split]
sveitser2 has quit [*.net *.split]
whatisRT has quit [*.net *.split]
thomassgn has quit [*.net *.split]
infowicz has quit [*.net *.split]
buzzert has quit [*.net *.split]
sjlnk has quit [*.net *.split]
heath has quit [*.net *.split]
niksnut has quit [*.net *.split]
dredozubov has quit [*.net *.split]
nbp has quit [*.net *.split]
deni has quit [*.net *.split]
remexre has quit [*.net *.split]
yagoham_ has quit [*.net *.split]
dweller has quit [*.net *.split]
plp_ has quit [*.net *.split]
mzan has quit [*.net *.split]
Diogo930 has quit [*.net *.split]
BlessJah has quit [*.net *.split]
maljub01 has quit [*.net *.split]
gentauro has quit [*.net *.split]
JerryXiao has quit [*.net *.split]
dominikh has quit [*.net *.split]
jsoo has quit [*.net *.split]
Jackneill has quit [*.net *.split]
wentasah has quit [*.net *.split]
figgyc has quit [*.net *.split]
Rovanion has quit [*.net *.split]
edcragg has quit [*.net *.split]
rager has quit [*.net *.split]
mxco86 has quit [*.net *.split]
bigvalen has quit [*.net *.split]
primeos has quit [*.net *.split]
haya has quit [*.net *.split]
amosbird has quit [*.net *.split]
ktosiek has quit [*.net *.split]
InvisibleRasta has quit [*.net *.split]
doublej41 has quit [*.net *.split]
jhuizy has quit [*.net *.split]
multun has quit [*.net *.split]
dev1 has quit [*.net *.split]
ldlework has quit [*.net *.split]
ornxka has quit [*.net *.split]
joehh1 has quit [*.net *.split]
danderson has quit [*.net *.split]
dupon1 has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
_cyril_ has quit [*.net *.split]
ryzokuken has quit [*.net *.split]
tru_tru has quit [*.net *.split]
jimki has quit [*.net *.split]
statusfailed has quit [*.net *.split]
DerHorst has quit [*.net *.split]
wrl has quit [*.net *.split]
notgne2 has quit [*.net *.split]
dirkx has quit [*.net *.split]
samueldr has quit [*.net *.split]
night has quit [*.net *.split]
Luker has quit [*.net *.split]
hiroshi[m] has quit [*.net *.split]
luigy has quit [*.net *.split]
craige_ has quit [*.net *.split]
Roos[m] has quit [*.net *.split]
suprime[m] has quit [*.net *.split]
neonfuz2 has quit [*.net *.split]
korrr[m] has quit [*.net *.split]
fufexan[m] has quit [*.net *.split]
codyopel has quit [*.net *.split]
toasty_avocado[m has quit [*.net *.split]
MichaelAmoani[m] has quit [*.net *.split]
iv_nn[m] has quit [*.net *.split]
pacc6[m] has quit [*.net *.split]
DarkTrancer[m] has quit [*.net *.split]
v0lde[m] has quit [*.net *.split]
vasishath[m] has quit [*.net *.split]
wangoe[m] has quit [*.net *.split]
RomanBall[m] has quit [*.net *.split]
zipfelsack[m] has quit [*.net *.split]
pheoxy has quit [*.net *.split]
jumper[m] has quit [*.net *.split]
M0x76[m] has quit [*.net *.split]
davidwhiting[m] has quit [*.net *.split]
Antoine01[m] has quit [*.net *.split]
Miguel[m] has quit [*.net *.split]
AlesHuzik[m] has quit [*.net *.split]
demostanis[m] has quit [*.net *.split]
JrgKtemeier[m] has quit [*.net *.split]
alarsyo[m] has quit [*.net *.split]
RyuKurisu[m] has quit [*.net *.split]
kclejeune[m] has quit [*.net *.split]
enjoinedmot[m] has quit [*.net *.split]
aynish has quit [*.net *.split]
q3k[m] has quit [*.net *.split]
princemachiavell has quit [*.net *.split]
Raphael[m]1 has quit [*.net *.split]
Piece_Maker has quit [*.net *.split]
tad-lispy[m] has quit [*.net *.split]
kenny[m] has quit [*.net *.split]
alexfmpe has quit [*.net *.split]
Dandellion has quit [*.net *.split]
jtojnar has quit [*.net *.split]
domenkozar[m] has quit [*.net *.split]
puzzlewolf has quit [*.net *.split]
FreeVariable has quit [*.net *.split]
berberman[T] has quit [*.net *.split]
leibniz[m] has quit [*.net *.split]
john-appleseed[m has quit [*.net *.split]
hyperfekt has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
statusbot has quit [*.net *.split]
Shados has quit [*.net *.split]
tghume has quit [*.net *.split]
runciter has quit [*.net *.split]
Forkk has quit [*.net *.split]
judson has quit [*.net *.split]
naivesheep has quit [*.net *.split]
jeaye has quit [*.net *.split]
BukkitGerman has quit [*.net *.split]
aria has quit [*.net *.split]
Andoriyu has quit [*.net *.split]
chrisaw has quit [*.net *.split]
abbe has quit [*.net *.split]
c00w has quit [*.net *.split]
jmercouris has quit [*.net *.split]
georgyo has quit [*.net *.split]
pittma has quit [*.net *.split]
mrkirby153 has quit [*.net *.split]
WeblordPepe has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
hanetzer has quit [*.net *.split]
nerdypepper has quit [*.net *.split]
toppler` has quit [*.net *.split]
dfordvm has quit [*.net *.split]
trfl has quit [*.net *.split]
qz has quit [*.net *.split]
pikajude has quit [*.net *.split]
cross has quit [*.net *.split]
marek has quit [*.net *.split]
rprije has quit [*.net *.split]
stephank has quit [*.net *.split]
stree has quit [*.net *.split]
skandix has quit [*.net *.split]
lawt has quit [*.net *.split]
neobit_ has quit [*.net *.split]
wrench has quit [*.net *.split]
bzl has quit [*.net *.split]
aw has quit [*.net *.split]
evanjs has quit [*.net *.split]
das_j has quit [*.net *.split]
sumner has quit [*.net *.split]
diamondbond has quit [*.net *.split]
veegee has quit [*.net *.split]
evils has quit [*.net *.split]
kaliumxyz has quit [*.net *.split]
rodgort has quit [*.net *.split]
shla has quit [*.net *.split]
cyphase has quit [*.net *.split]
chiefgoat has quit [*.net *.split]
globin has quit [*.net *.split]
xqsl has quit [*.net *.split]
leo60228 has quit [*.net *.split]
andrewrk has quit [*.net *.split]
MichaelRaskin has quit [*.net *.split]
raoul has quit [*.net *.split]
vancz has quit [*.net *.split]
S0rin has quit [*.net *.split]
ij has quit [*.net *.split]
mla has quit [*.net *.split]
wrmilling has quit [*.net *.split]
chat2 has quit [*.net *.split]
zfnmxt has quit [*.net *.split]
ikwildrpepper has quit [*.net *.split]
Vq has quit [*.net *.split]
tarruda3 has quit [*.net *.split]
lsix has quit [*.net *.split]
xAr86 has quit [*.net *.split]
avaq has quit [*.net *.split]
ahmedelgabri has quit [*.net *.split]
liuyb has quit [*.net *.split]
Dotz0cat has quit [*.net *.split]
dckc has quit [*.net *.split]
jess has quit [*.net *.split]
fuiltilt has quit [*.net *.split]
rajivr has quit [*.net *.split]
tobiasBora has quit [*.net *.split]
ericsagn1 has quit [*.net *.split]
tpw_rules has quit [*.net *.split]
fzakaria has quit [*.net *.split]
zakame has quit [*.net *.split]
cirno-999 has quit [*.net *.split]
Mirrexagon has quit [*.net *.split]
IRCsum has quit [*.net *.split]
azazel has quit [*.net *.split]
orivej has quit [*.net *.split]
mrpi has quit [*.net *.split]
davetapley has quit [*.net *.split]
sparogy has quit [*.net *.split]
NinjaTrappeur has quit [*.net *.split]
bradparker has quit [*.net *.split]
GideonOgbonna[m] has quit [*.net *.split]
nz__ has quit [*.net *.split]
ryjm has quit [*.net *.split]
etrepum has quit [*.net *.split]
kiltzman has quit [*.net *.split]
svrana has quit [*.net *.split]
Mateon1 has quit [*.net *.split]
wolke has quit [*.net *.split]
paddymahoney has quit [*.net *.split]
axx has quit [*.net *.split]
yurb has quit [*.net *.split]
bqv has quit [*.net *.split]
tjammer[m] has quit [*.net *.split]
jbal[m] has quit [*.net *.split]
fuzzypixelz[m] has quit [*.net *.split]
mvnetbiz_ has quit [*.net *.split]
peterstorm[m] has quit [*.net *.split]
grin[m] has quit [*.net *.split]
genevino has quit [*.net *.split]
redcedar[m] has quit [*.net *.split]
jtle has quit [*.net *.split]
jperras has quit [*.net *.split]
lpsmith has quit [*.net *.split]
orcus has quit [*.net *.split]
pepesza has quit [*.net *.split]
iMatejC has quit [*.net *.split]
Enzime_ has quit [*.net *.split]
suchar has quit [*.net *.split]
koluacik has quit [*.net *.split]
alp has quit [*.net *.split]
mjsir911 has quit [*.net *.split]
vk3wtf has quit [*.net *.split]
nojster has quit [*.net *.split]
LeshaInc has quit [*.net *.split]
duairc has quit [*.net *.split]
otulp has quit [*.net *.split]
voidcontext has quit [*.net *.split]
itorres has quit [*.net *.split]
dfgg has quit [*.net *.split]
kosmikus has quit [*.net *.split]
lewo` has quit [*.net *.split]
HackerFoo has quit [*.net *.split]
barb_ has quit [*.net *.split]
clever has quit [*.net *.split]
Sigyn has quit [*.net *.split]
le_jonge has quit [*.net *.split]
hsiktas[m] has quit [Max SendQ exceeded]
paglu[m] has quit [Ping timeout: 245 seconds]
cwpubDJ[m] has quit [Ping timeout: 245 seconds]
daemon1024 has quit [Ping timeout: 245 seconds]
mrketsuban[m] has quit [Ping timeout: 245 seconds]
zuh0 has quit [Ping timeout: 245 seconds]
garbas[m] has quit [Ping timeout: 245 seconds]
Valodim[m] has quit [Ping timeout: 245 seconds]
kraem[m] has quit [Ping timeout: 245 seconds]
bbigras has quit [Ping timeout: 245 seconds]
codebam_ has quit [Ping timeout: 245 seconds]
juansucks[m] has quit [Ping timeout: 245 seconds]
mica[m] has quit [Ping timeout: 245 seconds]
lambdaclan has quit [Ping timeout: 245 seconds]
NobbZ[m] has quit [Ping timeout: 245 seconds]
petrichor has quit [Ping timeout: 245 seconds]
teutat3s[m]1 has quit [Ping timeout: 245 seconds]
nicolas[m] has quit [Ping timeout: 245 seconds]
spinus[m] has quit [Ping timeout: 245 seconds]
tams[m] has quit [Ping timeout: 245 seconds]
Lurkki[m] has quit [Ping timeout: 245 seconds]
MatthieuCoudron[ has quit [Ping timeout: 245 seconds]
babbaj[m] has quit [Ping timeout: 245 seconds]
Brian[m]4 has quit [Ping timeout: 245 seconds]
shmakes[m] has quit [Ping timeout: 245 seconds]
scheibenkleister has quit [Ping timeout: 245 seconds]
AnAmigian[m] has quit [Ping timeout: 245 seconds]
goibhniu has quit [Ping timeout: 245 seconds]
variable[m] has quit [Ping timeout: 245 seconds]
ydlr[m] has quit [Ping timeout: 245 seconds]
leon[m]1 has quit [Ping timeout: 245 seconds]
kgjfeduwieigt83e has quit [Ping timeout: 245 seconds]
sk4l[m] has quit [Ping timeout: 245 seconds]
lemmie[m] has quit [Ping timeout: 245 seconds]
nwp[m] has quit [Ping timeout: 245 seconds]
cyris212 has joined #nixos
xdej has joined #nixos
acceptable has joined #nixos
cptchaos83 has joined #nixos
johnny101 has joined #nixos
jrm has joined #nixos
Noisytoot has joined #nixos
euank has joined #nixos
Athas has joined #nixos
rembo10 has joined #nixos
ivan has joined #nixos
meteo has joined #nixos
ericnoan has joined #nixos
liori has joined #nixos
_habnabit has joined #nixos
lb5tr has joined #nixos
delroth has joined #nixos
okad has joined #nixos
qqlq has joined #nixos
drakonis has joined #nixos
disasm_ has joined #nixos
managarmr1 has joined #nixos
nsnc has joined #nixos
jtobin_ has joined #nixos
bhoman has joined #nixos
VulNix has joined #nixos
page has joined #nixos
averell has joined #nixos
commander has joined #nixos
fionera_ has joined #nixos
mitsuhiko has joined #nixos
aaabbbbbbbbbb has joined #nixos
tomaw has joined #nixos
hyper_ch has joined #nixos
avn has joined #nixos
njd has joined #nixos
MidAutumnHotaru has joined #nixos
ghuntley has joined #nixos
davidtwco has joined #nixos
hhes has joined #nixos
sudocurse has joined #nixos
Uma_ has joined #nixos
sknebel has joined #nixos
greymalkin has joined #nixos
mumuluxi has joined #nixos
magnetophon has joined #nixos
fooker has joined #nixos
taeradan_ has joined #nixos
NULLx76 has joined #nixos
misuzu has joined #nixos
winny has joined #nixos
justanotheruser has joined #nixos
m3thos has joined #nixos
ynotperez has joined #nixos
dgpratt has joined #nixos
s1341_ has joined #nixos
ocharles has joined #nixos
qyliss has joined #nixos
dutchie has joined #nixos
SrPx has joined #nixos
miscalculated has joined #nixos
hexo- has joined #nixos
r0bby has joined #nixos
infinisil has joined #nixos
Tritlo has joined #nixos
m1cr0man has joined #nixos
nextloop has joined #nixos
haritz has joined #nixos
ArdaXi_ has joined #nixos
oharvey has joined #nixos
cbarrett has joined #nixos
omnigoat has joined #nixos
eddyb[legacy] has joined #nixos
bridge[evilred] has joined #nixos
andi- has joined #nixos
elvishjerricco has joined #nixos
mikeplus64 has joined #nixos
hax404 has joined #nixos
tedious has joined #nixos
Gaelan has joined #nixos
sterni has joined #nixos
magnus has joined #nixos
Emantor has joined #nixos
jybs has joined #nixos
agander_m has joined #nixos
knownunown has joined #nixos
eyenx has joined #nixos
ProofTechnique has joined #nixos
|beowulf| has joined #nixos
ravndal has joined #nixos
englishm has joined #nixos
Guest20474_ has joined #nixos
higebu has joined #nixos
virkony has joined #nixos
MinceR has joined #nixos
mcint has joined #nixos
`slikts has joined #nixos
jbox has joined #nixos
megfault has joined #nixos
kinroy has joined #nixos
nahamu has joined #nixos
dani- has joined #nixos
johanot has joined #nixos
srk has joined #nixos
nwspk has joined #nixos
JadoJodo has joined #nixos
Unode has joined #nixos
jkt has joined #nixos
jluttine has joined #nixos
sss2 has joined #nixos
jimmiehansson has joined #nixos
dsrt^ has joined #nixos
ToxicFrog has joined #nixos
seanparsons has joined #nixos
AlpineLlama has joined #nixos
dotlambda has joined #nixos
ajs124 has joined #nixos
MightyJoe has joined #nixos
philr has joined #nixos
stree has joined #nixos
blueberrypie has joined #nixos
patagonicus has joined #nixos
lcvass has joined #nixos
yourfate has joined #nixos
AtnNn has joined #nixos
cheriimoya has joined #nixos
muppeth has joined #nixos
Yaniel has joined #nixos
afreakk has joined #nixos
dingenskirchen has joined #nixos
quinn has joined #nixos
Siyo has joined #nixos
katrin has joined #nixos
abathur has joined #nixos
xwvvvvwx has joined #nixos
tnias has joined #nixos
kayg04 has joined #nixos
cransom has joined #nixos
dsg has joined #nixos
monotux has joined #nixos
eoli3n has joined #nixos
meatcar has joined #nixos
simukis_ has joined #nixos
wucke13 has joined #nixos
liuyb has joined #nixos
xAr86 has joined #nixos
tobiasBora has joined #nixos
dfgg has joined #nixos
Mirrexagon has joined #nixos
Mateon1 has joined #nixos
lsix has joined #nixos
genevino has joined #nixos
fuiltilt has joined #nixos
azazel has joined #nixos
dckc has joined #nixos
paddymahoney has joined #nixos
nz__ has joined #nixos
zakame has joined #nixos
davetapley has joined #nixos
lpsmith has joined #nixos
mrpi has joined #nixos
pepesza has joined #nixos
koluacik has joined #nixos
Enzime_ has joined #nixos
cirno-999 has joined #nixos
NinjaTrappeur has joined #nixos
tpw_rules has joined #nixos
fzakaria has joined #nixos
otulp has joined #nixos
itorres has joined #nixos
alp has joined #nixos
bqv has joined #nixos
svrana has joined #nixos
avaq has joined #nixos
jperras has joined #nixos
tarruda3 has joined #nixos
Dotz0cat has joined #nixos
bradparker has joined #nixos
jess has joined #nixos
wolke has joined #nixos
iMatejC has joined #nixos
HackerFoo has joined #nixos
ahmedelgabri has joined #nixos
vk3wtf has joined #nixos
sparogy has joined #nixos
suchar has joined #nixos
jtle has joined #nixos
rajivr has joined #nixos
kiltzman has joined #nixos
orivej has joined #nixos
kosmikus has joined #nixos
ryjm has joined #nixos
IRCsum has joined #nixos
orcus has joined #nixos
mjsir911 has joined #nixos
barb_ has joined #nixos
duairc has joined #nixos
etrepum has joined #nixos
LeshaInc has joined #nixos
clever has joined #nixos
ericsagn1 has joined #nixos
voidcontext has joined #nixos
nojster has joined #nixos
lewo` has joined #nixos
le_jonge has joined #nixos
onny[m] has joined #nixos
SumnerEvans[m] has joined #nixos
jojosch[m] has joined #nixos
xelaushi[m] has joined #nixos
odiug[m] has joined #nixos
tutitau[m] has joined #nixos
Unempl0yed[m] has joined #nixos
OJ[m] has joined #nixos
Annika[m] has joined #nixos
dbirks[m] has joined #nixos
waxlamp[m] has joined #nixos
Satyasheel[m] has joined #nixos
edrex has joined #nixos
d10n-work has joined #nixos
marius_k[m]1 has joined #nixos
jamesrains[m] has joined #nixos
nikola[m] has joined #nixos
leonardp has joined #nixos
hexa- has joined #nixos
davidak[m] has joined #nixos
pdp8[m] has joined #nixos
AWizzArd has joined #nixos
legendofmiracles has joined #nixos
tristanC has joined #nixos
ArtemPelenitsyn[ has joined #nixos
beardhatcode has joined #nixos
phirsch has joined #nixos
dminuoso has joined #nixos
jschievink has joined #nixos
btdmaster[m] has joined #nixos
timstott[m] has joined #nixos
kunrooted[m] has joined #nixos
atemu12[m] has joined #nixos
jboy has joined #nixos
gambpang has joined #nixos
maurer has joined #nixos
oleks has joined #nixos
kandinski has joined #nixos
cruxeter has joined #nixos
welterde has joined #nixos
Guest47472 has joined #nixos
dmj` has joined #nixos
rawtaz has joined #nixos
Reventlov has joined #nixos
akhesacaro has joined #nixos
pieguy128 has joined #nixos
kaliumxyz has joined #nixos
sumner has joined #nixos
ekleog has joined #nixos
shla has joined #nixos
leo60228 has joined #nixos
globin has joined #nixos
aw has joined #nixos
xqsl has joined #nixos
stephank has joined #nixos
rprije has joined #nixos
evils has joined #nixos
rodgort has joined #nixos
diamondbond has joined #nixos
das_j has joined #nixos
arahael1 has joined #nixos
chiefgoat has joined #nixos
S0rin has joined #nixos
raoul has joined #nixos
MichaelRaskin has joined #nixos
wrmilling has joined #nixos
andrewrk has joined #nixos
chat2 has joined #nixos
ij has joined #nixos
mla has joined #nixos
ikwildrpepper has joined #nixos
zfnmxt has joined #nixos
Vq has joined #nixos
dsrt^ has quit [Max SendQ exceeded]
xelaushi[m] has quit [Ping timeout: 252 seconds]
marius_k[m]1 has quit [Ping timeout: 252 seconds]
Unempl0yed[m] has quit [Ping timeout: 252 seconds]
timstott[m] has quit [Ping timeout: 252 seconds]
phirsch has quit [Ping timeout: 252 seconds]
waxlamp[m] has quit [Ping timeout: 252 seconds]
legendofmiracles has quit [Ping timeout: 252 seconds]
Annika[m] has quit [Ping timeout: 252 seconds]
kunrooted[m] has quit [Ping timeout: 252 seconds]
tutitau[m] has quit [Ping timeout: 252 seconds]
btdmaster[m] has quit [Ping timeout: 252 seconds]
jamesrains[m] has quit [Ping timeout: 252 seconds]
Satyasheel[m] has quit [Ping timeout: 252 seconds]
atemu12[m] has quit [Ping timeout: 252 seconds]
pdp8[m] has quit [Ping timeout: 252 seconds]
edrex has quit [Ping timeout: 252 seconds]
ArtemPelenitsyn[ has quit [Ping timeout: 252 seconds]
nikola[m] has quit [Ping timeout: 252 seconds]
davidak[m] has quit [Ping timeout: 252 seconds]
jojosch[m] has quit [Ping timeout: 252 seconds]
SumnerEvans[m] has quit [Ping timeout: 252 seconds]
OJ[m] has quit [Ping timeout: 252 seconds]
eddyb[legacy] has quit [Ping timeout: 246 seconds]
diamondbond has quit [Ping timeout: 240 seconds]
dbirks[m] has quit [Ping timeout: 252 seconds]
odiug[m] has quit [Ping timeout: 252 seconds]
onny[m] has quit [Ping timeout: 252 seconds]
beardhatcode has quit [Ping timeout: 252 seconds]
jschievink has quit [Ping timeout: 252 seconds]
leonardp has quit [Ping timeout: 252 seconds]
konobi has joined #nixos
WilliButz has joined #nixos
tstat_ has joined #nixos
lord| has joined #nixos
leotaku has joined #nixos
mschwaig has joined #nixos
emilsp has joined #nixos
ronthecookie has joined #nixos
carbolymer has joined #nixos
edef has joined #nixos
sigtrm has joined #nixos
aszlig has joined #nixos
djanatyn_ has joined #nixos
tmciver has joined #nixos
Cale has joined #nixos
Aleksejs has joined #nixos
kaptin has joined #nixos
poscat has joined #nixos
deltab has joined #nixos
Heirlung has joined #nixos
JasonO has joined #nixos
pinpox has joined #nixos
mlen has joined #nixos
gthm has joined #nixos
puck has joined #nixos
infowicz has joined #nixos
demize has joined #nixos
cjay has joined #nixos
superbaloo has joined #nixos
remexre has joined #nixos
sveitser2 has joined #nixos
niksnut has joined #nixos
sjlnk has joined #nixos
thomassgn has joined #nixos
nore has joined #nixos
nbp has joined #nixos
whatisRT has joined #nixos
buzzert has joined #nixos
heath has joined #nixos
deni has joined #nixos
yagoham_ has joined #nixos
plp_ has joined #nixos
dweller has joined #nixos
dredozubov has joined #nixos
m1kr0[m] has quit [Ping timeout: 245 seconds]
aiden[m] has quit [Ping timeout: 245 seconds]
diegov_ has quit [Ping timeout: 245 seconds]
anderslu1dstedt has joined #nixos
joshmeredith has joined #nixos
tokudan has joined #nixos
hyiltiz has joined #nixos
civodul has joined #nixos
rsynnest has joined #nixos
tazjin has joined #nixos
ris has joined #nixos
georges_ has joined #nixos
philipcristiano has joined #nixos
Raito_Bezarius has joined #nixos
vdemeester has joined #nixos
stnr039940 has joined #nixos
gleber has joined #nixos
berberman_ has joined #nixos
puffnfresh has joined #nixos
jmeredith has joined #nixos
monokrome has joined #nixos
Acou_Bass has joined #nixos
jybs_ has joined #nixos
zaeph has joined #nixos
risson has joined #nixos
gerschtli has joined #nixos
lally has joined #nixos
drozdziak1 has joined #nixos
mmlb has joined #nixos
Scriptkiddi has joined #nixos
Supersonic has joined #nixos
Negher_ has joined #nixos
_bin has joined #nixos
kum0 has joined #nixos
aristid has joined #nixos
HedgeMage has joined #nixos
iceypoi has joined #nixos
teasea has joined #nixos
teozkr_ has joined #nixos
kraem has joined #nixos
nikola1 has joined #nixos
bgamari_ has joined #nixos
lurkless has joined #nixos
alanz has joined #nixos
jjakob has joined #nixos
emacsomancer has joined #nixos
urkk has joined #nixos
elibrokeit has joined #nixos
wpcarro has joined #nixos
supersandro2000 has joined #nixos
techtangents has joined #nixos
pbb has joined #nixos
mbrgm has joined #nixos
spacefrogg has joined #nixos
mog has joined #nixos
Qubasa has joined #nixos
typetetris has joined #nixos
graf_blutwurst has joined #nixos
n3t has joined #nixos
zopieux has joined #nixos
h0m2 has joined #nixos
zie has joined #nixos
dsal has joined #nixos
cfricke has joined #nixos
n-osborne has joined #nixos
marsh has joined #nixos
radvendii has joined #nixos
ctp has joined #nixos
ross` has joined #nixos
dgonyeo has joined #nixos
lopsided98_ has joined #nixos
mutantmell has joined #nixos
ehmry has joined #nixos
spacekookie has joined #nixos
aasg has joined #nixos
hlz has joined #nixos
heinrich5991 has joined #nixos
judson has joined #nixos
hyperfekt has joined #nixos
naivesheep has joined #nixos
Shados has joined #nixos
tghume has joined #nixos
runciter has joined #nixos
jeaye has joined #nixos
Forkk has joined #nixos
pittma has joined #nixos
statusbot has joined #nixos
abbe has joined #nixos
georgyo has joined #nixos
Andoriyu has joined #nixos
chrisaw has joined #nixos
aria has joined #nixos
jmercouris has joined #nixos
cross has joined #nixos
c00w has joined #nixos
mrkirby153 has joined #nixos
WeblordPepe has joined #nixos
BukkitGerman has joined #nixos
thoughtpolice has joined #nixos
skandix has joined #nixos
dfordvm has joined #nixos
toppler` has joined #nixos
bzl has joined #nixos
wrench has joined #nixos
pikajude has joined #nixos
trfl has joined #nixos
marek has joined #nixos
neobit_ has joined #nixos
nerdypepper has joined #nixos
qz has joined #nixos
hanetzer has joined #nixos
eon` has joined #nixos
NaN-irc has joined #nixos
copy_ has joined #nixos
develCuy_ has joined #nixos
snajpa has joined #nixos
afics has joined #nixos
benley has joined #nixos
lohfu1 has joined #nixos
cptMikky has joined #nixos
bl1nk has joined #nixos
ggp0647 has joined #nixos
beaky has joined #nixos
d3z has joined #nixos
talyz has joined #nixos
HeN has joined #nixos
Orbstheorem has joined #nixos
comex has joined #nixos
prusnak has joined #nixos
komasa has joined #nixos
datakurre^ has joined #nixos
dkibi has joined #nixos
SanchayanMaity has joined #nixos
pingiun has joined #nixos
nand0p has joined #nixos
D_ has joined #nixos
grfn has joined #nixos
kini has joined #nixos
feepo has joined #nixos
rpgwaiter has joined #nixos
newhoggy has joined #nixos
Gohla has joined #nixos
wildsebastian has joined #nixos
NekomimiScience has joined #nixos
MasseR has joined #nixos
bsima has joined #nixos
hamishmack has joined #nixos
teej has joined #nixos
apo has joined #nixos
PorkySpine has joined #nixos
lstanley has joined #nixos
angerman has joined #nixos
parseval has joined #nixos
hplar has joined #nixos
marble_visions has joined #nixos
Mic92 has joined #nixos
fnords has joined #nixos
hl has joined #nixos
ky0ko1 has joined #nixos
nisstyre has joined #nixos
sphalerite has joined #nixos
d1rewolf has joined #nixos
lightandlight has joined #nixos
xacktm has joined #nixos
octe has joined #nixos
adamse has joined #nixos
samhza has joined #nixos
ncl3 has joined #nixos
GlennS has joined #nixos
gluegadget has joined #nixos
moredhel has joined #nixos
pbogdan has joined #nixos
fre has joined #nixos
zhaofeng_alt has joined #nixos
zml has joined #nixos
pingveno has joined #nixos
betaboon has joined #nixos
chessai has joined #nixos
f0x2 has joined #nixos
zhaofeng1 has joined #nixos
robmyers has joined #nixos
simpson has joined #nixos
joedevivo has joined #nixos
shad has joined #nixos
wesleyac has joined #nixos
xe4 has joined #nixos
davidcl has joined #nixos
johari has joined #nixos
gausby has joined #nixos
drvirgilio has joined #nixos
gchristensen has joined #nixos
sorear has joined #nixos
mauli has joined #nixos
lvrp16 has joined #nixos
isHavvyGhosting has joined #nixos
ar has joined #nixos
visl has joined #nixos
adisbladis has joined #nixos
kiboneu has joined #nixos
PyroLagus has joined #nixos
swflint has joined #nixos
zgrep has joined #nixos
thonkpod has joined #nixos
Ultrasauce has joined #nixos
raboof has joined #nixos
acertain has joined #nixos
janneke has joined #nixos
ajmcmiddlin has joined #nixos
laerling has joined #nixos
CodeWarrior has joined #nixos
MarcWeber has joined #nixos
kgz has joined #nixos
Crocodil1 has joined #nixos
lukegb has joined #nixos
woffs has joined #nixos
riksteri has joined #nixos
yaymukund has joined #nixos
coderobe has joined #nixos
aleph- has joined #nixos
astylian has joined #nixos
rickard9 has joined #nixos
tdeo has joined #nixos
p01ar has joined #nixos
stigo has joined #nixos
kapil_ has joined #nixos
cYmen has joined #nixos
nrr has joined #nixos
tetdim has joined #nixos
azahi has joined #nixos
goodwill has joined #nixos
Quick_Wango has joined #nixos
`_ has joined #nixos
smyds has joined #nixos
bukkitgerman8608 has joined #nixos
boegel has joined #nixos
h4ck3rm4n has joined #nixos
fresheyeball has joined #nixos
litschi has joined #nixos
energizer has joined #nixos
hyper_ch5 has joined #nixos
bob_twinkles has joined #nixos
V has joined #nixos
CMCDragonkai has joined #nixos
Kritnich has joined #nixos
drewc has joined #nixos
rprospero has joined #nixos
concept2 has joined #nixos
hrnz has joined #nixos
shiver has joined #nixos
NieDzejkob has joined #nixos
17QAABU0Q has joined #nixos
codezero has joined #nixos
sshow has joined #nixos
zceejkr has joined #nixos
electrocat has joined #nixos
b42 has joined #nixos
illustris has joined #nixos
charukiewicz has joined #nixos
eyJhb has joined #nixos
aminechikhaoui has joined #nixos
dottedmag has joined #nixos
anders^ has joined #nixos
ambroisie has joined #nixos
Sigma has joined #nixos
bpye has joined #nixos
meck has joined #nixos
diamondburned has joined #nixos
edwtjo has joined #nixos
higherorder__ has joined #nixos
Philonous has joined #nixos
novafacing has joined #nixos
arianvp has joined #nixos
viric has joined #nixos
barm93 has joined #nixos
numkem has joined #nixos
jared-w has joined #nixos
kinozawa has joined #nixos
endvra has joined #nixos
m4ts has joined #nixos
eri451 has joined #nixos
Dagger has joined #nixos
teehemkay has joined #nixos
greizgh has joined #nixos
mgsk has joined #nixos
reactormonk1 has joined #nixos
kaychaks has joined #nixos
flokli has joined #nixos
esotericnonsense has joined #nixos
leah2 has joined #nixos
helpusobi has joined #nixos
rotaerk has joined #nixos
scoates has joined #nixos
heatm1s3r has joined #nixos
HedgeMage_ has joined #nixos
greaka has joined #nixos
mpickering has joined #nixos
fps has joined #nixos
manveru has joined #nixos
mewra has joined #nixos
emilazy has joined #nixos
sneakweb__ has joined #nixos
solene has joined #nixos
GoGi has joined #nixos
hellrazo1 has joined #nixos
c_wraith has joined #nixos
CcxWrk has joined #nixos
yorick has joined #nixos
tnks has joined #nixos
jiribenes has joined #nixos
acowley has joined #nixos
sam_w has joined #nixos
packer has joined #nixos
nick_h has joined #nixos
miscalculated has quit [Max SendQ exceeded]
omnigoat has quit [Ping timeout: 246 seconds]
SanchayanMaity has quit [Ping timeout: 250 seconds]
PorkySpine has quit [Ping timeout: 250 seconds]
d1rewolf has quit [Ping timeout: 250 seconds]
HeN has quit [Ping timeout: 250 seconds]
teej has quit [Max SendQ exceeded]
higherorder__ has quit [Ping timeout: 250 seconds]
visl has quit [Ping timeout: 258 seconds]
stree has quit [Max SendQ exceeded]
feepo has quit [Ping timeout: 258 seconds]
t_unix[m] has quit [Ping timeout: 245 seconds]
raboof has quit [Ping timeout: 258 seconds]
pingveno has quit [Ping timeout: 258 seconds]
evanjs has joined #nixos
pie_ has joined #nixos
Squarism has joined #nixos
bdju has joined #nixos
pareidolia has joined #nixos
LnL has joined #nixos
mniip has joined #nixos
styledash has joined #nixos
attila_lendvai has joined #nixos
kaivai has joined #nixos
yjftsjthsd has joined #nixos
vuko has joined #nixos
sangoma has joined #nixos
Serus_ has joined #nixos
akaWolf has joined #nixos
novenary has joined #nixos
himmAllRight17 has joined #nixos
saschagrunert has joined #nixos
jtcs_ has joined #nixos
djanatyn1 has joined #nixos
julm has joined #nixos
FireFly has joined #nixos
tv has joined #nixos
matthewcroughan has joined #nixos
jaeckel has joined #nixos
stevenroose has joined #nixos
chipb has joined #nixos
aml has joined #nixos
spudly has joined #nixos
nek0 has joined #nixos
flx has joined #nixos
mjrosenb has joined #nixos
brettgilio has joined #nixos
andymandias has joined #nixos
microcolonel has joined #nixos
amfl has joined #nixos
bougyman has joined #nixos
fendingshadows[m has quit [Ping timeout: 245 seconds]
bourbon has quit [Ping timeout: 245 seconds]
philipp[m]2 has quit [Ping timeout: 245 seconds]
pinkieval has joined #nixos
Nickli has joined #nixos
mdash has joined #nixos
gianarb has joined #nixos
cypher has joined #nixos
{^_^} has joined #nixos
oldsk00l has joined #nixos
ottidmes has joined #nixos
f0x has joined #nixos
chin-tastic has joined #nixos
nlofaro has joined #nixos
evax has joined #nixos
LambdaDu1k has joined #nixos
tpanum has joined #nixos
ashkitten has joined #nixos
ddima has joined #nixos
nckx has joined #nixos
thc202 has joined #nixos
wallacer has joined #nixos
Lord_of_Life has joined #nixos
diamondbond has joined #nixos
cyphase has joined #nixos
dsrt^ has joined #nixos
elvishjerricco has quit [Ping timeout: 246 seconds]
Khetzal has joined #nixos
attila_lendvai is now known as Guest64712
lstanley has quit [Ping timeout: 258 seconds]
Sigyn has joined #nixos
stree has joined #nixos
HeN has joined #nixos
vancz has joined #nixos
steveeJ has joined #nixos
andreas303 has joined #nixos
oida has joined #nixos
snowflake has joined #nixos
gxt has joined #nixos
cantstanya has joined #nixos
est31 has joined #nixos
nicoo has joined #nixos
luxemboye has joined #nixos
xelxebar has joined #nixos
georgyo has quit [Ping timeout: 245 seconds]
newhoggy has quit [Ping timeout: 258 seconds]
cbarrett has quit [Ping timeout: 246 seconds]
SrPx has quit [Ping timeout: 246 seconds]
dgpratt has quit [Ping timeout: 246 seconds]
veegee has joined #nixos
wildsebastian has quit [Ping timeout: 258 seconds]
mz` has joined #nixos
georgyo has joined #nixos
gluegadget has quit [Ping timeout: 258 seconds]
rodarmor has joined #nixos
r0bby has quit [Ping timeout: 246 seconds]
newhoggy has joined #nixos
d10n-work has quit [Ping timeout: 252 seconds]
dmj` has quit [Ping timeout: 252 seconds]
angerman has quit [Ping timeout: 258 seconds]
eddyb[legacy] has joined #nixos
diamondman has joined #nixos
wildsebastian has joined #nixos
dgpratt has joined #nixos
cstrahan has joined #nixos
dsal has quit [Ping timeout: 260 seconds]
betawaffle has joined #nixos
gluegadget has joined #nixos
jfhbrook has joined #nixos
eddyb[legacy] has quit [Excess Flood]
SanchayanMaity has joined #nixos
betawaffle has quit [Excess Flood]
bgupta has joined #nixos
miscalculated has joined #nixos
angerman has joined #nixos
eddyb[legacy] has joined #nixos
dsal has joined #nixos
cbarrett has joined #nixos
cz3 has joined #nixos
visl has joined #nixos
betawaffle has joined #nixos
higherorder__ has joined #nixos
pingveno has joined #nixos
CustosLimen has joined #nixos
r0bby has joined #nixos
SrPx has joined #nixos
omnigoat has joined #nixos
rizary has joined #nixos
raboof has joined #nixos
boolman has joined #nixos
feepo has joined #nixos
dmj` has joined #nixos
andreas303 has quit [Ping timeout: 240 seconds]
teej has joined #nixos
boolman has left #nixos [#nixos]
boolman has joined #nixos
elvishjerricco has joined #nixos
boolman has left #nixos [#nixos]
PorkySpine has joined #nixos
boolman has joined #nixos
zupo has joined #nixos
andreas303 has joined #nixos
d1rewolf has joined #nixos
hoek has joined #nixos
d10n-work has joined #nixos
lstanley has joined #nixos
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #118885 → qutebrowser: don't crash on :version command → https://github.com/NixOS/nixpkgs/pull/118885
<supersandro2000> WTF. my client just crashed because of the net split
muppeth has quit [Changing host]
muppeth has joined #nixos
lally has joined #nixos
lally has quit [Changing host]
HeN has joined #nixos
HeN has quit [Changing host]
georgyo has joined #nixos
steveeJ has joined #nixos
georgyo has quit [Changing host]
steveeJ has quit [Changing host]
rodarmor has joined #nixos
diamondman has joined #nixos
newhoggy has joined #nixos
wildsebastian has joined #nixos
cstrahan has joined #nixos
diamondman has quit [Changing host]
CustosLimen has joined #nixos
gluegadget has joined #nixos
wildsebastian has quit [Changing host]
SanchayanMaity has joined #nixos
miscalculated has joined #nixos
bgupta has joined #nixos
dgpratt has joined #nixos
angerman has joined #nixos
dsal has joined #nixos
jfhbrook has joined #nixos
eddyb[legacy] has joined #nixos
betawaffle has joined #nixos
rodarmor has quit [Changing host]
cz3 has joined #nixos
newhoggy has quit [Changing host]
cstrahan has quit [Changing host]
angerman has quit [Changing host]
visl has joined #nixos
higherorder__ has joined #nixos
dsal has quit [Changing host]
miscalculated has quit [Changing host]
dgpratt has quit [Changing host]
gluegadget has quit [Changing host]
CustosLimen has quit [Changing host]
bgupta has quit [Changing host]
eddyb[legacy] has quit [Changing host]
SanchayanMaity has quit [Changing host]
jfhbrook has quit [Changing host]
cz3 has quit [Changing host]
betawaffle has quit [Changing host]
higherorder__ has quit [Changing host]
visl has quit [Changing host]
SrPx has joined #nixos
pingveno has joined #nixos
rizary has joined #nixos
omnigoat has joined #nixos
dmj` has joined #nixos
feepo has joined #nixos
teej has joined #nixos
SrPx has quit [Changing host]
omnigoat has quit [Changing host]
pingveno has quit [Changing host]
rizary has quit [Changing host]
lstanley has joined #nixos
d1rewolf has joined #nixos
d10n-work has joined #nixos
dmj` has quit [Changing host]
hoek has joined #nixos
feepo has quit [Changing host]
teej has quit [Changing host]
lstanley has quit [Changing host]
d10n-work has quit [Changing host]
d1rewolf has quit [Changing host]
hoek has quit [Changing host]
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg opened pull request #118886 → sdrangel: 6.4.0 -> 6.8.0 → https://github.com/NixOS/nixpkgs/pull/118886
<boolman> Hi, im trying to write a nix shell script, for some reason this doesnt work in the script but works in the cli, #! nix-shell -i bash -I nixpkgs=~/git/nixos/nixpkgs -p openjdk7
<boolman> the script cant find the path for java
attila_lendvai_ has joined #nixos
Guest64712 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @peterhoeg merged pull request #118772 → lcdproc: do not show the GPL on every start → https://github.com/NixOS/nixpkgs/pull/118772
BlessJah has joined #nixos
jess has quit [Quit: Changing server]
domogled has joined #nixos
ml| has joined #nixos
jess has joined #nixos
colemickens has joined #nixos
<colemickens> Ronny: often times users will have different configuration.nix files that import common modules
mkDoku has joined #nixos
<colemickens> Otherwise you can do certain things with `(if config.networking.hostName == "foo" then pkgs.foo else pkgs.fooBeta)`.
ronny has joined #nixos
<ronny> colemickens: i already have that, currently i have to manually write a different file per system to select system specific modules, i'd like a way to figure what system im on as a starting point
FRidh has joined #nixos
<colemickens> It's hard to know exactly what you mean, but I'd highly recommend not trying to use the build machine hostname to change config.
<colemickens> I generally suggest people seek to remove build impurities rather than introduce more.
<colemickens> Flakes makes this pattern really nice, and the tooling makes it so you can omit the hostname, etc.
ml| has quit [Ping timeout: 258 seconds]
<ronny> sometimes i want to build a vm for a different machine from the config - the basic idea is that i have a git repo for all my machine configs, and on each system it auto picks, but i can run the builds on a different system to create vms to check
<colemickens> sure, that's what I mean too
CRTified[m] has joined #nixos
<CRTified[m]> I think the expression posted by colemickens is the one closest to what you want right now
<CRTified[m]> Maybe look at nixops then?
<ronny> then im just missing a detail on how to take those settings from there and putting them ito a cli command
leon[m] has joined #nixos
* colemickens doesn't have the heart to try to walk through a full non-flakey example
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/02fa062f99b (from 10 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
devhell has joined #nixos
mkDoku has quit [Ping timeout: 252 seconds]
<colemickens> Without flakes, I still think I'd recommend a per-machine-config.nix that you symlink into place.
<colemickens> because even if you DO use that conditional logic...
<colemickens> you still need a place to define the machine hostname, right?
<colemickens> you've sorta just moved the problem by burying it under conditionals that depend on some ohter piece of your nix config ;)
mkDoku has joined #nixos
<ronny> i dont have conditionals a lot, i have one module per "hostname" and modules per software/user set - i really just want to get rid of that symlink i put in place imperatively
<{^_^}> [nixpkgs] @dotlambda opened pull request #118887 → python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2 → https://github.com/NixOS/nixpkgs/pull/118887
hyper_ch2 has joined #nixos
<colemickens> uh
boolman has left #nixos [#nixos]
<CRTified[m]> You could have one configuration.nix where you import a param.nix with just `{hostname = "myAwesomeMachine";}` in it :)
<CRTified[m]> That's how I'm doing it
<colemickens> that sounds like even more work than a single symlink tho?
<colemickens> just not sure I understand exactly what the goal is
<colemickens> if it's just convenience, honestly just adopt flakes, you'll be happy
<colemickens> `nixos-rebuild switch --flake github:colemickens/nixcfg` will automatically switch to the config defined in my flake that matches the current machine hostname
xourt has joined #nixos
<colemickens> but I can also build a specific machine by running `nix build github:colemickens/nixcfg#toplevels.some-hostname`
<ronny> oh
<ronny> OH
<ronny> thats what i was missing then
<ronny> i should totally go flakes
<ronny> curently what i do is write a machines/current.nix which really just declares a import to ./realname.nix
<ronny> btw, how does flakes manage local checkouts?
mxco86 has joined #nixos
hexagoxel has joined #nixos
Diogo930 has joined #nixos
InvisibleRasta has joined #nixos
JerryXiao has joined #nixos
doublej41 has joined #nixos
ldlework has joined #nixos
ent has joined #nixos
jsoo has joined #nixos
bigvalen has joined #nixos
mzan has joined #nixos
jhuizy has joined #nixos
samueldr has joined #nixos
maljub01 has joined #nixos
primeos has joined #nixos
ryzokuken has joined #nixos
Rovanion has joined #nixos
ornxka has joined #nixos
multun has joined #nixos
_cyril_ has joined #nixos
dominikh has joined #nixos
tru_tru has joined #nixos
dev1 has joined #nixos
wentasah has joined #nixos
gentauro has joined #nixos
Jackneill has joined #nixos
joehh1 has joined #nixos
figgyc has joined #nixos
wrl has joined #nixos
ktosiek has joined #nixos
rager has joined #nixos
dupon1 has joined #nixos
haya has joined #nixos
amosbird has joined #nixos
edcragg has joined #nixos
danderson has joined #nixos
DerHorst has joined #nixos
dirkx has joined #nixos
craige_ has joined #nixos
luigy has joined #nixos
Luker has joined #nixos
night has joined #nixos
jimki has joined #nixos
statusfailed has joined #nixos
notgne2 has joined #nixos
ktosiek has quit [Max SendQ exceeded]
DerHorst has quit [Max SendQ exceeded]
<ronny> (i typically have my nix configs checked out in my home, and symlink it to etc, there probably is a better way by now)
DerHorst has joined #nixos
<colemickens> ah, `github:colemickens/nixcfg` is a flake ref
ktosiek has joined #nixos
<colemickens> `/some/path` works too
<colemickens> this is a decent crash course: https://nixos.wiki/wiki/Flakes
ml| has joined #nixos
<colemickens> and I have a simple flake here that has some text about why/what/how and a demo config: https://github.com/colemickens/nixos-flake-example
stigo has quit [Quit: stigo]
<ronny> i see, how would one use a flake "unlockd" as in use whatever the checkout on the system is right now?
<colemickens> just use the path as I mentioned
<colemickens> `nix build /home/cole/code/nixcfg#toplevels.slynux` is going to build my machine from that directory, with whatever changes there are (it just wont pick up any files that havent been added to git)
afreakk has quit [Ping timeout: 265 seconds]
<colemickens> anyway, I need to sleep, but good luck!
<CRTified[m]> What was that command to locate the derivation that provides files/shared objects again?
afreak has joined #nixos
<CRTified[m]> (here in IRC)
<{^_^}> [nixpkgs] @Ma27 merged pull request #118882 → nextcloud: 21.0.0 -> 21.0.1 → https://github.com/NixOS/nixpkgs/pull/118882
<dutchie> ronny: i have https://git.sr.ht/~jshholland/nixos-configs/tree checked out in my ~ and symlink /etc/nixos/flake.nix to it
<CRTified[m]> I'm trying to get teams running and autoPatchelfHook is missing three shared objects
<dutchie> then i can just do `sudo nixos-rebuild switch` and it picks up whatever changes i have locally, committed or not
<dutchie> (though they at least have to be `git add`ed)
<ronny> thanks, i'll dig a bit more later
<{^_^}> [nixpkgs] @Ma27 pushed commit from @beardhatcode to release-20.09 « nextcloud: 21.0.0 -> 21.0.1 »: https://git.io/JOeTF
<dutchie> feel free to ping me about any questions you have in my config
<srk> ,locate libssl.so
<{^_^}> Found in packages: openssl, robomongo, scilab-bin, libressl_3_0, netcat-openbsd, openssl-chacha
<srk> CRTified[m]: ^
<CRTified[m]> Thanks srk :)
<CRTified[m]> I just noticed that there's something entirely different wrong - the store path got corrupted o.o
mz` has joined #nixos
mz` has quit [Changing host]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118881 → python3Packages.twitterapi: 2.6.8 -> 2.6.10 → https://github.com/NixOS/nixpkgs/pull/118881
<sss2> hi all, have anyone faced problems with nix on foreign os after upgrading to musl based nix builds ?
<{^_^}> [nixpkgs] @dotlambda opened pull request #118888 → python3Packages.urwid-readline: 0.12 -> 0.13 → https://github.com/NixOS/nixpkgs/pull/118888
vidbina has joined #nixos
<{^_^}> [nixpkgs] @balsoft merged pull request #112477 → buildMix: fix: initial try → https://github.com/NixOS/nixpkgs/pull/112477
<{^_^}> [nixpkgs] @taku0 opened pull request #118889 → thunderbird, thunderbird-bin: 78.9.0 -> 78.9.1 [Moderate security fixes] → https://github.com/NixOS/nixpkgs/pull/118889
Lord_of_Life has quit [Excess Flood]
Lord_of_Life has joined #nixos
<supersandro2000> sss2: nixStatic?
afreakk has joined #nixos
<sss2> supersandro2000, mmm ?
<sss2> supersandro2000, on this new build nix just stopping work for me
dotdotok has joined #nixos
<sss2> supersandro2000, with weird errors, but not linkage errors
<sss2> supersandro2000, nix-env i mean, i am still able to downgrade to working version via "nix updade-nix"
<sss2> *"nix upgrade-nix"
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/f2602a0e2a5 (from 9 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
FRidh has quit [Ping timeout: 276 seconds]
ml| has quit [Ping timeout: 240 seconds]
puzzlewolf has joined #nixos
m1kr0[m] has joined #nixos
fufexan[m] has joined #nixos
princemachiavell has joined #nixos
vexedblaze has joined #nixos
t_unix[m] has joined #nixos
nicolas[m] has joined #nixos
NobbZ[m] has joined #nixos
ongy[m] has joined #nixos
madonius[m] has joined #nixos
wvud[m] has joined #nixos
eddyb has joined #nixos
immae has joined #nixos
slby[m] has joined #nixos
a12l has joined #nixos
grin[m] has joined #nixos
Kng[m] has joined #nixos
musicmatze has joined #nixos
aaronjanse has joined #nixos
heyarne[m] has joined #nixos
codebam_ has joined #nixos
anton[m] has joined #nixos
ArtemPelenitsyn[ has joined #nixos
idkrn[m] has joined #nixos
daemon1024 has joined #nixos
ptotter[m] has joined #nixos
lambdaclan has joined #nixos
dunc4n has joined #nixos
regnat[m] has joined #nixos
danielrf[m] has joined #nixos
fossdd[m] has joined #nixos
axx has joined #nixos
FreeVariable has joined #nixos
rmcgibbo[m] has joined #nixos
faya01[m] has joined #nixos
cwnovusordoseclo has joined #nixos
leonardp has joined #nixos
ma27[m] has joined #nixos
philipp[m] has joined #nixos
emily has joined #nixos
blah1367[m] has joined #nixos
Edmund[m] has joined #nixos
hiking[m] has joined #nixos
hdjdjd[m] has joined #nixos
Linus[m]1 has joined #nixos
fendingshadows[m has joined #nixos
socialjusticewaf has joined #nixos
spacetato has joined #nixos
leibniz[m] has joined #nixos
sebbadk[m] has joined #nixos
aanderse has joined #nixos
awaxa has joined #nixos
arcnmx has joined #nixos
ThaEwat has joined #nixos
Dandellion has joined #nixos
antholop[m] has joined #nixos
us3r[m] has joined #nixos
edrex has joined #nixos
tristan[m] has joined #nixos
JaakkoLuttinen[m has joined #nixos
e[m] has joined #nixos
FOSSGuy[m] has joined #nixos
mvnetbiz_ has joined #nixos
jbarthelmes[m] has joined #nixos
Ke has joined #nixos
OJ[m] has joined #nixos
manveru[m] has joined #nixos
jtojnar has joined #nixos
dmytrokurch[m] has joined #nixos
juansucks[m] has joined #nixos
kuel0[m] has joined #nixos
ricklafleur[m] has joined #nixos
alexfmpe has joined #nixos
hypn0z[m] has joined #nixos
steve[m] has joined #nixos
akirill0v[m] has joined #nixos
psibi[m] has joined #nixos
rycee has joined #nixos
konfou[m] has joined #nixos
mt[m] has joined #nixos
notgne2[m] has joined #nixos
nh2[m] has joined #nixos
mith[m] has joined #nixos
SumnerEvans[m] has joined #nixos
kevin_m02[m] has joined #nixos
john-appleseed[m has joined #nixos
q3k[m] has joined #nixos
chreekat[m] has joined #nixos
kevin[m]1 has joined #nixos
alexisnotme[m] has joined #nixos
jul1u5[m] has joined #nixos
JJJollyjim has joined #nixos
toasty_avocado[m has joined #nixos
Yakulu[m] has joined #nixos
duffelbag[m] has joined #nixos
aiden[m] has joined #nixos
ero-sennin[m] has joined #nixos
marius_k[m]1 has joined #nixos
hsiktas[m] has joined #nixos
eadwu has joined #nixos
aynish has joined #nixos
garbas[m] has joined #nixos
artturin has joined #nixos
JrgKtemeier[m] has joined #nixos
jdnixx[m] has joined #nixos
omasanori[m] has joined #nixos
DevTurks[m] has joined #nixos
pheoxy has joined #nixos
peterstorm[m] has joined #nixos
Minijackson has joined #nixos
Roos[m] has joined #nixos
kclejeune[m] has joined #nixos
fgaz has joined #nixos
ppom[m] has joined #nixos
odiug[m] has joined #nixos
raccoon[m] has joined #nixos
ebbertd[m] has joined #nixos
programming[m]1 has joined #nixos
xelaushi[m] has joined #nixos
j0ni[m] has joined #nixos
thefloweringash has joined #nixos
gurkan[m] has joined #nixos
enno[m] has joined #nixos
DavHau[m] has joined #nixos
Unempl0yed[m] has joined #nixos
figsoda[m] has joined #nixos
teutat3s[m]1 has joined #nixos
ryantm has joined #nixos
chvp has joined #nixos
ayyess[m] has joined #nixos
Brian[m]1 has joined #nixos
veleiro has joined #nixos
viq[m] has joined #nixos
eliasp[m] has joined #nixos
zuh0 has joined #nixos
photonshift[m] has joined #nixos
nicbk has joined #nixos
wiszki[m] has joined #nixos
Valodim[m] has joined #nixos
vancoding[m] has joined #nixos
Piece_Maker has joined #nixos
rednaZ[m] has joined #nixos
scheibenkleister has joined #nixos
alienpirate5 has joined #nixos
fiveseven[m] has joined #nixos
unclechu has joined #nixos
lemmie[m]1 has joined #nixos
roberth has joined #nixos
RageGamermatrixo has joined #nixos
jbal[m] has joined #nixos
kalbasit[m] has joined #nixos
bendlas has joined #nixos
contrun has joined #nixos
dbirks[m] has joined #nixos
ploupiboulba[m] has joined #nixos
bitonic has joined #nixos
davidak[m] has joined #nixos
Robozman[m] has joined #nixos
bbigras has joined #nixos
Liam[m] has joined #nixos
maralorn has joined #nixos
ravecoin[m] has joined #nixos
ejpcmac has joined #nixos
vasishath[m] has joined #nixos
dotdotok[m] has joined #nixos
epitron[m] has joined #nixos
ThomasGummerer[m has joined #nixos
michaelpj has joined #nixos
sobet[m] has joined #nixos
enjoinedmot[m] has joined #nixos
figgyc[m] has joined #nixos
jschievink has joined #nixos
juliendehos[m] has joined #nixos
ili has joined #nixos
Lorenzoas3ii[m] has joined #nixos
Schicko has joined #nixos
suprime[m] has joined #nixos
humancalico[m] has joined #nixos
pbcheesecake[m] has joined #nixos
petrichor has joined #nixos
MichaelAmoani[m] has joined #nixos
bekkvann[m] has joined #nixos
kloenk has joined #nixos
oreoking[m] has joined #nixos
qbit[m] has joined #nixos
coloneljohnby[m] has joined #nixos
tad-lispy[m] has joined #nixos
M0x76[m] has joined #nixos
BinkyTheClown has joined #nixos
tim92[m] has joined #nixos
mhj[m] has joined #nixos
diegov_ has joined #nixos
siraben has joined #nixos
afontain_ has joined #nixos
therajsun[m] has joined #nixos
DamienCassou has joined #nixos
marin[m] has joined #nixos
alarsyo[m] has joined #nixos
Lurkki[m] has joined #nixos
hazel[m] has joined #nixos
yurb has joined #nixos
iv_nn[m] has joined #nixos
btdmaster[m] has joined #nixos
inferno_geek[m] has joined #nixos
ms[m] has joined #nixos
cogito271[m] has joined #nixos
timstott[m] has joined #nixos
MatthieuCoudron[ has joined #nixos
kgjfeduwieigt83e has joined #nixos
landed-pending[m has joined #nixos
ptival[m] has joined #nixos
ipv6[m] has joined #nixos
phirsch has joined #nixos
Paul[m]5 has joined #nixos
nikola[m] has joined #nixos
kunrooted[m] has joined #nixos
sarcasticdream[m has joined #nixos
ydlr[m] has joined #nixos
neonfuz2 has joined #nixos
oh_lawd[m] has joined #nixos
pacc[m] has joined #nixos
v0lde[m] has joined #nixos
mica[m] has joined #nixos
berberman[T] has joined #nixos
Essence[m] has joined #nixos
leons has joined #nixos
Ericson2314 has joined #nixos
mrketsuban[m] has joined #nixos
thewarsawpakt[m] has joined #nixos
fliegendewurst[m has joined #nixos
throwaway740928[ has joined #nixos
ekotik[m] has joined #nixos
cemguresci[m] has joined #nixos
demostanis[m] has joined #nixos
bourbon has joined #nixos
RyuKurisu[m] has joined #nixos
afreakk has quit [Ping timeout: 258 seconds]
st3r4g[m] has joined #nixos
LuxExUmbra has joined #nixos
rnhmjoj has joined #nixos
srid has joined #nixos
mindtree[m] has joined #nixos
l-as has joined #nixos
hpfr has joined #nixos
phjlip[m] has joined #nixos
Ox4A6F has joined #nixos
beardhatcode has joined #nixos
sk4l[m] has joined #nixos
Miguel[m] has joined #nixos
goibhniu has joined #nixos
mjlbach has joined #nixos
gh0st[m] has joined #nixos
andutu[m] has joined #nixos
zipfelsack[m] has joined #nixos
cab404[m] has joined #nixos
l33[m] has joined #nixos
Raphael[m] has joined #nixos
jojosch[m] has joined #nixos
pdp8[m] has joined #nixos
Satyasheel[m] has joined #nixos
rschulman has joined #nixos
waxlamp[m] has joined #nixos
davidwhiting[m] has joined #nixos
nwp[m] has joined #nixos
jumper[m] has joined #nixos
sshow[m] has joined #nixos
pager[m] has joined #nixos
bachp has joined #nixos
domenkozar[m] has joined #nixos
fuzzypixelz[m] has joined #nixos
kraem[m] has joined #nixos
disposabled[m] has joined #nixos
jgart[m] has joined #nixos
Milanfallbackacc has joined #nixos
tjammer[m] has joined #nixos
jhgarner[m] has joined #nixos
kevincox has joined #nixos
DarkTrancer[m] has joined #nixos
Antoine01[m] has joined #nixos
ibizaman[m] has joined #nixos
alexrelis[m] has joined #nixos
legendofmiracles has joined #nixos
atemu12[m] has joined #nixos
spinus[m] has joined #nixos
cepheus has joined #nixos
GideonOgbonna[m] has joined #nixos
M86ul[m] has joined #nixos
anser78[m] has joined #nixos
grahamc[m] has joined #nixos
crazazy[m] has joined #nixos
AlesHuzik[m] has joined #nixos
hiroshi[m] has joined #nixos
kenny[m]1 has joined #nixos
tomek[m] has joined #nixos
tutitau[m] has joined #nixos
tams[m] has joined #nixos
codyopel has joined #nixos
enblanco[m] has joined #nixos
wangoe[m] has joined #nixos
ogroendal[m] has joined #nixos
jamesrains[m] has joined #nixos
AnAmigian[m] has joined #nixos
ramses[m] has joined #nixos
soiledit[m] has joined #nixos
babbaj[m] has joined #nixos
kerru_an[m] has joined #nixos
veryepicusername has joined #nixos
kb[m] has joined #nixos
korrr[m] has joined #nixos
cidkid[m] has joined #nixos
Annika[m] has joined #nixos
pacc6[m] has joined #nixos
gyzac[m] has joined #nixos
shmakes[m] has joined #nixos
onny[m] has joined #nixos
dev-kcw[m] has joined #nixos
ThomasTuegel[m] has joined #nixos
redcedar[m] has joined #nixos
RomanBall[m] has joined #nixos
FRidh has joined #nixos
Synthetica has joined #nixos
lopsided98_ has quit [Ping timeout: 260 seconds]
<supersandro2000> sss2: I would need some more details to help you
<sss2> minute, i will broke ir one more time
lopsided98 has joined #nixos
<supersandro2000> >> unsafeDiscardStringContext
mkDoku has quit [Quit: leaving]
<supersandro2000> no idea why this happens but you are not the only one the last days
<{^_^}> [nixpkgs] @sternenseemann opened pull request #118890 → ocamlPackages.mirage-crypto*: 0.9.1 -> 0.9.2 → https://github.com/NixOS/nixpkgs/pull/118890
<sss2> fortunately "old" version still works
<sss2> maybe it is wise to remove new musl based build from nixpkgs ?
<{^_^}> [nixpkgs] @sternenseemann merged pull request #118435 → haskellPackages.ghc-bignum: unbreak → https://github.com/NixOS/nixpkgs/pull/118435
<supersandro2000> sss2: can you run the failing command with --show-trace again?
FRidh has quit [Ping timeout: 265 seconds]
FRidh has joined #nixos
<sss2> on working installation ?
<supersandro2000> where it fails
ml| has joined #nixos
fuiltilt has quit [Quit: WeeChat 2.9]
fendor has joined #nixos
<djm> sss2: I have the same issue; nix-env -u always wants to upgrade nix-2.3.10 to nix-2.3.10-x86_64-unknown-linux-musl, and then nix-env -i/-u fails with that error until I --rollback
ml| has quit [Ping timeout: 252 seconds]
logand has joined #nixos
xourt has quit [Ping timeout: 240 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
n-osborne has quit [Remote host closed the connection]
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @Ma27 opened pull request #118892 → wdisplays: 1.0 -> 2021-04-03 → https://github.com/NixOS/nixpkgs/pull/118892
philr has quit [Ping timeout: 265 seconds]
ml| has joined #nixos
rsynnest has quit [Quit: Connection closed for inactivity]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #118746 → bluez: 5.56 -> 5.58 → https://github.com/NixOS/nixpkgs/pull/118746
<{^_^}> [nixpkgs] @mweinelt merged pull request #118865 → home-assistant: 2021.4.0 -> 2021.4.1 → https://github.com/NixOS/nixpkgs/pull/118865
ml| has quit [Ping timeout: 240 seconds]
malook has joined #nixos
<JaakkoLuttinen[m> I have a Python environment defined as `env = pkgs.python3.withPackages (ps: with ps; [ jupyterlab pandas ...])`. Now I'd need to add some non-Python packages to `PATH` so that when some executable in my Python environment is called, they'd find some other packages (`xelatex` in particular). What would be a convenient way to modify the Python environment so that these other packages are added to PATH in that way? Now
<JaakkoLuttinen[m> I just used `runCommand` with `makeWrapper` to create another environment where I have wrapped chosen executables.
<{^_^}> [nixpkgs] @doronbehar closed pull request #98767 → hotdoc: init at 0.12.2 → https://github.com/NixOS/nixpkgs/pull/98767
malook1 has joined #nixos
malook has quit [Read error: Connection reset by peer]
malook1 is now known as malook
<{^_^}> [nixpkgs] @petabyteboy merged pull request #118883 → systems: add appropriate rustc.config for android → https://github.com/NixOS/nixpkgs/pull/118883
orivej has quit [Ping timeout: 248 seconds]
attila_lendvai_ has quit [Ping timeout: 276 seconds]
cinimod has joined #nixos
<srhb> JaakkoLuttinen[m: I would assume that the result of withPackages and its .env are both overridable such that `(withPackages ...).overrideAttrs (oa: { buildInputs = [ foo ]; })` would work fine.
xourt has joined #nixos
<JaakkoLuttinen[m> srhb: Interesting! I'll try.
<afontain_> I am trying to make a derivation for a game, and I have a neat little sh script from upstream to fetch the game assets
<afontain_> can I just reuse it?
<afontain_> that would mean give it access to the internet at build time
andi- has quit [Ping timeout: 246 seconds]
ml| has joined #nixos
malook has quit [Quit: malook]
xourt has quit [Client Quit]
n-osborne has quit [Remote host closed the connection]
stree has quit [Ping timeout: 265 seconds]
<srhb> afontain_: Are the assets static?
<srhb> afontain_: In other words, can you predict the output hash? If so, you can do it like any other fetcher in nixpkgs.
<afontain_> it seems it is for a version of the game
<afontain_> one can download the game_$version.torrent and get that
andi- has joined #nixos
<afontain_> though maybe it would be simpler to just include the bare minimum to reach the main menu and let it autodownload stuff
<{^_^}> [nixpkgs] @primeos opened pull request #118893 → chromiumDev: 91.0.4464.5 -> 91.0.4469.4 → https://github.com/NixOS/nixpkgs/pull/118893
ml| has quit [Ping timeout: 268 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/6f630a97e15 (from 79 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<srhb> afontain_: That does sound simpler. But the answer is yes, you could do it like any other fetcher iff the output hash is deterministic. Any derivation that can predict its output is allowed to use the network.
<JaakkoLuttinen[m> srhb: `(pkgs.python3.withPackages (ps: [...])).overrideAttrs (oldAttrs: { buildInputs = oldAttrs.buildInputs ++ [ foo bar ]; })` <-- this didn't add foo and bar to PATH when running executables in the Python environment.. 🤔
<{^_^}> [nixpkgs] @mweinelt merged pull request #118887 → python3Packages.pyturbojpeg: 1.4.1 -> 1.4.2 → https://github.com/NixOS/nixpkgs/pull/118887
<cinimod> I am trying to run the benchmarks in a haskell package: https://github.com/haskell-numerics/random-fu/blob/master/tests/speed/speed-tests.cabal but I get Setup: No executables and no library found. Nothing to do.
<cinimod> Indeed there is no executable or library
<srhb> JaakkoLuttinen[m: Don't you want to override the ".env" attribute of the withPackages result?
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/a6847cb5460 (from 86 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<afontain_> srhb: would I need to write my on
<srhb> JaakkoLuttinen[m: I'm unsure whether you're using this in a shell or a build environment
<afontain_> *own fetcher?
<FRidh> JaakkoLuttinen[m: use override to override the call to buildEnv, instead of overrideAttrs, which overrides the call to mkDerivation
<srhb> afontain_: https://nixos.org/manual/nix/stable/#fixed-output-drvs -- setting those values will suffice. (essentially just outputHash)
<afontain_> I didn't see a "command fetcher" in https://nixos.org/manual/nixpkgs/stable/#chap-pkgs-fetchers
<srhb> Sorry, it's an overloaded term for "some derivation that can be more or less generic and has an outputHash and uses the network to get stuff"
<cinimod> answering my own question `callCabal2nixWithOptions` with `--benchmark`
<cinimod> Oh no it still fails
<cinimod> So it actually builds the benchmark successfully and then gives the error
<cinimod> There's probably some nix thingy like `doBenchmark` that I should be using
<srhb> afontain_: So essentially it's just `runCommandNoCC "my-asset-fetcher" { outputHash = "..."; } "./the-script-from-upstream"
<srhb> +/- some $out creation :)
<JaakkoLuttinen[m> srhb: Hmm.. I'm not quite sure. I'm using my env definition in a systemd service ExecStart. Something like: `ExecStart = "${env}/bin/jupyterhub-singleuser";`
stree has joined #nixos
<srhb> JaakkoLuttinen[m: And what is env? `withPackages (...)` or `(withPackages (...)).env` ?
<JaakkoLuttinen[m> srhb: `env = (pkgs.python3.withPackages (ps: [...])).overrideAttrs (oldAttrs: { buildInputs = oldAttrs.buildInputs ++ [ foo bar ]; })`
<JaakkoLuttinen[m> (Or without that overrideAttrs stuff..)
<JaakkoLuttinen[m> So, `env = (pkgs.python3.withPackages (ps: [...]))`
<srhb> JaakkoLuttinen[m: I _think_ that'd work if it were the override of .env instead, but I don't know the python infra that well.
<JaakkoLuttinen[m> * So, `env = pkgs.python3.withPackages (ps: [...])`
<JaakkoLuttinen[m> FRidh: Ok, thanks! However, I couldn't figure out how to use override.. `env = (pkgs.python3.withPackages (ps: [...])).override ??WHAT_HERE??`
<cinimod> Is there a way of patching the cabal file to replace "benchmark" with "executable" somehow or am I clutching at straws
ml| has joined #nixos
orivej has joined #nixos
<FRidh> JaakkoLuttinen[m: indeed
<FRidh> withPackages returns a python.buildEnv
ml| has quit [Ping timeout: 240 seconds]
zebrag has joined #nixos
<JaakkoLuttinen[m> FRidh: `env = pkgs.python3.buildEnv.override { extraLibs = [ pkgs.python3Packages.jupyterlab pkgs.foo pkgs.bar ]; };` didn't wrap Jupyter Lab executable in such a way foo and bar would be in when called. At least looks like that to me. Also, isn't this equivalent to `env = pkgs.python3.withPackages (ps: [ ps.jupyterlab pkgs.foo pkgs.bar ]);` so maybe I was missing something how the override should've been used to get
<JaakkoLuttinen[m> a different result than `withPackages`..? Or I'm doing something wrong..
<srhb> JaakkoLuttinen[m: fwiw you could use makeWrapperArgs instead of extraLibs
<hexa-> what was attribute one needed to build to run through nixos tests interactively?
<hexa-> the*
<srhb> JaakkoLuttinen[m: But honestly, stepping back, I think your approach with external wrapper was fine. Ideally the individual package that needs some external PATH element should be overriden directly, but in this case you could either wrap externally (as you did) internally (as suggested with the buildEnv override) or just set systemd.services.foo.paths
<srhb> hexa-: driverInteractive (in newer nixpkgs)
<hexa-> srhb++
<{^_^}> srhb's karma got increased to 146
sangoma has quit [Quit: WeeChat 3.1]
liuyb has quit [Ping timeout: 248 seconds]
<FRidh> JaakkoLuttinen[m: non-python packages get dropped from that buildEnv and are thus not included
ml| has joined #nixos
<FRidh> I misread your initial message that it was about non-python packages
<FRidh> passing makeWrapperArgs is to be used for that
<JaakkoLuttinen[m> FRidh srhb `env = (pkgs.python3.withPackages (ps: with ps; [ ...])).override { makeWrapperArgs = with pkgs; [ "--prefix" "PATH" ":" "${foo}/bin" ]; }` worked perfectly! Thanks a lot! 👍️
<srhb> JaakkoLuttinen[m: yay :)
avaq has quit [Ping timeout: 248 seconds]
sangoma has joined #nixos
avaq has joined #nixos
<pinpox> Nixos just made top Post on hackernesws https://tech.channable.com/posts/2021-04-09-nix-is-the-ultimate-devops-toolkit.html , nice!
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @dotlambda merged pull request #118885 → qutebrowser: don't crash on :version command → https://github.com/NixOS/nixpkgs/pull/118885
ml| has quit [Ping timeout: 268 seconds]
<eyJhb> pinpox: First Hackernews, then the world.
<srhb> pinpox: tazjin's vague teaser is especially intriguing :P
<afontain_> I have a package that's under CC-by-sa-2.5
<afontain_> but licenses.cc-by-sa25 doesn't exist
<afontain_> (unlike cc-by-sa30 and cc-by-sa40)
<tazjin> srhb: we need a few more months, but there are already places where you can kind of follow along with what's happening :)
<srhb> tazjin: I have been spying on tvl.fyi -- very interesting! :)
<eyJhb> What is tazjin hacking together atm.?
<eyJhb> How.. Did you engage people from spotify?
<tazjin> eyJhb: I used to work there many moons ago
<eyJhb> Ahhh
<eyJhb> I see
<eyJhb> Sounded like you put in a add :p
<afontain_> whoops nevermind
<afontain_> I forgot a dash
<eyJhb> I actually thought you wanted to rewrite nix package manager in Rust tazjin
<tazjin> eyJhb: we're not building another monolith, but yes there is (some) Rust
palo1 has joined #nixos
zupo has joined #nixos
palo1 is now known as palo
saschagrunert has quit [Remote host closed the connection]
ml| has joined #nixos
boredom101 has joined #nixos
<{^_^}> [nixpkgs] @Kloenk opened pull request #118894 → rustc: reenable aarch64-darwin for 1.51.0 → https://github.com/NixOS/nixpkgs/pull/118894
lejonet has left #nixos ["WeeChat 3.0"]
ml| has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #118895 → python3Packages.pywizlight: 0.4.5 -> 0.4.6 → https://github.com/NixOS/nixpkgs/pull/118895
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nix] @dramforever opened pull request #4700 → Revert #4595: libfetchers/tarball: Lock on effectiveUrl → https://github.com/NixOS/nix/pull/4700
waleee-cl has joined #nixos
philr has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #117618 → nixos/docker: re-add network.target → https://github.com/NixOS/nixpkgs/pull/117618
afreakk has joined #nixos
__monty__ has joined #nixos
meh` has joined #nixos
berberman has joined #nixos
<hexa-> Ke: test
boolman has joined #nixos
berberman_ has quit [Ping timeout: 260 seconds]
ml| has joined #nixos
avaq has quit [Ping timeout: 265 seconds]
FRidh has quit [Ping timeout: 240 seconds]
FRidh has joined #nixos
<{^_^}> [nix] @edolstra pushed to master « Revert "libfetchers/tarball: Lock on effectiveUrl" »: https://git.io/JOegs
<{^_^}> [nixpkgs] @petabyteboy merged pull request #118894 → rustc: reenable aarch64-darwin for 1.51.0 → https://github.com/NixOS/nixpkgs/pull/118894
<{^_^}> [nixpkgs] @mweinelt opened pull request #118896 → nixos/tests/home-assistant: fix mosquitto configuration → https://github.com/NixOS/nixpkgs/pull/118896
justanotheruser has quit [Ping timeout: 246 seconds]
ahmedelgabri has quit [Ping timeout: 248 seconds]
<{^_^}> [nix] @dramforever closed pull request #4700 → Revert #4595: libfetchers/tarball: Lock on effectiveUrl → https://github.com/NixOS/nix/pull/4700
ml| has quit [Ping timeout: 240 seconds]
meh` has quit [Quit: I think it's time we blow this scene.]
<Izorkin> stevenroose: haven't updated your PR?
kaction has joined #nixos
ml| has joined #nixos
avaq has joined #nixos
<{^_^}> [nixpkgs] @futile opened pull request #118897 → [20.09] rustup: 1.22.1 -> 1.23.1 → https://github.com/NixOS/nixpkgs/pull/118897
<stevenroose> Izorkin: you're persistent :D How about I take a look tomorrow? :)
<stevenroose> Then I can (1) split pkg and module, (2) try update the pkg to 3.1.0 and (3) take a look at your suggestions for the module.
<Izorkin> Ok.
<heyarne[m]> i'm using nixos with the standard gnome config on 20.09. i have a problem where the weather widget always shows "weather information is currently unavailable". i have found some info how this can be fixed in other distros, but none seem to help - is here the right place to ask for help? :)
dotdotok has quit [Ping timeout: 260 seconds]
ml| has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @sternenseemann pushed to haskell-updates « haskellPackages.fuzzyfind: remove unnecessary override »: https://git.io/JOerB
ahmedelgabri has joined #nixos
mmmattyx has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #118890 → ocamlPackages.mirage-crypto*: 0.9.1 -> 0.9.2 → https://github.com/NixOS/nixpkgs/pull/118890
<{^_^}> [nixpkgs] @talyz opened pull request #118898 → nixos/gitlab: Add options to tame GitLab's memory usage somewhat → https://github.com/NixOS/nixpkgs/pull/118898
ahmedelgabri has quit [Ping timeout: 260 seconds]
boredom101 has quit [Quit: Connection closed]
m3thos has quit [Ping timeout: 246 seconds]
n-osborne has quit [Remote host closed the connection]
m3thos has joined #nixos
n-osborne has joined #nixos
eyenx has quit [Quit: Bridge terminating on SIGTERM]
ml| has joined #nixos
eyenx has joined #nixos
Babe69 has joined #nixos
<Babe69> Hot Limited Item!!! https://www.ebay.com/itm/333952068836
Babe69 has left #nixos [#nixos]
kaction has quit [Ping timeout: 240 seconds]
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @sternenseemann merged pull request #117938 → python3Packages.pypandoc: vendor patches, test w/o pandoc-citeproc → https://github.com/NixOS/nixpkgs/pull/117938
meh` has joined #nixos
stree has quit [Ping timeout: 240 seconds]
ahmedelgabri has joined #nixos
akaWolf has quit [Ping timeout: 260 seconds]
n-osborne has joined #nixos
seba09 has joined #nixos
<seba09> trying out a `nix build` of a flake, fails with: error: flake 'git+file:///home/seba/repo/cncli' does not provide attribute 'packages.x86_64-linux.defaultPackage.x86_64-linux', 'legacyPackages.x86_64-linux.defaultPackage.x86_64-linux' or 'defaultPackage.x86_64-linux'
<seba09> what am I doing wrong?
xAr86 has quit [Quit: Goodbye!]
tejing has joined #nixos
xAr86 has joined #nixos
LinuxHackerman has joined #nixos
kaction has joined #nixos
stree has joined #nixos
gulbanana has joined #nixos
<afontain_> srhb: sorry for the ping, but I'm still trying to work around runCommandNoCC. The issue I have is that it expects the result to be a single file
<srhb> afontain_: Hmm, not sure I understand? mkdir $out && cd $out ?
<srhb> afontain_: $out will be the nix store path your derivation should produce.
<srhb> s/should/must
<afontain_> let me paste this
alexherbo2 has joined #nixos
superherointj has joined #nixos
<afontain_> so specifically output path '/nix/store/50mb75967rhjp5nan8dm2lr12awhgckq-unvanquished-assets' should be a non-executable regular file
<{^_^}> [nixpkgs] @sorki opened pull request #118899 → haskellPackages: unbreak couple of packages → https://github.com/NixOS/nixpkgs/pull/118899
<afontain_> hmm, I'll make sure it's not aria2c printing the message
<srhb> afontain_: --keep-failed and inspect the build dir to determine what the actual structure is. Maybe it's just marked +x or something.
<gulbanana> i'm new to nix and trying to learn how the shell works. the README for a package i'm using, "miso", instructs me to use a default.nix to import their code and then run "nix-shell -A env". this works, but i don't understand this "env" attribute or why it's needed
<gulbanana> without it, the import doesn't happen even if i copy default.nix to shell.nix
<afontain_> it exists, but it's empty
akaWolf has joined #nixos
<srhb> afontain_: And if you run the aria command outside of a nix build (with some other nonexistent directory as -d) what does it produce?
<aria> (totally just got pinged off that :P)
<afontain_> :D
<srhb> aria: Apologies :( I'll write it out next time.
<aria> srhb: no stress lol
<afontain_> for the record, I've also checked with `mkdir $out; cd $out; aria2c http://cdn.unvanquished.net/unvanquished_$version.torrent --seed-time=0; echo ~~Done`
<afontain_> it doesn't change the outcome
marsh has quit [Ping timeout: 260 seconds]
<srhb> afontain_: Let's try running t outside of the build so we can see what it actually produces (for some $tmp/foo output directory)
<afontain_> output path that the "'/nix/store/50mb75967rhjp5nan8dm2lr12awhgckq-unvanquished-assets' should be a non-executable regular file" message is not coming from aria2c
<srhb> That is indeed nix.
<srhb> afontain_: Oh duh, this is my bad.
<afontain_> * and it confirms that …
<srhb> afontain_: You'll want outputHashMode = "recursive";
<srhb> I forgot it isn't the default.
<afontain_> I've tried to do a wget -O $out, and that worked thoug
<afontain_> *though
<afontain_> great!
<srhb> Apologies. :)
<afontain_> that's fine, I'd never have figured out anyway ^^
<srhb> afontain_: I should have linked you this originally: https://nixos.org/manual/nix/stable/#fixed-output-drvs
<srhb> Then you would have :)
<seba09> is there a nice guide for flakes?
<seba09> trying to use a flake with no success, I hoped this is going to be little bit more straight forward :-/
<etu> seba09: It's still experimental and not standardized through the RFC process, so I would stay away :)
<seba09> etu: I want to use a package that is flake, but it doesn't build because of: error: flake 'git+file:///home/seba/repo/cncli' does not provide attribute 'packages.x86_64-linux.defaultPackage.x86_64-linux', 'legacyPackages.x86_64-linux.defaultPackage.x86_64-linux' or 'defaultPackage.x86_64-linux'
marsh has joined #nixos
<srhb> gulbanana: the env attribute is an arbitrary name, it has nothing to do with the default.nix vs. shell.nix here, if no shell.nix exists it'll use default.nix
ddellacosta has joined #nixos
ddellacosta has quit [Remote host closed the connection]
ddellacosta has joined #nixos
<srhb> gulbanana: So what do you mean by "the import doesn't happen"?
<srhb> ie what did you expect to see, and what actually happened.
ddellacosta has quit [Remote host closed the connection]
zebrag has quit [Quit: Konversation terminated!]
<hodapp> oh dear, who put Nix at the top of HN? https://news.ycombinator.com/item?id=26748696
<exarkun> don't worry, attention spans are short over there
<siraben> hodapp: the people
zebrag has joined #nixos
* hodapp frolics off to go pet a kitten
<{^_^}> [nixpkgs] @sternenseemann merged pull request #118899 → haskellPackages: unbreak couple of packages → https://github.com/NixOS/nixpkgs/pull/118899
seba09 has quit [Quit: Connection closed]
<pie_> so i ran gns3 but trying to start openwrt in the vmcrashesthevm:I
orivej has quit [Ping timeout: 240 seconds]
rprije has quit [Ping timeout: 240 seconds]
lunik19 has joined #nixos
justanotheruser has joined #nixos
stigo has joined #nixos
Dr8128 has joined #nixos
respawn_ has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @Luis-Hebendanz opened pull request #118900 → firefox/wrapper.nix: Fixed issue #118860 → https://github.com/NixOS/nixpkgs/pull/118900
<{^_^}> [nixpkgs] @asymmetric opened pull request #118901 → polkadot: 0.8.29 -> 0.8.30 → https://github.com/NixOS/nixpkgs/pull/118901
ddellaco_ has joined #nixos
<srk> sterni: I test builds using e.g. NIX_PATH=nixpkgs=/home/srk/git/nixpkgs/haskell-updates nix-build -A haskellPackages.cereal-time when adding jailbreaks/overrides so no need to re-test
<srk> sterni: I might submit one more dontCheck for update-nix-fetchgit
<{^_^}> [nixpkgs] @kolaente opened pull request #118902 → cypress: 6.6.0 -> 7.0.0 → https://github.com/NixOS/nixpkgs/pull/118902
<sterni> srk: sure, I do believe you, just a second build doesn't seem like a bad idea :)
<gulbanana> <srhb> gulbanana: So what do you mean by "the import doesn't happen"? | well, i'm confused enough that my question may itself be confusing. i don't really understand whether nix-shell uses default.nix or not
<gulbanana> if it does, perhaps "env" is an attribute defined by the expression i've got in default.nix
<gulbanana> (which runs callCabal2nix)
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a6847cb5460 (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
endformationage has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/6fc2b7ecc2a (from 13 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<srhb> gulbanana: That's exactly right. Given no filename, nix0
<srhb> oops
<srhb> nix-shell will use shell.nix if it exists, otherwise default.nix, otherwise fail.
<srk> sterni: yup :) they should be reproducible.. /me tried to add --check and it exploded /o\
<srhb> gulbanana: The -A argument specifies an attribute set in the file evaluated, here env.
<gulbanana> that explains a lot, i thought the two were mutually exclusive
cantstanya has quit [Remote host closed the connection]
<gulbanana> i would like to have "nix-shell" work without the need for an extra argument though. i'll try writing a shell.nix that uses pkgs.mkShell and evaluates the default.nix's expression with .env appended
liuyb has joined #nixos
<sterni> srhb: guess haskellPackages are not deterministic
<sterni> maybe parallel building?
<srhb> gulbanana: If .env with default.nix does what you want, your shell.nix should just be (import ./default.nix).env
<gulbanana> perfect
<gulbanana> hmm, would i be able to add another import above that to get nixpkgs?
<gulbanana> like
<srhb> sterni: I think most of the impurities were weeded out a few years ago, but yes, parallel building was the main offender
<gulbanana> with import <nixpkgs> {};
<gulbanana> (import ./default.nix).env
<srhb> gulbanana: That doesn't really make much sense, since you're not using any attributes exposed by the "with"
n-osborne has quit [Remote host closed the connection]
<srhb> gulbanana: So it's redundant.
<gulbanana> i'd like to also install an extra package (haskell-language-server) which isn't provided by the default.nix
<srhb> gulbanana: Ah, then you will need something like mkShell indeed :)
<sterni> srhb: (sorry tab completion fail meant srk)
<srhb> sterni: Oh :P
<sterni> srhb: wait we reverted parrallelbuilding in haskellPackages
<sterni> well I wasn't even aware we had it at some point :p
<srhb> We did, and it was very very deterministically indeterministic.
<gulbanana> got it
n-osborne has joined #nixos
sangoma has quit [Ping timeout: 246 seconds]
ahmedelgabri has quit [Ping timeout: 258 seconds]
<JaakkoLuttinen[m> Can I convert a relative path in nix to a string that contains the absolute path? That is, something like: `MYENV = some_magic_function ./../..;` and `MYENV` would become a string that is the absolute path to that directory (e.g., `/home/jluttine/foobar`).
<gulbanana> this "shell.nix" gave me what i want, i think
<gulbanana> with import <nixpkgs> {};
<gulbanana> inputsFrom = [ pkgs.haskell-language-server (import ./default.nix).env ];
<gulbanana> pkgs.mkShell {
<gulbanana> }
FRidh has quit [Ping timeout: 265 seconds]
<sterni> JaakkoLuttinen[m: toString yourPath
<JaakkoLuttinen[m> sterni: WOW, thanks! Heh, it was so simple and intuitive, should've guessed/tried 😆
<sterni> np, it is not really obvious, really
<sterni> you just have to know it behaves that way
<srhb> gulbanana: Hmm, inputsFrom sounds wrong to me (though it'll work for the second one because you're using .env) -- ah well, if it works for now :)
FRidh has joined #nixos
eacameron has joined #nixos
ebn has joined #nixos
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @cideM opened pull request #118903 → capability: unbreak → https://github.com/NixOS/nixpkgs/pull/118903
<gulbanana> it could definitely be wrong. i am fumbling in the dark here :)
gustavderdrache has joined #nixos
<{^_^}> [hydra] @grahamc merged pull request #677 → Javascript libraries update → https://github.com/NixOS/hydra/pull/677
<{^_^}> [nixpkgs] @sternenseemann pushed commit from @cideM to haskell-updates « haskellPackages.capability: unbreak »: https://git.io/JOeAp
<{^_^}> [nixpkgs] @sternenseemann closed pull request #118903 → capability: unbreak → https://github.com/NixOS/nixpkgs/pull/118903
gxt has quit [Ping timeout: 240 seconds]
logand has quit [Read error: Connection reset by peer]
ahmedelgabri has joined #nixos
logand has joined #nixos
gxt has joined #nixos
<cwnovusordoseclo> Should openssh make an ssh(d).service?
vidbina has quit [Quit: vidbina]
logand has quit [Remote host closed the connection]
<cwnovusordoseclo> All I have on my system (with broken ssh) is sshd.socket
<hexa-> sshd.service, yes
<cwnovusordoseclo> Any ideas why that's not there?
<cwnovusordoseclo> Its enabled just the same as my other systems.
ahmedelgabri has quit [Ping timeout: 250 seconds]
<gustavderdrache> is there any chance you set services.openssh.startWhenNeeded in your configuration?
graf_blutwurst has quit [Remote host closed the connection]
<{^_^}> [hydra] @grahamc merged pull request #905 → User Roles: make checkboxes → https://github.com/NixOS/hydra/pull/905
liuyb has quit [Ping timeout: 260 seconds]
liuyb has joined #nixos
domogled1 has joined #nixos
<gustavderdrache> the socket activation would make it disappear from the running services list
tomberek has joined #nixos
domogled has quit [Ping timeout: 245 seconds]
domogled1 is now known as domogled
justanotheruser has quit [Ping timeout: 250 seconds]
<cwnovusordoseclo> <gustavderdrache "is there any chance you set serv"> No, just .enable and .listenaddresses. no difference when I only use .enable
<gustavderdrache> dang, i was really hoping it would be easy
<cwnovusordoseclo> That smells like it's failing because no sshd.service to me
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #118904 → Fix qtPrepareTool function → https://github.com/NixOS/nixpkgs/pull/118904
<cwnovusordoseclo> Me too. I've been fighting this for a couple of months and having to console in sucks azz
<{^_^}> [nixpkgs] @sorki opened pull request #118905 → haskellPackages.update-nix-fetchgit: dontCheck → https://github.com/NixOS/nixpkgs/pull/118905
astropolynomial has joined #nixos
domogled1 has joined #nixos
domogled has quit [Ping timeout: 240 seconds]
astropolynomial has left #nixos [#nixos]
ddellaco_ has quit [Remote host closed the connection]
domogled1 has quit [Read error: Connection reset by peer]
JerryXiao has quit [Quit: Bye]
JerryXiao has joined #nixos
cfricke has quit [Quit: WeeChat 3.1]
cfricke has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #118896 → nixos/tests/home-assistant: fix mosquitto configuration → https://github.com/NixOS/nixpkgs/pull/118896
JerryXiao has quit [Client Quit]
zupo has joined #nixos
JerryXiao has joined #nixos
<{^_^}> [nixpkgs] @lukegb opened pull request #118906 → darwin.apple_sdk.frameworks: cleanup, add missing frameworks, fix dependency structure → https://github.com/NixOS/nixpkgs/pull/118906
ddellaco_ has joined #nixos
mzan has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<lukegb> supersandro2000: I pulled the apple_sdk.frameworks cleanups out of our pyobjc PRs into that so it's easier to review, but also did some work to try to make it so that new frameworks are listed as including all their deps properly
jonringer has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout merged pull request #118905 → haskellPackages.update-nix-fetchgit: dontCheck → https://github.com/NixOS/nixpkgs/pull/118905
gulbanana has quit []
growpotkin has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout opened pull request #118907 → spago: 0.19.0 -> 0.20.0 → https://github.com/NixOS/nixpkgs/pull/118907
<{^_^}> [nixpkgs] @mweinelt merged pull request #118436 → python3Packages.plexwebsocket: 0.0.12 -> 0.0.13, python3Packages.plexapi: 4.5.0 -> 4.5.1 → https://github.com/NixOS/nixpkgs/pull/118436
stree has quit [Ping timeout: 265 seconds]
mzan has joined #nixos
|beowulf| has quit [Quit: = ""]
kaction has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @romildo opened pull request #118908 → matcha-gtk-theme: 2021-04-05 -> 2021-04-09 → https://github.com/NixOS/nixpkgs/pull/118908
stree has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #118909 → python3Packages.pyintesishome: init at 1.7.7 → https://github.com/NixOS/nixpkgs/pull/118909
sangoma has joined #nixos
justanotheruser has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #111316 → gobgpd: init at 2.26.0 → https://github.com/NixOS/nixpkgs/pull/111316
davidv7_ has joined #nixos
kaction has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout opened pull request #118911 → haskellPackages: add changelog argument to Haskell generic-builder.nix → https://github.com/NixOS/nixpkgs/pull/118911
zakame has quit [Ping timeout: 248 seconds]
Synthetica has quit [Quit: Connection closed for inactivity]
afreak has quit [Quit: leaving]
jonathan has joined #nixos
<jonathan> dumb question but how do I overwrite the nixos/configuration.nix
jonathan is now known as Guest78269
<{^_^}> [nixpkgs] @prusnak opened pull request #118913 → trezord: 2.0.30 -> 2.0.31 → https://github.com/NixOS/nixpkgs/pull/118913
<simpson> Guest78269: It's a regular file, so you should be able to use your preferred text editor. What isn't working and what have you tried?
avaq has quit [Remote host closed the connection]
avaq has joined #nixos
<Guest78269> Hi simpson thank you for responding
tomberek has quit [Ping timeout: 240 seconds]
<Guest78269> I'm using nixos on virtualbox
<Guest78269> I'm attempting to edit the nixos/configuration.nix file but it's not allowing me to save
<{^_^}> [nixpkgs] @Ma27 merged pull request #118079 → notcurses: 2.2.3 -> 2.2.4 → https://github.com/NixOS/nixpkgs/pull/118079
<tpw_rules> are you on the livecd? are you using sudo so you have write permission?
<Guest78269> yea I did the import
<Guest78269> import appliance
<Guest78269> the .ova file
<{^_^}> [nixpkgs] @cdepillabout merged pull request #118907 → spago: 0.19.0 -> 0.20.0 → https://github.com/NixOS/nixpkgs/pull/118907
zakame has joined #nixos
Babe69 has joined #nixos
ml| has quit [Quit: WeeChat 3.0.1]
ml| has joined #nixos
Babe69 has left #nixos [#nixos]
<{^_^}> [nixpkgs] @Ma27 merged pull request #118092 → seaweedfs: 2.35 -> 2.36 → https://github.com/NixOS/nixpkgs/pull/118092
avaq has quit [Ping timeout: 260 seconds]
waleee-cl has quit [Quit: Connection closed for inactivity]
NinjaTrappeur has quit [Ping timeout: 248 seconds]
domogled has joined #nixos
ahmedelgabri has joined #nixos
<{^_^}> [nix] @sternenseemann opened pull request #4702 → nix shell: set MANPATH for installables that have a man dir → https://github.com/NixOS/nix/pull/4702
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Add 2021/03 »: https://git.io/JOvsD
respawn_ has joined #nixos
ahmedelgabri has quit [Ping timeout: 260 seconds]
<pie_> whats the correct way to get NIX_PATH set and nix working in a containre?
<pie_> *contianer
<pie_> *container
Guest78269 has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @Ma27 merged pull request #117510 → py-spy: 0.3.4 -> 0.3.5 → https://github.com/NixOS/nixpkgs/pull/117510
<sterni> pie_: you should be able to set nix.nixPath in the container's configuration, right?
<pie_> yeah but how does nixos make it work without me needing to set that explicitly
<pie_> i havent found the right thing
domogled has quit [Quit: domogled]
<pie_> or rather i guess, this looks like the default https://github.com/NixOS/nixpkgs/blob/d600f006643e074c2ef1d72e462e218b647a096c/nixos/modules/services/misc/nix-daemon.nix#L411 and I dont know why its unset in extra-container/nixos-container/ containers.*
<{^_^}> [nixpkgs] @mweinelt merged pull request #118809 → python3Packages.webexteamssdk: init at 1.6 → https://github.com/NixOS/nixpkgs/pull/118809
<pie_> wait what, TIL
<pie_> vpsAdminOS is an operating system that serves as a hypervisor for container virtualization. It is based on not-os and NixOS.
<{^_^}> [nixpkgs] @Ma27 merged pull request #117005 → yq-go: add simple test → https://github.com/NixOS/nixpkgs/pull/117005
<{^_^}> [nixpkgs] @NerdyPepper opened pull request #118914 → pista: init at v0.1.5 → https://github.com/NixOS/nixpkgs/pull/118914
ddellaco_ has quit [Remote host closed the connection]
ddellacosta has joined #nixos
<pie_> anyway yeah nixpath stuff...
<pie_> trying to gogle stuf flike container nixpath isnt yielding anything useful...
<{^_^}> [nixpkgs] @Ma27 merged pull request #114128 → nixos/docs: fix example for code-generated modules → https://github.com/NixOS/nixpkgs/pull/114128
<SumnerEvans[m]> After upgrading to Sway 1.6, mako does not start automatically whenever a notification comes across dbus, and pinentry doesn't automatically pop up as a GUI, either. Is anyone else experiencing this issue?
ddellacosta has quit [Remote host closed the connection]
ddellacosta has joined #nixos
cfricke has quit [Quit: WeeChat 3.1]
<asymmetric> is it me, or does `nix flake update` skip inputs where `inputs.foo.flake = false`?
<{^_^}> [nixpkgs] @fabaff opened pull request #118915 → python3Packages.nad-receiver: init at 0.2.0 → https://github.com/NixOS/nixpkgs/pull/118915
devhell has quit [Quit: leaving]
sangoma has quit [Ping timeout: 252 seconds]
<pie_> huh ok it looks like root-login isnt a normal login and so doesnt get NIX_PATH set up??
<pie_> here i thought i was nuts
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Add 2021/03 »: https://git.io/JOvWE
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Add 2021/03 »: https://git.io/JOvWy
FRidh has quit [Ping timeout: 252 seconds]
philr has quit [Ping timeout: 240 seconds]
FRidh has joined #nixos
fresheyeball has quit [Quit: WeeChat 2.9]
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @gebner merged pull request #118479 → libGL: use headers from glvnd → https://github.com/NixOS/nixpkgs/pull/118479
fresheyeball has joined #nixos
<fresheyeball> .cache/nix/tarballs/038n2vdk9fmv4pp4pn0jiv1agxdikj9jh5dmr8nrnrdzyxd08ral-file.lock': Permission denied
<pie_> ok looks like it was because i wasnt restarting the container, just using extra-container's switch configuration feature
<fresheyeball> I have a user who has this error
<fresheyeball> I cannot repro it
<yaymukund> I've added obs-wlrobs to the inputsFrom of a shell.nix and run `nix-shell`, so why is there no /nix/store/*wlrobs*/?
<yaymukund> there's this annoying manual step, so I need to find the actual package in nixos (i don't sem to have a .nix-profile) https://github.com/NixOS/nixpkgs/blob/d600f006643e074c2ef1d72e462e218b647a096c/pkgs/applications/video/obs-studio/wlrobs.nix#L7
<fresheyeball> anyone seen lock file permissions issues?
<{^_^}> [nixos-weekly] @domenkozar merged pull request #146 → Call for Content: 2021/03 → https://github.com/NixOS/nixos-weekly/pull/146
<yaymukund> oh ok, so changing it to a nativeBuildInputs generated it
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Call for Content: 2021/04 »: https://git.io/JOvlM
<{^_^}> [nixos-weekly] @domenkozar opened pull request #151 → Call for Content: 2021/04 → https://github.com/NixOS/nixos-weekly/pull/151
<{^_^}> [nixpkgs] @FRidh merged pull request #118312 → Staging next → https://github.com/NixOS/nixpkgs/pull/118312
meh` has quit [Ping timeout: 268 seconds]
griff__ has joined #nixos
NinjaTrappeur has joined #nixos
<Izorkin> Mic92: aanderse: When will it be possible to merge PR #117456 ?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/117456 (by Izorkin, 2 weeks ago, open): nixos/redis: add option and change access to directories
LilleCarl has joined #nixos
<srid> How do I get this flake input `browsersync = { url = "github:srid/browsersync-nix"; flake = false; };` into a nix repl so I can inspect its properties?
<srid> builtins.getFlakes doesn't know anything about non-flake inputs
<aanderse> Izorkin: I'll take another look tonight
<aanderse> I'm pretty sure it's fine to merge now
FRidh has quit [Ping timeout: 265 seconds]
FRidh has joined #nixos
sangoma has joined #nixos
<Izorkin> aanderse: After I want to open a new PR for redis.
supercoven has joined #nixos
n-osborne has joined #nixos
awuji[m] has joined #nixos
gxt has quit [Ping timeout: 240 seconds]
thc202 has quit [Ping timeout: 258 seconds]
thc202 has joined #nixos
<aanderse> Izorkin: sure i can do that
<aanderse> i can make some time tonight or tomorrow
<{^_^}> [nixpkgs] @primeos merged pull request #118893 → chromiumDev: 91.0.4464.5 -> 91.0.4469.4 → https://github.com/NixOS/nixpkgs/pull/118893
fendor_ has joined #nixos
FRidh has quit [Ping timeout: 252 seconds]
fendor has quit [Ping timeout: 240 seconds]
FRidh has joined #nixos
<Izorkin> aanderse: thanks.
<aanderse> Izorkin: no problem. thank you :-)
dos622000622 has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
respawn_ has quit [Read error: Connection reset by peer]
liuyb has quit [Ping timeout: 260 seconds]
dhess has joined #nixos
dos622000622 has quit [Quit: WeeChat 1.9.1]
dhess has quit [Remote host closed the connection]
dhess has joined #nixos
<dhess> gchristensen: ping?
fendor_ is now known as fendor
<{^_^}> [nixpkgs] @lovesegfault merged pull request #118889 → thunderbird, thunderbird-bin: 78.9.0 -> 78.9.1 [Moderate security fixes] → https://github.com/NixOS/nixpkgs/pull/118889
<gchristensen> dhess: retry in 30m :)
<dhess> ack
thc202 has quit [Ping timeout: 258 seconds]
alexherbo23 has joined #nixos
alexherbo2 has quit [Read error: Connection reset by peer]
alexherbo23 is now known as alexherbo2
<lukegb> __monty__: you about?
<lukegb> (I added you as a reviewer on a PR that you may be interested in owing to your work on bumping the SDK version and I'd be interested in your feedback)
n-osborne has quit [Remote host closed the connection]
davidv7_ has quit [Remote host closed the connection]
thc202 has joined #nixos
superherointj has quit [Quit: Leaving]
<dhess> gchristensen: never mind, it was operator error :)
VideoGameEnjoyer has joined #nixos
stree has quit [Ping timeout: 260 seconds]
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @petabyteboy opened pull request #118917 → rustc: prevent SSE2 instructions in i686 output → https://github.com/NixOS/nixpkgs/pull/118917
<matthewcroughan> gchristensen: how do udev rules work in nixpkgs?
<matthewcroughan> I can't seem to prove or disprove that they exist, when a certain package is in the system environment
<matthewcroughan> ls /etc/udev/rules.d does not contain the package result's $out/etc/udev/rules.d
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #118918 → [20.09] palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118918
<cransom> they exist, but nixpkgs itself won't install them into /etc/udev.
<cransom> there'd need to be a nixos module to make that happen
<matthewcroughan> Oh really?
<matthewcroughan> So how are you supposed to make use of the udev rules in packages?
<cransom> in nixos? or outside of?
<matthewcroughan> cransom: in nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #118919 → python3Packages.omnilogic: init at 0.4.3 → https://github.com/NixOS/nixpkgs/pull/118919
kaligule has joined #nixos
<matthewcroughan> The installPhase here installs udev rules, but how to I make use of them?
<matthewcroughan> lukegb: what's that?
<matthewcroughan> That compressed size though
<matthewcroughan> that's some good compression
<cransom> matthewcroughan: look into `services.udev.packages`
nixpulvis has joined #nixos
<{^_^}> [nixpkgs] @Trundle closed pull request #115253 → ponyc: 0.38.3 -> 0.39.0 → https://github.com/NixOS/nixpkgs/pull/115253
<matthewcroughan> cransom: I have, if I instantiate that option, it tries to install udev rules for *unspecified* packages
<matthewcroughan> do if I put openrgb in there, it tries to install unrelated udev rules and promptly fails
<nixpulvis> Is this a channel for questions and general discussion?
rajivr has quit [Quit: Connection closed for inactivity]
<simpson> Yeah.
kaligule has quit [Ping timeout: 250 seconds]
<cransom> matthewcroughan: do you have output/config snippet? what are 'unspecified' packages?
<matthewcroughan> cransom: sure, want to ssh in and watch?
<matthewcroughan> read-only
<matthewcroughan> ssh ro-aNY3ZYyB6GDXbw3U3CGe6Kn7W@lon1.tmate.io
aleph- has quit [Ping timeout: 240 seconds]
<cransom> i'd be happy with a gist/pastebin.
<{^_^}> [nixpkgs] @fabaff opened pull request #118920 → python3Packages.pyezviz: init at 0.1.8.7 → https://github.com/NixOS/nixpkgs/pull/118920
<matthewcroughan> cransom: the output is massive, sec
kaligule has joined #nixos
<matthewcroughan> cransom: https://dpaste.com/HP38U7LSM
<matthewcroughan> This is the specified package
<matthewcroughan> this is the output
<eacameron> how do I get a hold of the path to libc++.a inside my mkDerivation?
<matthewcroughan> cransom: oh.. maybe that was it
<matthewcroughan> But this is the udev rule, the package I guess can't handle it
<cransom> did you read the error at the bottom of the nixos-rebuild?
BJTH has joined #nixos
<nixpulvis> I'm brand new to this ecosystem, but excited to try it out. I'm wondering if there's a place where the default packages are documented... basically I watched the video where it tested a hello world program, and it said that it was scoping the machine to only have the hello world program, but then proceeded to use `grep`. I'm wondering where `grep` came from in that example.
kaligule has quit [Ping timeout: 250 seconds]
anonymouserobot[ has joined #nixos
rsynnest has joined #nixos
<cransom> matthewcroughan: `/bin/chmod is called in udev rules but is not executable or does not exist` .
rsynnest_ has joined #nixos
<rsynnest> does anyone know the best way to wrap a binary used as the ExecStart command for a NixOS systemd service? I know I can use makeWrapper, but where would I use it?
<cransom> matthewcroughan: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/hardware/udev.nix#L58-L63 /bin/chmod isn't in that list. you'd have to patch that file for the right location. but i think more correctly, doesn't udev already have native rule sets to chmod a file without shelling out?
ahmedelgabri has quit [Ping timeout: 258 seconds]
<matthewcroughan> cransom: yeah I did and came to the same conclusion as you initially did, after sleeping on it haha
<matthewcroughan> last night I just assumed it was broken, too tired
<matthewcroughan> > doesn't udev already have native rule sets to chmod a file without shelling out?
<matthewcroughan> Unsure
<{^_^}> error: syntax error, unexpected ')', expecting ID or OR_KW or DOLLAR_CURLY or '"', at (string):495:1
<cransom> matthewcroughan: it does. `KERNEL=="vboxdrv", OWNER="root", GROUP="vboxusers", MODE="0660", TAG+="systemd"
<cransom> unless there needs to be more than that.
<matthewcroughan> cransom: all of the rules in that package need to be present, I believe
<matthewcroughan> I mean, I can probably just shove them into extraRules, if I find the exact ones that I need.
<cransom> sure. but upstream is backing a bad shell user by shelling out to chmod when udev can make the permissions change directly.
<cransom> you can add your own fixup in a fixup phase for the package.
<cransom> + submit a change upstream to not be naive about their approach.
<matthewcroughan> I'm not sure I fully understand the bad usage
<matthewcroughan> can you explain it a bit more
<cransom> there's no need to invoke a shell to run /bin/chmod. you can set file ownership directly from udev with 'MODE=0555' (or your desired permissions) on the line instead of RUN=/bin/chmod<etc>
orivej has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
<cransom> if upstream wouldn't accept that patch, you can hack around it yourself by changing the package in a fixupphase to replace '/bin/chmod' with the right path, but it's not the best solution.
zebrag has joined #nixos
<{^_^}> [nixpkgs] @necessarily-equal opened pull request #118921 → unvanquished: new package → https://github.com/NixOS/nixpkgs/pull/118921
tomberek has joined #nixos
tdeo has quit [Remote host closed the connection]
diamondburned has quit [Remote host closed the connection]
tdeo has joined #nixos
diamondburned has joined #nixos
n-osborne has joined #nixos
tdeo has quit [Remote host closed the connection]
diamondburned has quit [Remote host closed the connection]
proofofkeags has joined #nixos
<pie_> turns out containers set NIX_REMOTE in the shell but not at postBootCommand time in stage 2
<pie_> arianvp: is there any reason to not enable NIX_REMOTE a lot sooner, re https://github.com/NixOS/nixpkgs/issues/40355 ?
<{^_^}> #40355 (by cillianderoiste, 2 years ago, closed): Imperative containers broken on 18.03/nixos-unstable
dhess has left #nixos ["ERC (IRC client for Emacs 27.1)"]
aleph- has joined #nixos
BJTH has quit [Remote host closed the connection]
BJTH has joined #nixos
<rmcgibbo[m]> If I have a script that has a nix-shell shebang (with multiple packages pulled in via -p), what's the easiest way to convert that to something that's properly installed into the nix store? Is there are fixupPhase that will rewrite shebang/header?
rj has joined #nixos
<cwnovusordoseclo> I really don't understand flakes... like. at all. looking at eg this https://github.com/mmai/funkwhale-flake
<cwnovusordoseclo> it looks like a whole lot of boilerplate surrounding the top level configuration.nix and significantly more difficult than eg musnix where I git-clone and just import it
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages to fix evaluation on Hydra »: https://git.io/JOv6Q
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JOviv
<tomberek> cwnovusordoseclo: i can assist if you want to schedule a time block over the weekend: https://calendly.com/tomberek
jimmiehansson has quit [Remote host closed the connection]
tdeo has joined #nixos
diamondburned has joined #nixos
<__monty__> lukegb: A wild __monty__ appears o.O
ahmedelgabri has quit [Ping timeout: 260 seconds]
<cwnovusordoseclo> I'll take you up on that tomberek thanks
n-osborne has quit [Remote host closed the connection]
vidbina has joined #nixos
kaligule has joined #nixos
kaligule has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-dependent-sum-aeson-orphans: add jailbreak to allow latest version of constraints »: https://git.io/JOvP0
aleph- has quit [Ping timeout: 260 seconds]
vidbina has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-reflex-dom-core: add jailbreak to allow latest version of constraints »: https://git.io/JOvPQ
hyiltiz has quit [Ping timeout: 260 seconds]
vidbina has joined #nixos
aleph- has joined #nixos
kaligule has joined #nixos
hyiltiz has joined #nixos
BJTH has quit [Ping timeout: 260 seconds]
griff__ has quit [Quit: griff__]
kaligule has quit [Client Quit]
kaligule has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: keep the old version of refinery around for haskell-language-server »: https://git.io/JOvX5
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #118918 → [20.09] palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118918
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #118922 → yapesdl: init at 0.70.2 → https://github.com/NixOS/nixpkgs/pull/118922
vrinek has joined #nixos
kaligule has quit [Remote host closed the connection]
kaligule has joined #nixos
cole-h has joined #nixos
vidbina has quit [Ping timeout: 258 seconds]
LilleCarl has quit [Quit: WeeChat 3.1]
kaligule has quit [Remote host closed the connection]
vidbina has joined #nixos
<__monty__> lukegb: Left a comment. Can't really be of much help yet unfortunately.
liuyb has joined #nixos
konobi has quit [Remote host closed the connection]
LilleCarl has joined #nixos
liuyb has quit [Ping timeout: 260 seconds]
konobi has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « all-cabal-hashes: update to Hackage at 2021-04-09T18:32:26Z »: https://git.io/JOvMx
<{^_^}> [nixpkgs] @peti merged pull request #118350 → Update Haskell package set to Stackage Nightly 2021-04-02 (plus other fixes) → https://github.com/NixOS/nixpkgs/pull/118350
zn88 has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JOvDY
<zn88> What's the fastest way with `nix-env` to get a rust project building with `cargo build`? I always get "error: linker `cc` not found" even if I install `gcc` or `clang` with `nix-env`.
zebrag has joined #nixos
<zn88> Important: I don't want to build the project with nix. I just want to use "cargo build".
<simpson> Is there (community) documentation on the homebrew tools available in nixpkgs for (proprietary) game consoles? I see backup tools like `wiimms-iso-tools`, but I was thinking about Nix for *building* homebrew apps.
orion has joined #nixos
<orion> Hi. In a nix-shell, how do I enable core dumps? "ulimit -c unlimited" returns
<orion> "bash: ulimit: core file size: cannot modify limit: Operation not permitted"
<{^_^}> [nixpkgs] @peti opened pull request #118923 → Update Haskell package set to Stackage Nightly 2021-04-04 (plus other fixes) → https://github.com/NixOS/nixpkgs/pull/118923
<lukegb> __monty__: no worries! Thanks for taking a look
fresheyeball has quit [Quit: WeeChat 2.9]
<eacameron> does clang come with a libstdc++.a and link against it?
fuiltilt has joined #nixos
hyper_ch has quit [Ping timeout: 240 seconds]
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
vidbina has quit [Ping timeout: 260 seconds]
kaction has quit [Ping timeout: 240 seconds]
HeN has quit [Quit: Connection closed for inactivity]
spamr has joined #nixos
kaction has joined #nixos
spamr has left #nixos [#nixos]
rj has quit [Quit: rj]
ahmedelgabri has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @sternenseemann merged pull request #118911 → haskellPackages: add changelog argument to Haskell generic-builder.nix → https://github.com/NixOS/nixpkgs/pull/118911
proofofkeags has quit [Ping timeout: 240 seconds]
rubm has joined #nixos
rubm_ has joined #nixos
rubm has quit [Client Quit]
zupo has joined #nixos
VideoGameEnjoyer has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @alyssais merged pull request #117741 → util-linux: 2.36.1 -> 2.36.2 → https://github.com/NixOS/nixpkgs/pull/117741
VideoGameEnjoyer has joined #nixos
<{^_^}> [nixpkgs] @jojosch opened pull request #118924 → protoc-gen-twirp: 7.1.1 -> 7.2.0 → https://github.com/NixOS/nixpkgs/pull/118924
zupo_ has joined #nixos
zn88 has quit [Quit: Connection closed]
zupo has quit [Ping timeout: 240 seconds]
Lord_of_Life_ has joined #nixos
<radvendii> is it possible to change the timeout on remote builders? I have a machine that's sometimes set up and sometimes isn't, and when it isn't, `nix build` just hangs for a while
zebrag has quit [Quit: Konversation terminated!]
Lord_of_Life has quit [Ping timeout: 265 seconds]
zebrag has joined #nixos
Lord_of_Life_ is now known as Lord_of_Life
supercoven has quit [Ping timeout: 268 seconds]
hyx has joined #nixos
<hyx> Good evening everyone. I have a beginner question
<hyx> I have a wireguard server running at home behind DDNS
<hyx> and a peer outside that loses connection each day because wireguard doesn't refresh its endpoint once resolved
<hyx> and now there's a script apparently shipped with wireguard-tools that's supposed to refresh the endpoint, documented at https://wiki.archlinux.org/index.php/WireGuard#Endpoint_with_changing_IP
<hyx> how can I repeatedly trigger this?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118919 → python3Packages.omnilogic: init at 0.4.3 → https://github.com/NixOS/nixpkgs/pull/118919
<radvendii> hyx: are you on NixOS?
bitmapper has joined #nixos
<hyx> radvendii: Yes
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hyx> I mean I could systemctl restart the interface, but I think that would break all running connections
<tejing> it should be pretty straightforward to create a systemd timer as they suggest on the archwiki
<hyx> mhh find /nix/store -name reresolve-dns.sh doesn't find anything
<radvendii> if wireguard is configured through NixOS, the configuration will be read-only
<hyx> Maybe it's not shipped?
<radvendii> does the script alter the configuration?
FRidh has quit [Quit: Konversation terminated!]
<hyx> But I don't think I have it in the nix store
astylian has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @sternenseemann opened pull request #118925 → pkgs-lib/formats: support top level INI keys → https://github.com/NixOS/nixpkgs/pull/118925
<radvendii> hyx: oh. the archlinux article made it seem to me like it was actually overwriting the config file, but it's definitely not
<hyx> How can I even find the files of a derivation running in the current-system?
kaction has quit [Ping timeout: 265 seconds]
<hyx> So if I wanted to find the path of the wireguard-tools I'm using now
<radvendii> readlink and/or realpath
<radvendii> and/or which
<radvendii> readlink $(which wg) works for me
ebn has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @oxalica opened pull request #118926 → nixos/binfmt: correctly handle argv0 when preserveArgvZero → https://github.com/NixOS/nixpkgs/pull/118926
<hyx> Mhh no trace of reresolve-dns.sh
ruptwelve has joined #nixos
<tomberek> wireguard-tools doesn't package up the contrib folder
<hyx> Guess I'll add the script manually first
Dr8128 has quit [Ping timeout: 240 seconds]
kaction has joined #nixos
n-osborne has joined #nixos
n-osborn_ has joined #nixos
<{^_^}> [nixpkgs] @magnetophon opened pull request #118927 → geonkick: 2.6.1 -> 2.8.0 → https://github.com/NixOS/nixpkgs/pull/118927
n-osborne has quit [Ping timeout: 260 seconds]
seku has joined #nixos
<eacameron> Where can I find libc++abi.a?
<{^_^}> [nixpkgs] @magnetophon opened pull request #118928 → distrho: 2020-07-14 -> 2021-03-15 → https://github.com/NixOS/nixpkgs/pull/118928
<hyx> Alright I think I can make it work now, thanks
hyx has quit [Quit: Connection closed]
iMatejC has quit [Quit: WeeChat 3.0.1]
<{^_^}> [nixpkgs] @magnetophon opened pull request #118929 → drumgizmo: 0.9.18.1 -> 0.9.19 → https://github.com/NixOS/nixpkgs/pull/118929
rsynnest_ has quit [Quit: Connection closed for inactivity]
liuyb has joined #nixos
lsix has quit [Ping timeout: 248 seconds]
elibrokeit has quit [Quit: A random quit message]
lsix has joined #nixos
elibrokeit has joined #nixos
iMatejC has joined #nixos
liuyb has quit [Ping timeout: 240 seconds]
vikanezrimaya has joined #nixos
<{^_^}> [nixpkgs] @alyssais opened pull request #118930 → cvs: fix cross; clarify license → https://github.com/NixOS/nixpkgs/pull/118930
proofofkeags has joined #nixos
griff__ has joined #nixos
pikajude has quit [Quit: ZNC 1.8.1 - https://znc.in]
`_ has quit [Quit: WeeChat 2.7.1]
pikajude has joined #nixos
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/a6847cb5460 (from 12 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
Dr8128 has joined #nixos
<sterni> eacameron: libcxxabi
orivej has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118913 → trezord: 2.0.30 -> 2.0.31 → https://github.com/NixOS/nixpkgs/pull/118913
<{^_^}> [nixos-homepage] @tanyabouman opened pull request #697 → A few quick fixes → https://github.com/NixOS/nixos-homepage/pull/697
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118908 → matcha-gtk-theme: 2021-04-05 -> 2021-04-09 → https://github.com/NixOS/nixpkgs/pull/118908
<supersandro2000> ,locate libc++abi.a
<supersandro2000> ^ eacameron
<{^_^}> Found in packages: libcxxabi
zebrag has quit [Read error: Connection reset by peer]
zebrag has joined #nixos
Synthetica has joined #nixos
<{^_^}> [nixpkgs] @alyssais opened pull request #118932 → stdenv: add option to change make command → https://github.com/NixOS/nixpkgs/pull/118932
astylian has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118901 → polkadot: 0.8.29 -> 0.8.30 → https://github.com/NixOS/nixpkgs/pull/118901
ahmedelgabri has joined #nixos
thonkpod has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @alyssais opened pull request #118933 → snd: 20.3 -> 21.1; broaden platforms; parallelize → https://github.com/NixOS/nixpkgs/pull/118933
griff__ has quit [Quit: griff__]
alexherbo2 has quit [Ping timeout: 240 seconds]
aaaaaaaaaaaareis has joined #nixos
alexherbo2 has joined #nixos
livestradamus[m] has joined #nixos
griff__ has joined #nixos
remline has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118895 → python3Packages.pywizlight: 0.4.5 -> 0.4.6 → https://github.com/NixOS/nixpkgs/pull/118895
jumper149 has joined #nixos
<{^_^}> [nixpkgs] @alyssais opened pull request #118934 → libungif: remove in favour of giflib → https://github.com/NixOS/nixpkgs/pull/118934
aaaaaaaaaaaareis has quit [Client Quit]
kaction has quit [Ping timeout: 265 seconds]
<eacameron> sterni: Thanks. How can I get at the one specifically for llvm_10?
<eacameron> Also, it seems this package is trying to link both libstdc++.a and libstdc++abi.a... does that even make sense?
<qyliss> eacameron: llvmPackages_10.libcxxabi
aaaaaaaaaaaareis has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #118935 → python3Packages.pyruckus: init at 0.14 → https://github.com/NixOS/nixpkgs/pull/118935
<eacameron> qyliss: Aha thanks
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #118712 → wezterm: unstable-2020-11-22 -> 20210407-nightly → https://github.com/NixOS/nixpkgs/pull/118712
apache8080 has joined #nixos
aaaaaaaaaaaareis has quit [Client Quit]
thonkpod has joined #nixos
n-osborn_ has quit [Remote host closed the connection]
srk has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @alyssais opened pull request #118936 → motif: 2.3.6 -> 2.3.8; clarify license; adopt → https://github.com/NixOS/nixpkgs/pull/118936
<{^_^}> [nixpkgs] @fabaff opened pull request #118937 → python3Packages.systembridge: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/118937
<{^_^}> [nixpkgs] @erictapen opened pull request #118938 → imagemagick7: 7.0.11-5 -> 7.0.11-6 → https://github.com/NixOS/nixpkgs/pull/118938
supersandro2000 has quit [Remote host closed the connection]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #118712 → wezterm: unstable-2020-11-22 -> 20210407-nightly → https://github.com/NixOS/nixpkgs/pull/118712
n-osborne has joined #nixos
kaction has joined #nixos
est31 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @alyssais closed pull request #115561 → snd: 20.3 -> 21.1 → https://github.com/NixOS/nixpkgs/pull/115561
est31 has joined #nixos
ManiacOfMadness has joined #nixos
<{^_^}> [nixpkgs] @magnetophon opened pull request #118939 → dragonfly-reverb: 3.2.1 -> 3.2.5 → https://github.com/NixOS/nixpkgs/pull/118939
alexherbo2 has quit [Read error: Connection reset by peer]
orion has quit []
alexherbo20 has joined #nixos
<eacameron> Hm I wonder if this package is failing because of issues in clang-wrapper. It's trying to disable all default libs and then adding its own bundled stdc++ lib and c++abi lib. But I'm getting duplicate symbol errors when linking and it's clearly trying to link the same libraries from a nix path. Is our wrapper messing this up? cc clever
griff__ has quit [Quit: griff__]
katrin has quit [Quit: ZNC 1.8.1 - https://znc.in]
srk has joined #nixos
fendor has quit [Remote host closed the connection]
<eacameron> Notice that it's trying to link a nix version of libc++.a as well:
MichaelRaskin has quit [Ping timeout: 240 seconds]
<sterni> eacameron: what stdenv are you using?
<eacameron> clang10Stdenv
<sterni> you probably want to use llvmPackages_10.libcxxStdenv I'd think
srk has quit [Ping timeout: 268 seconds]
<eacameron> sterni: What's the difference?
MichaelRaskin has joined #nixos
katrin has joined #nixos
laerling has quit [Ping timeout: 240 seconds]
laerling has joined #nixos
laerling has joined #nixos
laerling has quit [Changing host]
<sterni> eacameron: libcxxStdenv uses libcxxClang which already knows about libc++ and probably doesn't ever try to link against libcstdc++
kaction has quit [Ping timeout: 268 seconds]
<pinpox> How can I get a list of all files in a directory and it's subfolders? I'm trying to write an expression, that runs pandoc on all files from a dir, rendering them to a different dir with the same path structure
vrinek has quit [Ping timeout: 260 seconds]
hlz has quit [Ping timeout: 260 seconds]
blakeellis[m] has joined #nixos
ManiacOfMadness has quit [Ping timeout: 260 seconds]
<eacameron> pinpox: lib.filesystem.listFilesRecursive
rsynnest_ has joined #nixos
vrinek has joined #nixos
<pinpox> eacameron: nice, didn't know about that one, thank you.
hlz has joined #nixos
rsynnest_ has quit [Client Quit]
rsynnest has quit [Quit: Connection closed]
rsynnest_ has joined #nixos
rsynnest_ is now known as rsynnest
__monty__ has quit [Quit: leaving]
johnw has joined #nixos
<gchristensen> pinpox: you might want to do that as part of a build with `find`, though
<gchristensen> doing that at evaluation time is a little bit weird
n-osborne has quit [Remote host closed the connection]
<pinpox> gchristensen: Yeah, I could just generate a bash script. I somehow wanted do it with nix to learn more about it. But I guess a build step + find makes mores sense
zakame has quit [Ping timeout: 260 seconds]
zakame has joined #nixos
<{^_^}> [nixpkgs] @SFrijters opened pull request #118940 → openttd: Remove libxdg_basedir as dependency → https://github.com/NixOS/nixpkgs/pull/118940
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/95e9fb16aea (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/628be63860a (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
mcornick has joined #nixos
<eacameron> Ericson2314 see my message above
<Ericson2314> eacameron ok!
Zoom[m] has joined #nixos
<Zoom[m]> Hey everyone. Stupid question. I was ask to modify a changelog to accompany my PR to nixpkgs. Where is it? :P
<{^_^}> [nixpkgs] @afontaine opened pull request #118941 → hex: 0.20.5 -> 0.21.1 → https://github.com/NixOS/nixpkgs/pull/118941
alexherbo20 has quit [Quit: Ping timeout (120 seconds)]
alexherbo2 has joined #nixos
<pinpox> How can I specify a priority between binary caches? I tried with mkForce like this:
<pinpox> I want to use the default where possible and only fall back to my own cache if the default misses
apache8080 has quit [Ping timeout: 252 seconds]
<sterni> Zoom[m]: docs/release-notes.xml
<eacameron> I can't figure out why ue4 build wants to link against libC++ and libstdc++.a:
<eacameron> cc Ericson2314
<eacameron> this is using llvmPackages_10.libcxxStdenv
liuyb has joined #nixos
<Zoom[m]> sterni: are you sure it's not `/nixos/doc/manual/release-notes/rl-2105.xml`?
<Ericson2314> eacameron: I will be a minute, sorry
<sterni> Zoom[m]: no, you're right :)
liuyb has quit [Ping timeout: 240 seconds]
HeN has joined #nixos
<{^_^}> [nixpkgs] @packetizeme opened pull request #118942 → Update git-review to 2.0.0 → https://github.com/NixOS/nixpkgs/pull/118942
<pinpox> gchristensen: I'm trying to run find in a builder.sh script. But it seems to be missing, what package do I need to add to $PATH?
seku has quit [Quit: Connection closed]
<pie_> pinpox: realpath $(which find)
<pie_> unless I missed some context and thats not what you need
<pie_> for me that returns /nix/store/70qfzyc5hmvssj7d0dqkqhn827xwgmy3-findutils-4.7.0/bin/find
<pie_> so youre looking for findutils probably
apache8080 has joined #nixos
<pinpox> pie_: Thanks!
<pie_> hm
<pinpox> pie_: another question, if I specify "src = ./content" shouldn't all files in that directory be available in the builder.sh script?
<pie_> > builtins.readFile (pkgs.runCommand "f" { buildInputs = [ pkgs.which ]; } "realpath $(which find) > $out").out
<{^_^}> cannot read '/nix/store/gw0jk883ah0vgxmgvrqjhqifxrf8rz9h-f', since path '/nix/store/d69vwzg27dgg5z01njha8r0iy9rwh32f-f.drv' is not valid, at (string):494:1
<{^_^}> [nixpkgs] @mweinelt opened pull request #118943 → home-assistant: 2021.4.1 -> 2021.4.2 → https://github.com/NixOS/nixpkgs/pull/118943
<pie_> ah well
<Zoom[m]> Thanks, sterni
<pie_> pinpox: you can do stuff with path (I dont know if there any best practices for the following) but something we also tend to do is just sbstitute ${findutils}/bin/find where you use the tool
<pie_> also I dont _think_ you should need to manually set path but I'm not sure offhand
<pie_> I havent actually written builder.sh myself
<pie_> but I just dont remember seeing that
<pie_> so there should be another way
<matthewcroughan> gchristensen: Did you ever find a way to have hydra use a different drive for storing its data?
<pie_> (I could be wrong)
<pinpox> pie_: find seems to work fine though, but the "ls" I put in the builder.sh shows nothing
<pie_> presumably because the directory is empty
<pinpox> I thought it should at least show what's in "src"
<pie_> since youre writing a builder manually, IIUC, setup.sh doesnt get run, and so none of the usual conveniences of the generic builder get run
<pie_> so what you get is a variable $src and you have to maually copy stuff
morr_ has joined #nixos
<pinpox> oh ok, that should be enougth though to run a simple pandoc
<pinpox> pie_: nice, thank you $src works.
morr_ is now known as morr
lsix has quit [Ping timeout: 258 seconds]
kaction has joined #nixos
<pie_> the latter being what handles $src and the former doing the cp
<pie_> this is a good file to get familiar with over time
<{^_^}> [nixpkgs] @fabaff opened pull request #118944 → python3Packages.homematicip: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/118944
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
philr has joined #nixos
ddellacosta has quit [Remote host closed the connection]
ddellaco_ has joined #nixos
<matthewcroughan> huh
<{^_^}> [nixpkgs] @veprbl merged pull request #118940 → openttd: Remove libxdg_basedir as dependency → https://github.com/NixOS/nixpkgs/pull/118940
apache8080 has quit [Ping timeout: 240 seconds]
dotdotok has joined #nixos
ddellaco_ has quit [Ping timeout: 268 seconds]
arahael1 is now known as Arahael
cody has joined #nixos
ddellaco_ has joined #nixos
cody is now known as codygman__`
<pie_> oh no scp
<pie_> or more like oh yes :D
Dr8128 has quit [Ping timeout: 252 seconds]
sangoma has quit [Quit: WeeChat 3.1]
ddellaco_ has quit [Ping timeout: 265 seconds]
civodul has quit [Ping timeout: 260 seconds]
proofofkeags has quit [Ping timeout: 265 seconds]
<veleiro> how do i know if osmesa is enabled within nixpkgs?
<cole-h> ...enabled?
thc202 has quit [Ping timeout: 258 seconds]
ddellaco_ has joined #nixos
<veleiro> yeah so there's and enableOSMesa parameter in the mesa derivation
<{^_^}> [nixpkgs] @TredwellGit opened pull request #118945 → binutils: 2.35.1 -> 2.36.1 → https://github.com/NixOS/nixpkgs/pull/118945
<{^_^}> [nixpkgs] @TredwellGit closed pull request #114990 → binutils 2.35.1 -> 2.36.1 → https://github.com/NixOS/nixpkgs/pull/114990
<veleiro> i see no interface to customizing mesa
<cole-h> > mesa.override { enableOSMesa = false; }
<{^_^}> "<derivation /nix/store/nf8jfvhdmci5zjfcyhfvywkdyxn204n8-mesa-21.0.1.drv>"
<veleiro> oh gotcha, i am still getting use to overrides
<veleiro> cole-h++
<{^_^}> cole-h's karma got increased to 140
ddellaco_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @dpausp opened pull request #118946 → nixos-rebuild: prevent build result from being garbage-collected in switch → https://github.com/NixOS/nixpkgs/pull/118946
<jasom> how does one reverse a list in the nix language? I mean I can write it myself with a recursvie function, but a bit surprised it's not builtin
<simpson> > :p lib.reverseList [ 1 2 3 ] # jasom
<{^_^}> [ 3 2 1 ]
<jasom> simpson: ah, where is lib defined?
<cole-h> jasom: ^
supersandro2000 is now known as Guest18480
Guest18480 has quit [Killed (rothfuss.freenode.net (Nickname regained by services))]
supersandro2000 has joined #nixos
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm_ is now known as mbrgm
vidbina has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
delan has joined #nixos
codygman__` has quit [Ping timeout: 260 seconds]
<jasom> oh, lib has foldr which is even simpler for what I need