worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90552 → geekbench: 5.1.1 -> 5.2.0 → https://git.io/Jf7jE
D_ has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
orivej_ has quit [Read error: Connection reset by peer]
D_ has joined #nixos
codygman has quit [Ping timeout: 256 seconds]
shibboleth has quit [Quit: shibboleth]
lassulus has quit [Ping timeout: 256 seconds]
dongcarl has quit [Quit: The Lounge - https://thelounge.chat]
<MtotheM> If there is a path like this `bootloader.grub.enable` and `bootloader.systemd.enable` (i get that you don't want two boot loaders, but i'm asking about the syntax) can you group these somehow? like `bootloader.{grub, systemd}.enable`?
proofofkeags has quit [Remote host closed the connection]
proofofkeags has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90553 → flmsg: 4.0.14 -> 4.0.15 → https://git.io/Jf7jj
dongcarl has joined #nixos
lassulus has joined #nixos
azdle has joined #nixos
<{^_^}> [nixpkgs] @danielfullmer opened pull request #90554 → searx: fix missing dependency version → https://git.io/Jf5ef
proofofkeags has quit [Ping timeout: 258 seconds]
azdle has quit [Remote host closed the connection]
<euank> MtotheM: you could presumably do something like mapAttrs + checking if a list of attr keys exist and only mapping those
<energizer> which filesystems are supposed to have neededForBoot?
Ralith_ has quit [Remote host closed the connection]
<energizer> i guess not /home
<cole-h> Ones that are necessary for booting, lol. So I'd think things like your root partition
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/Jf5eE
<euank> > let boot = { grub.enable = false; systemd.enable = false; x.enable = false; }; toEnable = [ "grub" "systemd" ]; in lib.mapAttrs (name: val: (if (lib.any (x: x == name) toEnable) then val // { enable = true; } else val)) boot
<{^_^}> { grub = <CODE>; systemd = <CODE>; x = <CODE>; }
<euank> MtotheM: ^ there you go. I recommend not doing that though :)
<MtotheM> does look really messy indeed.
<MtotheM> I was mostly curious. cause I like the idea of opening a scope and then defining variables of a member inside of there.
<euank> It might be handy syntax, but I don't _think_ there's any super clean way to do it in the current nix expression language
<euank> there might be something cleaner than that mess above though
<MtotheM> But if I have several options that are related like `desktop.xmonad, desktop.xfce` I would be nice not having to make newlines for every single enable flag
moet has joined #nixos
<MtotheM> a function would make more sense I suppose `enableDesktops [ "xmonad", "xfce" ]`
<euank> you can sorta visually group em with `desktop = { xmonad.enable = true; xfce.enable = true; }
<euank> which at least gives you a scope and grouping within it
<MtotheM> yeah, fair enough
<euank> And even in cases where you need to preserve other parts of the attr, you can add in `// desktop` to merge it back in
<euank> except the other way, desktop // {, I still sometimes mix that one up
user_0x58 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #90555 → python3Packages.invoke: don't recompile bytecode → https://git.io/Jf5eF
suzanne has joined #nixos
Guest17609 has joined #nixos
<infinisil> I recommend not using // with the module system, see https://github.com/NixOS/nixpkgs/pull/72949
<{^_^}> #72949 (by Infinisil, 31 weeks ago, closed): Prevent `mkIf`'s from being `//`'d, and co.
<infinisil> (just as a sidenote)
<euank> indeed, with modules you don't need to worry about merging behavior as much
<euank> thanks for pointing that out :)
<suzanne> Hi :) Recently nix-shell started changing my $HOME to /run/user/1000.
<suzanne> Probably after I followed some command's suggestion to add a nixbld group (that broke my permissions, so I rolled that back).
<suzanne> Any idea on what keywords I should google to disable that HOME=/run/user/1000 behaviour?
<MtotheM> I just have OCD for making things as compact as possible, as long as it's still readable of course. relying on loops and things will make it more difficult to understand.
ris has quit [Ping timeout: 246 seconds]
<euank> suzanne: weird, can you quickly double check that `getent passwd $USER` shows your correct home directory?
Guest17609 has quit [Read error: Connection reset by peer]
Guest17609 has joined #nixos
<suzanne> euank yep that gives the correct home dir.
azdle has joined #nixos
<euank> neat. Lemme poke at how nix-shell could end up in the wrong place. I'm curious too now
azdle has quit [Client Quit]
<{^_^}> [nixpkgs] @jonringer opened pull request #90556 → cpplint: 1.3.0 -> 1.5.1 → https://git.io/Jf5v0
azdle has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #90303 → bdf2sfd: 1.1.1 -> 1.1.2 → https://git.io/JfQKF
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « bdf2sfd: 1.1.1 -> 1.1.2 »: https://git.io/Jf5v6
<euank> suzanne: I dunno, nix-shell seems pretty straightforward. The main places it seems like such a thing could happen is: 1) if HOME=$XDG_RUNTIME_DIR is happening somewhere in ~/.bashrc 2) if it's happening in a shell-hook somewhere in your defexpr..
<euank> Yeah, those seem the only really likely possibilities I think
<suzanne> euank: funny, I have XDG_RUNTIME_DIR=/run/user/1000 in my env… if I unset it nix-shell sets HOME=/tmp, and if I set it to $HOME then I get the correct behaviour
pamplemousse has joined #nixos
<euank> That's from it figuring out a tmpdir, which influences `NIX_BUILD_TOP`, but it shouldn't set HOME= that
<euank> unless you have HOME=$NIX_BUILD_TOP or HOME=$XDG_RUNTIME_DIR somewhere
<euank> such as in your bashrc or a shell hook that's somehow getting pulled in.
<euank> Or in the `rc` file that happens in a tmpdir
<euank> that seems possible
<euank> Oh, nvm, that's it writing that, disregard me. That's not it
<{^_^}> [nixpkgs] @jonringer merged pull request #90318 → certstrap: 1.1.1 -> 1.2.0 → https://git.io/JfQPm
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « certstrap: 1.1.1 -> 1.2.0 »: https://git.io/Jf5vH
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90557 → gitAndTools.git-open: 2.0.0 -> 2.1.0 → https://git.io/Jf5v5
upupbb-user3 has joined #nixos
lord| has quit [Read error: Connection reset by peer]
upupbb-user3 is now known as ecfortes
lord| has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
metasyntactic has joined #nixos
<suzanne> euank: hm, no relevant mention of HOME= or XDG_RUNTIME_DIR or NIX_BUILD_TOP neither in /etc nor in my dotfiles…
<suzanne> Oh well. I'll just do if $HOME = bad_one; then export HOME=good_one; fi for now and file this as a mystery of life.
<metasyntactic> could someone help with an issue I'm having trying to setup encrypted luks (non boot) drives? one disk is getting stuck waiting 10 seconds for udev during stage one and then times out and fails. Oddly though if I don't try to mount it automatically, it works fine manually. Any help would be very welcome
<euank> I'm still curious. I want to say that this probably means a shell hook somewhere
orivej has joined #nixos
<metasyntactic> 8 other drives work fine, just the ninth one isn't working
<euank> suzanne: if you `nix-shell --pure -p busybox` or such, does that one work correctly?
<energizer> metasyntactic: what mount point is failing?
pamplemousse has quit [Ping timeout: 260 seconds]
h0m1 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #90554 → searx: fix missing dependency version → https://git.io/Jf5ef
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5vj
<metasyntactic> it's the last disk, the one with the uuid starting with 7075
<suzanne> euank: oh that one gives the correct $HOME. How do I get it to run busybox while still using my ~/default.nix ?
<metasyntactic> if I comment out that drive in both places, the system boots and decrypts fine
<euank> Wait, right, ofc you're doing nix-shell in a thing
<metasyntactic> but I'm now missing a drive
<euank> Can we see if it's `--pure` or not using the `default.nix` that you have which is causing it?
<metasyntactic> but if I manually open it with luks and mount it, it works fine
<euank> I was assuming you meant all nix-shell's were wrong, not just a specific default.nix's nix-shell
h0m1 has joined #nixos
ecfortes has quit [Remote host closed the connection]
<euank> suzanne: is it all nix-shells (except --pure ones), or only ones using a specific default.nix?
<metasyntactic> it applys the passphrase to all of the other drives, then when it gets to this drive it says waiting on udev for 10 seconds, then fails
<suzanne> euank: -p busybox gives the correct HOME (regardless of --pure), and default.nix gives the wrong one (also regardless of --pure)
<euank> Ah! So `default.nix` has a shell-hook that's doing the wrong thing!
<euank> Can you share the default.nix?
<suzanne> I already commented out all the shellHook, no difference… let me check with an empty default.nix
<metasyntactic> this is the boot error I get: https://imgur.com/a/zsBe91V
markus1189 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #90302 → handbrake: 1.3.2 -> 1.3.3 → https://git.io/JfQK7
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5fv
<{^_^}> [nixpkgs] @marsam merged pull request #90460 → deno: 1.0.5 -> 1.1.0 → https://git.io/Jf7Bm
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/Jf5fJ
<euank> suzanne: the other idea I have for a way to debug this would be adding `set -x` into `~/.bashrc` temporarily, and then seeing if the -x output happens to include HOME being said (and if we can sorta derive what code did it based on other stuff around it)
<metasyntactic> energizer: any ideas?
<energizer> metasyntactic: double check the uuid
<metasyntactic> it's copy pasted
markus1199 has quit [Ping timeout: 256 seconds]
<metasyntactic> I just reverified that they are identical
<suzanne> euank: nearly there: it's one of the packages I installed via default.nix… a window manager apparently. Narrowing down on it :)
<euank> Once you find the actual package, I'm kinda curious to see its setup hook / what it's doing
codygman has joined #nixos
<pjt_014> ooooh one of the spicy ones?
<{^_^}> [nixpkgs] @pwetzel opened pull request #90559 → mesa: 19.3.3 -> 19.3.5 → https://git.io/Jf5fI
<pjt_014> like xmonad?
<pjt_014> or 2bwm which I *still* can't understand based on the description
<suzanne> euank: nix-shell --pure -p busybox -p enlightenment.efl --run 'echo $HOME'
<suzanne> euank: that's the one.
dongcarl has quit [Quit: The Lounge - https://thelounge.chat]
<euank> well, there we go
<suzanne> welp. cue facepalm ^^. Thanks a lot for the help! Should I do anything about it or is it an "if the package says so nothing to fix" situation?
dongcarl has joined #nixos
<euank> I'm not actually sure. Maybe that package just isn't meant to be used in nix-shell at all.
orivej_ has joined #nixos
<metasyntactic> energizer: any other ideas?
<euank> It's definitely fixable, i.e. if we don't export HOME= but instead repalce the build step with `HOME=$TMPDIR make` (or whatever build tool it's using) to only set home for that one step
<suzanne> euank: yeah I just threw it in with all my packages but I think it's just a set of libs,
<euank> But I don't know if it's "wrong" for a derivation to do that.
sheeldotme has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<suzanne> but not quite the kind of thing you'd normally want in your $PATH, I suspect.
<euank> does mkDerivation have a way to set environment variables other than setupHooks?
<gchristensen> every attribute you set in mkDerivation is an env var
<euank> if there's a cleaner way to add an environment variable only for the scope of that derivation's build, that would be much cleaner
orivej has quit [Ping timeout: 256 seconds]
<euank> ... Yeah, right, ofc. It could maybe just have HOME="$TMPDIR" as an attribute and not pollute nix-shell with a setupHook
<metasyntactic> if I wanted to run a shell script at boot, what's the best way to do that?
<metasyntactic> create a systemd thing?
<{^_^}> [nixpkgs] @marsam opened pull request #90560 → rage: install manpages and completions → https://git.io/Jf5fW
<cransom> yes.
<euank> I guess if it put it in, say, `preBuild`, rather than `setupHooks`, that wouldn't hit `nix-shell` but would probably do the right thing?
<metasyntactic> I'm thinking I should not be trying to decrypt these drives at init time, but I want to do so before services like docker containers run
<ldlework> https://github.com/nix-community/poetry2nix this should probably have instructions on how to install it
<metasyntactic> is it the case that if you create fileSystems.XXX entries with encryption, then they just create initrd.luks.devices entries?
Guest17609 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90561 → gmic: 2.9.0 -> 2.9.1 → https://git.io/Jf5fB
Guest17609 has joined #nixos
silver has quit [Quit: rakede]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90562 → gnome3.gnome-boxes: 3.36.4 -> 3.36.5 → https://git.io/Jf5f6
sbetrium has quit [Quit: sbetrium]
Guest17609 has quit [Read error: Connection reset by peer]
Guest17609 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90563 → fluent-bit: 1.4.5 -> 1.4.6 → https://git.io/Jf5fA
sheeldotme has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
inf has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90564 → gitAndTools.git-filter-repo: 2.27.0 -> 2.27.1 → https://git.io/Jf5JU
<{^_^}> [nixpkgs] @chkno opened pull request #90565 → atom: 1.42.0 -> 1.48.0 → https://git.io/Jf5JI
orivej_ has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg pushed 2 commits to wxgtk_fix: https://git.io/Jf5Jt
domogled has quit [Quit: domogled]
Guest17609 has quit [Read error: Connection reset by peer]
Guest17609 has joined #nixos
nixuser has joined #nixos
growpotkin has quit [Quit: ZNC 1.8.0 - https://znc.in]
Guest17609 has quit [Client Quit]
sigmundv_ has quit [Ping timeout: 240 seconds]
<nixuser> Hi, I have a small question. There seem to be a way to install rust-analyzer plugin for vscode directly through nix (https://github.com/NixOS/nixpkgs/blob/d903f1166b967c6a10de5fcc8cec1798be5b55ff/pkgs/misc/vscode-extensions/rust-analyzer/default.nix)
<nixuser> How would I do this? I have:
<nixuser> environment.systemPackages = with pkgs; [ vscode ]; in my configuration.nix. What would I need to change?
<{^_^}> [nixpkgs] @marsam merged pull request #90560 → rage: install manpages and completions → https://git.io/Jf5fW
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5J3
<ldlework> Really though how does one install poetry2nix lol
growpotkin has joined #nixos
zot has joined #nixos
<ldlework> I'm stumped!
<energizer> you make an overlay
<ldlework> it comes with an overlay
<hodapp> poetry2nix whaaaa
<ldlework> i just don't understand how to fetch and use it locally
<energizer> poetry2nix = self.callPackage (self.fetchFromGitHub {owner = "nix-community"; repo = "poetry2nix"; rev = "1cfaa4084d651d73af137866622e3d0699851008"; sha256 = "sha256:16lp3z9w0m7sdxvbk252sx92b3jwf2122vskw0vkrfgym803y59s";}) { };
<basket_fran> anyone use a VPN
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90566 → gmm: 5.3 -> 5.4 → https://git.io/Jf5JZ
<basket_fran> which one sdo you like
<ldlework> I was doing something like this and getting infinite recursion
<{^_^}> [nixpkgs] @OmnipotentEntity opened pull request #90567 → katago: 1.4.2 -> 1.4.4 → https://git.io/Jf5Jn
<hodapp> ugh. anyone familiar with this "javax.net.ssl.SSLKeyException: RSA premaster secret error"? I'm reading at ibm.com that due to export policy on crypto you have to put some US_export_policy.jar and local_policy.jar into the JRE directory, or something. This is the first time I've ever dealt with anything like this though
<hodapp> of course this is also the only place that I use Oracle JDK...
basket_fran has left #nixos ["Leaving"]
<{^_^}> [nixpkgs] @marsam opened pull request #90568 → gitAndTools.git-gone: 0.3.2 -> 0.3.6 → https://git.io/Jf5Jl
<ldlework> energizer: when i do what you did, then i add poetry2nix to home.packages it says that: The option value `home.packages.[definition 33-entry 1]' in `/nixcfg/modules/home/linux/poetry2nix/default.nix' is not of type `package'.
<ldlework> is that what actually works for you?
<energizer> ldlework: i have that in my overlays, yes
das_j has quit [Quit: killed]
ajs124 has quit [Quit: killed]
Scriptkiddi has quit [Quit: killed]
mrpi has quit [Quit: killed]
<ldlework> i don't understand hrm
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90569 → flyway: 6.4.3 -> 6.4.4 → https://git.io/Jf5J7
das_j has joined #nixos
Scriptkiddi has joined #nixos
mrpi has joined #nixos
ajs124 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #90564 → gitAndTools.git-filter-repo: 2.27.0 -> 2.27.1 → https://git.io/Jf5JU
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5Jd
<nixuser> Thanks
nixuser has quit [Remote host closed the connection]
<ldlework> energizer: do you then just add pkgs.poetry2nix to your home.packages?
<metasyntactic> what's a good reference to add a systemd init shell script?
<energizer> ldlework: no, it's not like that
<energizer> ldlework: when i want to use it in a package i take poetry2nix as an argument in default.nix
orivej has quit [Quit: No Ping reply in 180 seconds.]
<ldlework> energizer: i just want to install poetry2nix for use as a cli app
<ldlework> why would i use it in a package?
orivej has joined #nixos
<energizer> ldlework: it isn't a cli app
shah^ has joined #nixos
<energizer> it doesn't generate code like pypi2nix does
thc202 has quit [Ping timeout: 256 seconds]
<energizer> it's just a good way of specifying a dependency on a poetry package
moet has quit [Ping timeout: 260 seconds]
<energizer> also non-poetry packages tbh
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90570 → graylog: 3.3.0 -> 3.3.1 → https://git.io/Jf5Un
<ldlework> energizer: thanks
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90571 → jc: 1.11.2 -> 1.11.6 → https://git.io/Jf5U8
felixfoertsch23 has joined #nixos
felixfoertsch has quit [Ping timeout: 272 seconds]
felixfoertsch23 is now known as felixfoertsch
suzanne_ has joined #nixos
<ldlework> energizer: are you able to use poetry2nix where a project depends on any version of gsutil?
<ldlework> I keep getting
suzanne has quit [Ping timeout: 260 seconds]
<ldlework> ERROR: No matching distribution found for importlib-metadata<2,>=0.23; python_version == "3.7" (from argcomplete==1.11.1)
<{^_^}> [nixpkgs] @bhipple merged pull request #90556 → cpplint: 1.3.0 -> 1.5.1 → https://git.io/Jf5v0
<{^_^}> [nixpkgs] @bhipple pushed 2 commits to master: https://git.io/Jf5UQ
<energizer> ldlework: that means you need to add an override to add importlib-metadata to argcomplete's deps https://github.com/nix-community/poetry2nix/#example-3 https://github.com/nix-community/poetry2nix/blob/master/overrides.nix
<ldlework> energizer: it's already listed in the lock file as a dep of argcomplete
bdju has quit [Read error: Connection reset by peer]
bdju has joined #nixos
<ldlework> I'm not exactly sure what I'm supposed to do
aljce has joined #nixos
Zer000 has joined #nixos
<aljce> I would like to add my gpg keys to my nixos iso image im building but if I do that within nix my keys will end up in the nix store. how do people normally get their gpg keys to a new machine?
<Zer000> error: packages '/nix/store/izgbi2dig2kpc7h447npa5wrvimz6yz1-dwarf-fortress-0.44.12/bin/dwarf-fortress' and '/nix/store/6wf1lbma8wsj4h0rrdyzp839pzpabp92-dwarf-fortress-full/bin/dwarf-fortress' have the same priority 5; use 'nix-env --set-flag priority NUMBER INSTALLED_PKGNAME' to change the priority of one of the conflicting packages (0 being the highest priority)
<Zer000> that's odd, i've never seen this before
<ldlework> adisbladis: hallllp
<energizer> ldlework: try overrides = poetry2nix.overrides.withDefaults (self: super: { argcomplete = super.argcomplete.overridePythonAttrs(old: {nativeBuildInputs = [self.importlib-metadata];}); });
* colemickens cheats - the private key only lives on a yubikey
<energizer> Zer000: did you use nix-env?
<Zer000> i did nix-env -iA nixos.dwarf-fortress and got that
<energizer> installing stuff with nix env is usually how i get that error and part of the reason i try to avoid nix-env
<ldlework> energizer: damn i'm impressed
<ldlework> energizer++
<{^_^}> energizer's karma got increased to 19
<energizer> Zer000: it's saying you already have dwarf fortress installed
<Zer000> I tried to remove it with nix-env -e
<energizer> ldlework: pbr wants pytest-runner
Zer000 has quit [Ping timeout: 258 seconds]
<ldlework> energizer: why isn't pytest-runner in the lockfile?
<ldlework> Why does it mention
<ldlework> File "/build/click_config_file-0.5.0/setup.py", line 26, in <module>
<ldlework> tests_require=['pytest', 'twine'],
<ldlework> in the traceback?
<ldlework> so confusing!
<energizer> i could be wrong
<ldlework> energizer: I tried adding
<ldlework> click_config_file = super.click_config_file.overridePythonAttrs
<ldlework> (old: { doCheck = false; });
<ldlework> no workie
<ldlework> the second to last line in the error is
<ldlework> builder for '/nix/store/n84xlyskphx030y71fizc8s3w118vyf5-python3.7-click-config-file-0.5.0.drv' failed with exit code 1
<ldlework> so I think it's click-config-file here
<energizer> there might be multiple things going on in parallel in that output, easier to read just one at a time passing -j1
<ldlework> yeah it's definitely click config file
<ldlework> I wonder why saying doCheck = false doesn't work
<ldlework> ok i used the same trick as before
<energizer> setup_requires usually corresponds to nativeBuildInputs
growpotkin has quit [Quit: ZNC 1.8.0 - https://znc.in]
metasyntactic has quit [Remote host closed the connection]
aljce has quit [Remote host closed the connection]
growpotkin has joined #nixos
* ldlework wonders what the pythonImportsCheckPhase is doing..
<{^_^}> [nixpkgs] @marsam merged pull request #90563 → fluent-bit: 1.4.5 -> 1.4.6 → https://git.io/Jf5fA
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5TZ
<{^_^}> [nixpkgs] @marsam merged pull request #90540 → gallery-dl: 1.14.0 -> 1.14.1 → https://git.io/Jf7xu
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5Tn
<{^_^}> [nixpkgs] @marsam opened pull request #90572 → gitAndTools.git-subtrac: 0.02 -> 0.03 → https://git.io/Jf5Tc
<{^_^}> [nixpkgs] @marsam merged pull request #90410 → ncdu: 1.15 -> 1.15.1 → https://git.io/Jf7Uq
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5TC
jumper149 has quit [Quit: WeeChat 2.8]
Supersonic112 has joined #nixos
Supersonic has quit [Disconnected by services]
Supersonic112 is now known as Supersonic
justanotheruser has quit [Ping timeout: 260 seconds]
<ldlework> energizer: I got this default.nix, https://github.com/storybro/storybro/blob/nix-support/default.nix
<ldlework> But when I build it with nix-build, I get: error: attribute 'func_timeout' missing, at /nix/store/60x4lidqkfykym33lzi3xxs5svrbfk4n-source/default.nix:214:21
<ldlework> I don't get it.
<energizer> sounds like a poetry2nix bug. --show-trace and file it
<energizer> idk, that's a question for adis
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90573 → janet: 1.9.1 -> 1.10.0 → https://git.io/Jf5T2
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90574 → jamulus: 3.5.5 -> 3.5.6 → https://git.io/Jf5T1
orivej has quit [Ping timeout: 258 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90575 → hyx: 0.1.5 -> 2020.06.09 → https://git.io/Jf5TH
orivej_ has joined #nixos
orivej has quit [Ping timeout: 264 seconds]
justanotheruser has joined #nixos
drakonis1 has quit [Quit: WeeChat 2.8]
sheeldotme has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
suzanne_ has quit [Ping timeout: 240 seconds]
sheeldotme has joined #nixos
orivej has joined #nixos
orivej_ has quit [Ping timeout: 246 seconds]
ddellacosta has quit [Ping timeout: 256 seconds]
orivej has quit [Ping timeout: 240 seconds]
waleee-cl has quit [Quit: Connection closed for inactivity]
xensky_ has quit [Ping timeout: 246 seconds]
<MtotheM> setting up development enviornments seems a lot more involved than packages
<simpson> To hack on a local source directory for things already in nixpkgs, it's possible to just open up a nix-shell directly onto the source directory, but using the nixpkgs derivation.
user_0x58 has joined #nixos
<simpson> Similarly, it's pretty common for leaf applications which build with Nix but *don't* have nixpkgs expressions to instead ship a default.nix for building. Some repos may even have a shell.nix for hacking.
xensky_ has joined #nixos
<MtotheM> yeah.. I don't quite understand how this is supposed to work yet.
<{^_^}> [nixpkgs] @dduan opened pull request #90576 → tre-command: 0.2.3 -> 0.3.1 → https://git.io/Jf5kr
<{^_^}> [nixpkgs] @marsam opened pull request #90577 → python38Packages.aiohttp: fix build on darwin → https://git.io/Jf5kP
<{^_^}> [nixpkgs] @marsam merged pull request #90572 → gitAndTools.git-subtrac: 0.02 -> 0.03 → https://git.io/Jf5Tc
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5kX
<pjt_014> every time I un-sleep/hibernate I get assigned a new IPv6 ULA. Is this a thing that configuring/failing to configure in my config file would cause?
<{^_^}> [nixpkgs] @marsam opened pull request #90578 → git-revise: 0.5.1 -> 0.6.0 → https://git.io/Jf5kh
<pjt_014> what's weirder is that it lists them as 'global' but fded:.. is not in the globally routable range
cript0nauta has quit [Ping timeout: 265 seconds]
Rusty1 has quit [Quit: WeeChat 2.3]
zupo_ has joined #nixos
endformationage has quit [Quit: WeeChat 2.6]
hoverbear has joined #nixos
<hoverbear> Any tips for getting firefox to not hard crash every time it tries to open a save dialog? Persisted between multiple installes on unstable nixpkgs for at least the last month. :( Seems to be related to gsettings schemas?
zupo has quit [Ping timeout: 260 seconds]
<hoverbear> Oh -- what... `firefox` works but devedition doesn't. Ok, that's good enough.
hoverbear has quit [Client Quit]
justanotheruser has quit [Ping timeout: 256 seconds]
knupfer has joined #nixos
nschoe has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
strickinato has joined #nixos
nschoe has quit [Ping timeout: 272 seconds]
<strickinato> Question. Right now, I have hledger installed on my machine through nix. Running `hledger --version`, I see that it's `1.17.1.1`. I know version 1.18 has been released, and I'd like to upgrade. I started poking around the nixpkgs repo, and I actually don't understand at all how it got to be version `1.17.1.1`. There doesn't seem to be a version set anywhere.
<strickinato> I'm curious how it works
sarcasticadmin has quit [Ping timeout: 260 seconds]
palo1 has joined #nixos
<lassulus> there is this giant autogenerated file pkgs/development/haskell-modules/hackage-packages.nix
<cole-h> strickinato: Haskell packages are kinda special. ~every week, peti updates the Haskell package set from the latest Stackage LTS. If you're on 20.03, you won't see 1.18 until 20.09 is released sometime after September.
<cole-h> (And after you update to 20.09 of course)
palo has quit [Ping timeout: 264 seconds]
palo1 is now known as palo
<{^_^}> [nixpkgs] @sheeldotme opened pull request #90579 → coc-nvim: add patch to hardcode node dependency → https://git.io/Jf5L3
cjpbirkbeck has quit [Quit: cjpbirkbeck]
<cole-h> strickinato: So, it appears that it should be available after Friday (when Stackage LTS 16.0 will likely be merged, which is the Stackage snapshot with hledger 1.18) on nixpkgs master
<cole-h> strickinato: You'll want to keep an eye on https://github.com/NixOS/nixpkgs/pull/90032
<{^_^}> #90032 (by peti, 5 days ago, open): Update Haskell package set to LTS 16.0 (plus other fixes)
<strickinato> Interesting... Indeed it's in there! It seems that the contents of `pkgs/development/haskell-modules/hackage-packages.nix` are not indexed (perhaps because it's too big?) it didn't come up in the search results, but I do see the version bump in that diff!
<strickinato> Thank you!
growpotkin has quit [Quit: ZNC 1.8.0 - https://znc.in]
growpotkin has joined #nixos
kenji has joined #nixos
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
<cole-h> Well, it's not merged yet :P
<cole-h> AFAIK, GitHub doesn't search the contents of open PRs
<{^_^}> [nixpkgs] @fps opened pull request #90580 → Add tap-plugins → https://git.io/Jf5Lx
<{^_^}> [nixpkgs] @Mic92 merged pull request #90225 → maintainers/teams: add golang → https://git.io/JfHFf
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/Jf5tU
strickinato has quit [Ping timeout: 240 seconds]
strickinato has joined #nixos
reanimus has quit [Ping timeout: 260 seconds]
_reanimus_ has joined #nixos
justanotheruser has joined #nixos
cr4y1 has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed to fix-457 « adding search link back to the navbar »: https://git.io/Jf5t6
asheshambasta has joined #nixos
rajivr has joined #nixos
user_0x58 has quit [Ping timeout: 256 seconds]
mallox has joined #nixos
user_0x58 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90582 → krop: 0.5.1 -> 0.6.0 → https://git.io/Jf5qO
kreyren has joined #nixos
rogue_koder has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @srhb merged pull request #90549 → mpv: fix umpv → https://git.io/Jf7h7
<{^_^}> [nixpkgs] @srhb pushed 2 commits to master: https://git.io/Jf5ql
strickinato has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @matthiasbeyer opened pull request #90583 → whatfiles: init at 2020-06-16 → https://git.io/Jf5q8
rogue_koder has joined #nixos
kleisli has quit [Remote host closed the connection]
kleisli has joined #nixos
sheeldotme has quit [Ping timeout: 256 seconds]
FRidh has joined #nixos
cole-h has quit [Quit: Goodbye]
<{^_^}> [nixpkgs] @FRidh merged pull request #90577 → python38Packages.aiohttp: fix build on darwin → https://git.io/Jf5kP
<{^_^}> [nixpkgs] @FRidh pushed commit from @marsam to master « python38Packages.aiohttp: fix build on darwin »: https://git.io/Jf5qa
mananamenos has joined #nixos
<{^_^}> [nixpkgs] @endgame opened pull request #90584 → aws-sam-cli: 0.44.0 -> 0.52.0 → https://git.io/Jf5q1
kenran has joined #nixos
<{^_^}> [nixpkgs] @ymarkus opened pull request #90585 → birdtray: fix qttranslations path → https://git.io/Jf5qM
<{^_^}> [nixos-homepage] @garbas pushed 15 commits to use-versions-from-released-nixpkgs: https://git.io/Jf5qb
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #90567 → katago: 1.4.2 -> 1.4.4 → https://git.io/Jf5Jn
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to master: https://git.io/Jf5qx
turion has joined #nixos
cript0nauta has joined #nixos
marsh has quit [Ping timeout: 246 seconds]
<{^_^}> [nixos-homepage] @garbas pushed to use-versions-from-released-nixpkgs « automatically update released-nix input »: https://git.io/Jf5mW
lsix has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed to use-versions-from-released-nixpkgs « format inputs the same »: https://git.io/Jf5m2
<{^_^}> [nixpkgs] @vbgl opened pull request #90586 → coqPackages.simple-io: 1.2.0 → 1.3.0 → https://git.io/Jf5mr
civodul has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90587 → kmymoney: 5.0.8 -> 5.1.0 → https://git.io/Jf5m6
fpob has left #nixos [#nixos]
bbb has joined #nixos
bbb is now known as Guest8331
marsh has joined #nixos
user_0x58 has quit [Quit: Leaving]
d3c[m] has joined #nixos
orivej has joined #nixos
smatting has joined #nixos
NeoCron has joined #nixos
rardiol has quit [Ping timeout: 264 seconds]
<{^_^}> [nixos-search] @garbas pushed to fix-62 « comment out things used for debugging ranking of search results »: https://git.io/Jf5YZ
neheist2 has quit [Remote host closed the connection]
nostrooo has joined #nixos
eoli3n has joined #nixos
<{^_^}> [nixos-weekly] @domenkozar merged pull request #123 → Add intro to nix blog post → https://git.io/Jf75l
<{^_^}> [nixos-weekly] @domenkozar pushed 2 commits to master: https://git.io/Jf5Yu
n000oob has joined #nixos
<n000oob> Hello @ALL
kreyren has quit [Remote host closed the connection]
<n000oob> got a x86_64 nixos, need to complie for aarch64. Need to know to install the cross compiler ?
kreyren has joined #nixos
<infinisil> Note that with Nix you don't want to install compilers, but rather just have a nix-shell environment with the compiler available
<n000oob> @infinisil: thanks a lot!
NeoCron has quit [Quit: Leaving]
orivej has quit [Ping timeout: 264 seconds]
NeoCron has joined #nixos
orivej has joined #nixos
inf has joined #nixos
eoli3n has quit [Remote host closed the connection]
n000oob has quit [Remote host closed the connection]
dkjii has quit [Quit: Lost terminal]
<{^_^}> [nixpkgs] @FRidh merged pull request #89624 → doc: `pip install` flags are specified with `pipInstallFlags` → https://git.io/Jf1dX
<{^_^}> [nixpkgs] @FRidh pushed commit from @danieldk to master « doc: `pip install` flags are specified with `pipInstallFlags` »: https://git.io/Jf5O0
orivej has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
lord| has quit [Ping timeout: 246 seconds]
lord| has joined #nixos
<{^_^}> [nixpkgs] @Emantor opened pull request #90588 → pythonPackages.canopen: 0.5.1 -> 1.1.0 → https://git.io/Jf5OP
growpotkin has quit [Quit: ZNC 1.8.0 - https://znc.in]
orivej has quit [Quit: No Ping reply in 180 seconds.]
karetsu has joined #nixos
orivej has joined #nixos
quinn has quit [Quit: ZNC 1.7.5 - https://znc.in]
eoli3n has joined #nixos
<karetsu> is there any way to get DaVinci Resolve working on nixos?
<{^_^}> [nixpkgs] @ehmry merged pull request #90226 → kristall: init at 0.2 → https://git.io/JfHbr
<{^_^}> [nixpkgs] @ehmry pushed to master « kristall: init at 0.2 »: https://git.io/Jf53U
<{^_^}> [patchelf] @domenkozar merged pull request #130 → Fixed parallel execution of tests (parallel-tests in automake) → https://git.io/Jf53q
<{^_^}> [patchelf] @domenkozar pushed 3 commits to master: https://git.io/Jf53m
<{^_^}> [patchelf] @domenkozar merged pull request #210 → Some const-correctness and C++11 auto → https://git.io/JfS2g
<{^_^}> [patchelf] @domenkozar pushed 2 commits to master: https://git.io/Jf53O
<wedens[m]> how can I make a derivation from some directory so that permissions and ownership are preserved? It'll be used for deployment as part of larger closure. is tar'ing this directory my best bet?
<jtojnar> does anyone have `runPythonCommand` trivial builder?
<dminuoso> wedens[m]: How do you preserve ownership... ?
pingiun has joined #nixos
<dminuoso> wedens[m]: Recall, nix doesn't even know about users.
<dminuoso> And the user/userid might not even exist on the remote machine
<wedens[m]> I known that it will exist
<wedens[m]> ownerhip is the least problem. I can always do `chown -R` permissions and dates are more problemactic
_rvl has quit [Ping timeout: 244 seconds]
<{^_^}> [patchelf] @domenkozar pushed 2 commits to ci-musl: https://git.io/Jf538
<dminuoso> wedens[m]: Well, ownership is a problem you can address in a nixos module.
<dminuoso> Permissions should be possible, but I cant find it
agsdheidjd has joined #nixos
drewc has quit [Ping timeout: 246 seconds]
_rvl has joined #nixos
<{^_^}> [nix] @gilligan opened pull request #3700 → Fix master → https://git.io/Jf53K
dermetfan has joined #nixos
pingiun has quit [Quit: Textual IRC Client: www.textualapp.com]
<dminuoso> wedens[m]: Permissions should actually preserved from whatever you place into your $out
drewc has joined #nixos
<{^_^}> [nixpkgs] @marius851000 opened pull request #90589 → openmw: 0.45.0 -> 0.46.0 → https://git.io/Jf53S
<wedens[m]> from the doc: After the build, Nix sets the last-modified timestamp on all files in the build result to 1 (00:00:01 1/1/1970 UTC), sets the group to the default group, and sets the mode of the file to 0444 or 0555 (i.e., read-only, with execute permission enabled if the file was originally executable). Note that possible setuid and setgid bits are cleared. Setuid and setgid programs are not currently supported by Nix. This
<wedens[m]> is because the Nix archives used in deployment have no concept of ownership information, and because it makes the build result dependent on the user performing the build.
Chiliparrot has joined #nixos
nostrooo has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90590 → libfprint: 1.90.1 -> 1.90.2 → https://git.io/Jf537
<{^_^}> [nixpkgs] @puzzlewolf opened pull request #90591 → sequoia: 0.16.0 -> 0.17.0 → https://git.io/Jf5sL
mananamenos has quit [Ping timeout: 240 seconds]
neheist2 has joined #nixos
<dminuoso> wedens[m]: Well you can definitely run chmod in the installPhase - you need this at the very least to make things executable.
<dminuoso> Otherwise you couldn't have binaries in the nix store
karetsu has quit [Quit: WeeChat 2.6]
<dminuoso> (Well strictly speaking you could.. but that's not whats happening)
neheist2 has quit [Read error: Connection reset by peer]
thc202 has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
neheist2 has joined #nixos
<raboof> yay the gnutls update reached nixos-unstable-small, feeling safer again :D
m0rphism has joined #nixos
<NobbZ[m]> <dminuoso "wedens: Well you can definitely "> He cited that the executable bit will be preserved but and otherwise read is always set, while write is always removed
<dminuoso> Oh.
<dminuoso> I missed that, sorry.
orivej has joined #nixos
<dminuoso> wedens[m]: I suppose nixos is what you are after then. :)
<{^_^}> [nix] @domenkozar merged pull request #3700 → Fix master → https://git.io/Jf53K
<{^_^}> [nix] @domenkozar pushed 3 commits to master: https://git.io/Jf5sl
<dminuoso> Nixos modules, that is.
<{^_^}> [nix] @domenkozar merged pull request #3699 → Add mising #include for strerror → https://git.io/Jf7hH
<wedens[m]> I don't see how nixos modules are related to that. It's just me using Nix as a fancy way to do rsync-like things :D
<dminuoso> wedens[m]: nixos lets you talk about users and permissions.
<dminuoso> nix is limited to whats happening inside the store, nixos lets you talk about the entire system.
EatThem has joined #nixos
EatThem has quit [Client Quit]
<dminuoso> (So one common trick is to have some systemd unit with a preStart that sets up permissions and ownership)
<clever> environment.etc can also automate that
<srk> or systemd.tmpfiles
<wedens[m]> the point is that I need to preserve original permissions. not manually re-setting them after
<dminuoso> wedens[m]: The only hack I can see, is stuffing it inside a tar archive, and have an nixos module unpack that tar.. but you're pretty much breaking the determinism guarantees.
drewc has quit [Ping timeout: 246 seconds]
kreyren has quit [Remote host closed the connection]
<dminuoso> Re-setting the permissions in a nixos module seems like the saner way
<wedens[m]> yeah, that's what I was about to do, but I thought maybe there is semi-legal some option to tell Nix to preserve permissions
kreyren has joined #nixos
mananamenos has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
kleisli has quit [Ping timeout: 265 seconds]
<wedens[m]> how do I make a derivation from private gitlab repo?
neheist2 has quit [Read error: Connection reset by peer]
<wedens[m]> ideally, including .git directory
lopsided98 has quit [Quit: No Ping reply in 180 seconds.]
<NobbZ[m]> But you can't untar into the store, as permissions will be adjusted then...
<clever> wedens[m]: you cant keep the .git with private repos
lopsided98 has joined #nixos
<eyJhb> Anyone who might know why Discord fails? https://termbin.com/zbvd
<wedens[m]> I want to copy my dotfiles repo to nixos usb along with system closure
drewc has joined #nixos
<clever> wedens[m]: all of my config is in a public github repo, and secrets are in a secrets.nix that isnt in the repo
<wedens[m]> clever: on my level of paranoia I have dotfiles in a private repo with encrypted secrets :D
<clever> lol
<wedens[m]> which makes it difficult to use them on new installations as I need to set up gpg and ssh keys before I can use dotfiles :)
<clever> wedens[m]: install nixos to a usb stick normally (with nixos-install), and fully configure that with your secrets (and luks)
<clever> wedens[m]: then you can clone private things while booted from usb, and nixos-install to more machines
<clever> it also lets you have a more customized rescue env, and a portable nixos stick, to hijack anybodies computer
agsdheidjd has quit [Ping timeout: 260 seconds]
agsdheidjd has joined #nixos
<wedens[m]> thanks for the idea. it haven't occured to me to use luks on usb stick
<clever> luks on the usb is more for when you loose it, with all the secrets it contains
orivej has quit [Ping timeout: 256 seconds]
orivej_ has joined #nixos
sigmundv_ has joined #nixos
<energizer> https://bpa.st/5NSQ doesnt seem to create any units or services, what am i missing?
<clever> energizer: one sec
<clever> energizer: i think the thing missing is a wantedBy, but there is another option as well
<clever> energizer: try setting startAt on the service instead, and it will auto-generate a timer for you
cosimone has joined #nixos
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
<wedens[m]> clever: is there an example of creating luks-encrypted usb? as we don't have declarative partitioning (yet?)
orivej has joined #nixos
<clever> wedens[m]: if you want legacy+gpt (best compatability), make gpt with 3 partitions, 1mb bios boot partition, 512mb fat32 efi system, rest for root
<clever> wedens[m]: use cryptsetup to format and open the root, then mkfs.ext4 the block device cryptsetup created (check lsblk), and then mount everything under /mnt/ as normal
<clever> wedens[m]: nixos-generate-config --root /mnt will auto-detect the luks
<wedens[m]> clever: so, I just partition usb directly like a regular disk, without making iso
<clever> yep
<clever> the iso will be more readonly, so you cant easily add secrets
<dminuoso> wedens[m]: Hold on a second. You are *that* paranoid, but don't care that the secrets end up in the *world* *readable* nix store?
<dminuoso> Are you sure you spend a thought on this?
<energizer> clever: https://bpa.st/DONA startAt works, OnCalendar doesnt. startAt docs say "This is equivalent to adding a corresponding timer unit with OnCalendar set to the value given here."
turion has quit [Quit: Leaving.]
<energizer> yeah wantedBy timers.target
<wedens[m]> dminuoso: I just don't trust 3rd party git hostings :D
<clever> energizer: yeah, thats the bit that was missing, but startAt feels cleaner
<energizer> dminuoso: secrets dont have to end up in the store
cosimone has quit [Quit: Quit.]
__monty__ has joined #nixos
<dminuoso> energizer: Ah story of my life. With nixos/nixops its very hard and annoying to avoid that. :(
<dminuoso> I decided that it's not a big problem since I can just spawn dedicated machines with no human access.
<energizer> yes, "world readable" is an exaggeration in most circumstances
<wedens[m]> dminuoso: I use private repo for dotfiles because I don't want to share email addresses, names, some private infrastructure details, etc. and I don't want to bother encrypting everything. but some (small) amount of data I don't feel like sharing with git hosting provider (like vpn configs), so I encrypt them.
* dminuoso has a synology storage at home
<dminuoso> Im not sure why people use git for everything
ArdaXi has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @danbst closed pull request #75813 → [RFC] mkDerivation: support version suffix, which is part of derivation nam… → https://git.io/Je7zq
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
ArdaXi has joined #nixos
thc202 has quit [Ping timeout: 256 seconds]
thc202 has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #90386 → nixos/systemd-boot: update bootloader if needed → https://git.io/JfQNH
<{^_^}> [nixpkgs] @flokli pushed 4 commits to master: https://git.io/Jf5ZN
<{^_^}> [nixpkgs] @bouk opened pull request #90592 → go: add CoreFoundation and Security frameworks for cgo on darwin → https://git.io/Jf5nI
noudle has joined #nixos
<eyJhb> Anyone that can try and run Discord on latest unstable?
<eyJhb> Seems broken
kleisli has joined #nixos
pbb has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
pbb has joined #nixos
dnlkrgr has joined #nixos
<{^_^}> [nix] @edolstra pushed to master « Fix FTP support »: https://git.io/Jf5n7
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
karetsu has joined #nixos
<betaboon> eyJhb: let me try
Thra11 has quit [Ping timeout: 260 seconds]
<betaboon> eyJhb: which discord-version is failing for you ?
karetsu has quit [Client Quit]
Guest8331 has quit [Read error: Connection reset by peer]
karetsu has joined #nixos
Guest8331 has joined #nixos
<{^_^}> [nixpkgs] @iblech opened pull request #90593 → elinks: bump to newest version, thereby making it usable again → https://git.io/Jf5cB
<{^_^}> [nixpkgs] @wucke13 opened pull request #90594 → webdis: 0.1.9 -> 0.1.10 → https://git.io/Jf5c9
<karetsu> why would gtk applications be themed under 19.09 outside of gnome but be completely adwaita on unstable using the same config?
<karetsu> ah, seems to be a dbus issue
<karetsu> ignore
Pesk_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @aanderse merged pull request #90372 → govc: 0.22.1 -> 0.23.0 → https://git.io/JfQ5P
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/Jf5Cv
<betaboon> eyJhb: doesnt even build for me
orivej has quit [Ping timeout: 256 seconds]
lsix has quit [Quit: WeeChat 2.8]
asymptotically has joined #nixos
karetsu has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @aanderse merged pull request #89327 → nixos/go-neb: init → https://git.io/JfiC0
<{^_^}> [nixpkgs] @aanderse pushed 3 commits to master: https://git.io/Jf5CY
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<betaboon> eyJhb: adding `libuuid` to `nativeBuildInputs` fixes it for me
<{^_^}> [nixpkgs] @marsam merged pull request #90568 → gitAndTools.git-gone: 0.3.2 -> 0.3.6 → https://git.io/Jf5Jl
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jf5Cc
pikajude has quit [Ping timeout: 246 seconds]
pikajude has joined #nixos
miah has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @mmahut merged pull request #90520 → datovka: 4.15.0 -> 4.15.1 → https://git.io/Jf7DP
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/Jf5Cu
miah has joined #nixos
<{^_^}> [nixpkgs] @mmahut closed pull request #90550 → flexibee: 2019.3.1.3 -> 2020.2.0.7 → https://git.io/Jf7hp
<eyJhb> betaboon: lot me try
<eyJhb> And that was the same for me, did not build
orivej has joined #nixos
<eyJhb> How did you get to libuuid?
<betaboon> eyJhb: how i found out or how i added it ?
<eyJhb> How you found out :p
<betaboon> eyJhb: the build log said that it didnt find XD
<eyJhb> ... I swear mine didn't!
<eyJhb> DAMN IT!!
<betaboon> eyJhb: no worries
<eyJhb> betaboon: do you want to, or should I file a PR for it?
<betaboon> eyJhb: you do it. I'm busy right now xD
markus1189 has quit [Ping timeout: 246 seconds]
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
<eyJhb> betaboon: damn it, it if fixed in master. How did I not notice that...
suzanne_ has joined #nixos
karetsu has joined #nixos
<betaboon> eyJhb: hehe. there even is #90265 and #90287 :D
<{^_^}> https://github.com/NixOS/nixpkgs/issues/90265 (by poscat0x04, 2 days ago, closed): discord 0.10.0 broken on master
<{^_^}> https://github.com/NixOS/nixpkgs/pull/90287 (by rtldg, 2 days ago, merged): discord: add libuuid to nativeBuildInputs
<eyJhb> Cherry picking it now :p
<betaboon> eyJhb: i just added it to my overlay real quick
Chiliparrot has joined #nixos
<eyJhb> Holy hell it takes forever when signing is enabled
markus1189 has joined #nixos
<etu> eyJhb: using a smartcard?
zupo_ has joined #nixos
<mananamenos> hi, I've installed direnv from nixos packages, created .envrc file in my project's root directory, but it doesn't work. What am i missing?
<eyJhb> Nope, etu just gpg :p - Thanks betaboon :D Just did the cherry-pick etc.. But I could have done the overlay as well. Only need it till friday :p
<etu> mananamenos: Have you enabled it in your shell config?
<{^_^}> [nixpkgs] @mmahut merged pull request #90403 → litecoin: 0.17.1 -> 0.18.1 → https://git.io/Jf7vO
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/Jf5WI
<etu> eyJhb: Smartcards makes gpg even slower though ;D
orivej has quit [Ping timeout: 256 seconds]
zupo has quit [Ping timeout: 264 seconds]
<betaboon> eyJhb: i tend to adding asserts in my overlay so i notice when i have to remove stuff
SandwichChef has joined #nixos
orivej has joined #nixos
<SandwichChef> Ye gods, 1151 folks
<SandwichChef> Never seen a channel this large before
<dminuoso> 1152.
<dminuoso> You yourself are one as well, are you not?
<SandwichChef> Ah, I suppose I am. Sometimes when I ponder the true self-nature of the five skhandhas, I forget that I exist
<mananamenos> etu, thanks, i was missing a " in `eval "$(direnv hook bash)`
<mananamenos> etu, can it also work with tmux?
<etu> mananamenos: Shouldn't be a problem
nikita` has joined #nixos
drdee has joined #nixos
<{^_^}> [nixpkgs] @lschuermann opened pull request #90595 → tpm2-tss: 2.3.2 -> 2.4.1 → https://git.io/Jf5Wc
cosimone has joined #nixos
<SandwichChef> Anyways, the reason that I'm here is because I've been trying to get a package imgbrd-grabber to build with help from a few others. It seems the issue is that we can't get "GL/gl.h" to be used from mesa
<SandwichChef> When we use libglvnd it causes segfaults later even though the build succeeds
<SandwichChef> Does anyone have any advice or insight into why this might be?
<mananamenos> etu, should i just add `eval "$(direnv hook bash)"` to programs.tmux.extraConfig = builtins.readFile ./tmux.conf;
<etu> mananamenos: Shouldn't be needed, if you shell evals it it will eval it in tmux as well.
orivej has quit [Ping timeout: 256 seconds]
<karetsu> something is very wrong with my dbus (e.g. playerctl -l doesn't list spotify) but dbus is active so its a user issue, where would I start looking for problems with this on nixos?
orivej has joined #nixos
<mananamenos> it doesn't. In xfce4-terminal it does the job, however in tmux it doesn't
<mananamenos> etu, just tried putting the line expression in my tmux.conf but didn't help either (or maybe i need a restart for this..)
<{^_^}> [nixpkgs] @dmrauh opened pull request #90596 → simpy: add missing dependencies → https://git.io/Jf5W0
<etu> mananamenos: Did you put it in .bashrc or somewhere else?
<{^_^}> [nixpkgs] @dmrauh closed pull request #90596 → simpy: add missing dependencies → https://git.io/Jf5W0
<mananamenos> etu, yes, i've put `eval "$(direnv hook bash)"` in my .bashrc, which made xfce4-terminal/bash work. Dropping into tmux however stops direvn working
<{^_^}> [nixpkgs] @fadenb opened pull request #90597 → graylog: 3.3.0 -> 3.3.1 (with plugins) → https://git.io/Jf5Wo
<{^_^}> [nixpkgs] @jtojnar merged pull request #90562 → gnome3.gnome-boxes: 3.36.4 -> 3.36.5 → https://git.io/Jf5f6
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/Jf5WK
drdee has quit [Quit: Leaving]
ebopp has joined #nixos
drdee has joined #nixos
<{^_^}> [nixpkgs] @fadenb closed pull request #90570 → graylog: 3.3.0 -> 3.3.1 → https://git.io/Jf5Un
mananamenos_ has joined #nixos
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bennofs[m] has joined #nixos
<bennofs[m]> i am a bit confused, there's both networking.supplicant and networking.wireless. Both of them seem to configure wpa_supplicant, which one should I use?
<{^_^}> [nixpkgs] @dmrauh opened pull request #90598 → simpy: add missing dependencies → https://git.io/Jf5le
mananamenos has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @lschuermann opened pull request #90599 → Dev/update/tpm2 abrmd 2.3.2 → https://git.io/Jf5lU
orivej_ has joined #nixos
orivej has quit [Ping timeout: 256 seconds]
taylskid has joined #nixos
<taylskid> .
<taylskid> .
karetsu has quit [Quit: WeeChat 2.6]
_rvl has quit [Ping timeout: 256 seconds]
bennofs has joined #nixos
cfricke has joined #nixos
_rvl has joined #nixos
orivej_ has quit [Ping timeout: 260 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « slack: 4.4.2 -> 4.4.3 (linux), 4.4.2 -> 4.6.0 (darwin) »: https://git.io/Jf5lb
<{^_^}> [nixpkgs] @JohnAZoidberg closed pull request #74665 → tpm2-abrmd: 2.2.0 -> 2.3.0 → https://git.io/Je10N
mananamenos_ has quit [Remote host closed the connection]
mananamenos has joined #nixos
sheepfleece has joined #nixos
<ivegotasthma> hello, why is the text in kdenlive broken https://i.imgur.com/1kD9ZB6.png ?
<ivegotasthma> I suspect it's something to do with nixos but I'm not sure where to start diagnosing
<ar> ivegotasthma: you mean, in the tree where it says alpha/transform and so on?
<ar> ivegotasthma: my guess would be that the dpi is set wrong somewhere
ckauhaus has joined #nixos
<ivegotasthma> ar: crap
<ivegotasthma> I'll give it a couple of reboots to figure it out
<ar> reboots probably won't help
<ivegotasthma> I configure the DPI from the 'Display Configuration' settings GUI
<mananamenos> etu, I've added `set-option -g default-shell ''${SHELL}` to my tmux.conf, restarted and now direnv works well.
<ivegotasthma> (I changed the DPI just now, it needs a reboot to apply it)
<etu> mananamenos: Ah, so it actually runs your bashrc now :)
<etu> mananamenos: I run fish shell, so I'm used to having to set the shell everywhere :p
<mananamenos> etu, yea :)
<ivegotasthma> ar: yeah, now it's okay, but the DPI is all fucked everywhere else :/
<{^_^}> [nixpkgs] @stigtsp opened pull request #90600 → perlPackages.MojoliciousPluginAssetPack: init at 2.08 → https://git.io/Jf58u
<{^_^}> [nixpkgs] @pallix opened pull request #90601 → lib/attrsets: fix typo in the comment of mapAttrsRecursiveCond → https://git.io/Jf58z
lsix has joined #nixos
<{^_^}> [nixpkgs] @primeos merged pull request #90538 → chromium: 83.0.4103.97 -> 83.0.4103.106 → https://git.io/Jf7A7
<{^_^}> [nixpkgs] @primeos pushed 2 commits to master: https://git.io/Jf58D
SandwichChef has quit [Ping timeout: 260 seconds]
SandwichChef has joined #nixos
nckx has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
CMCDragonkai1 has joined #nixos
sheepfleece has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @primeos opened pull request #90603 → [20.03] chromium: 83.0.4103.97 -> 83.0.4103.106 + VA-API (backport) → https://git.io/Jf54T
<{^_^}> [nixpkgs] @Lassulus merged pull request #89245 → agda: install literate files → https://git.io/Jf6ci
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/Jf54m
Rusty1 has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
knupfer has joined #nixos
<gmr> hello janny dept? cleanup on aisle 666 gchristensen , grin grahamc
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/Jf54z
<{^_^}> [nixpkgs] @andir merged pull request #90193 → buildRustCrate: set CARGO_FEATURE_* when running the build script → https://git.io/JfH0h
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/Jf54g
<gmr> (i don't actually know who moderates this room, emily Ross Schulman
<{^_^}> [nixpkgs] @peti pushed 493 commits to haskell-updates: https://git.io/Jf541
<rschulman> Sure as hell isn't me.
<gchristensen> gmr: what for?
<rschulman> spam in the backscroll
<gchristensen> where? I don't see it
dingenskirchen has quit [Quit: dingenskirchen]
dingenskirchen has joined #nixos
<simpson> Is it on the other side of some bridge, perhaps?
<simpson> (I cannot see it either, but I notice that gmr's connected through matrix.org)
<gmr> lol sorry i'll stop i don't actually care about a little spam as long as it gets cleaned up before my daily speedread of what i'd missed. this room moves very fast especially with the bots. double edged sword :S (this is a gripe but i'm trying to be nice about it @mods)
<gchristensen> on IRC, you can't remove messages already sent
<simpson> You could filter notices from {^_^} if you don't want those updates. I think some folks already do that. Indeed you could filter notices entirely on this channel, since they are basically only used by {^_^}.
<jtojnar> Yeah, it was linuxuser981:matrix.org, weird that it did not go through through the irc bridge
drdee has quit [Quit: Leaving]
munksgaard has joined #nixos
<clever> jtojnar: not seeing any trace of that name on the irc end
<jtojnar> it was a potty-mouth so perhaps the bridge filtered it out
<{^_^}> [nix] @edolstra pushed 2 commits to store-path-cxx: https://git.io/Jf5BI
<munksgaard> How can I overwrite the source and version for a particular package in my configuration.nix? nixpkgs currently has sway 1.4 (the newest release), but master has some fixes that I need for a multi-monitor setup. I have the feeling that I should be able to override the version and sha defined in https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/window-managers/sway/default.nix, but I don't know how.
<munksgaard> Can anyone point me in the direction of some documentation on how to do that kind of thing?
<gmr> simpson: the problem with filtering notices on this channel is that i don't want to filter non-bot notices. is there a reason why {^_^} uses notices?
<clever> munksgaard: just use .overrideAttrs to change the version= and src=
<gmr> Jan Tojnar: irc bridge is shadowbanning wut??? really??? who runs it?
<jtojnar> gmr: Matrix.org runs it, not sure if it is shadowbanning or just a bug
<qyliss> gmr: notices are mostly used by bots so that they're distinct from normal messages
<clever> gmr: i dont like the bridge, it leads to confusion when a user is showing as jtojnar to some, and Jan Tojnar to others, and its not always obvious the 2 are the same person
<clever> gmr: it also spams hard every time it goes down, lol
<munksgaard> cellofhuman[m]: Like explained here? https://nixos.org/nixpkgs/manual/#sec-pkg-overrideAttrs
<clever> munksgaard: yeah
<munksgaard> sorry, mean to link clever, not cellofhuman[m] :)
drdee has joined #nixos
<munksgaard> clever: Ok, I'll try. Thanks
<clever> though i am also made out of human cells, lol
<jtojnar> gmr: I think the user might have already been banned on irc last time they were here
urkk_ is now known as urkk
<munksgaard> clever: Ah, but I use sway as a service, like this: http://paste.debian.net/1152333/. Where would I put the overrideAttrs?
aveltras_ has joined #nixos
<clever> munksgaard: nixpkgs.overlays = [ (self: super: { sway = super.sway.overrideAttrs (...); }) ];
<{^_^}> [nixpkgs] @jtojnar merged pull request #90546 → gnome3.gnome-control-center: 3.36.2 -> 3.36.3 → https://git.io/Jf7hZ
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/Jf5BZ
<clever> munksgaard: that will mutate what pkgs.sway contains, so it impacts all services automatically
<munksgaard> clever: I see. So I should just put that somewhere at the top of my configuration.nix?
bennofs has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<gmr> ah that makes sense ya - is there a good spot to get up to speed on bridges Jan Tojnar (or anyone else who knows)?
<clever> munksgaard: anywhere within the main { ... } set
<munksgaard> clever: All right, thank you.
<jtojnar> gmr: what do you mean?
bennofs has joined #nixos
bennofs has quit [Client Quit]
<{^_^}> [nix] @edolstra opened pull request #3702 → Rewrite StorePath class in C++ → https://git.io/Jf5BB
bennofs has joined #nixos
<jtojnar> gmr: do you want to run your own irc <-> Matrix bridge?
<gmr> yes
<eyJhb> Is it possible to get all the requirements of a package to run? E.g. all the requirements to firefox, so I could build a minimal store from it?
<eyJhb> gchristensen: hoping you have some good input from the Docker thing :D
<jtojnar> gmr: see #irc:matrix.org
<{^_^}> [nixpkgs] @maralorn opened pull request #90604 → nixos/systemd: Update warning for restarting oneshots → https://git.io/Jf5Bw
<gchristensen> nix-env --query --requisites eyJhb
CMCDragonkai1 has joined #nixos
<{^_^}> [nix] @gilligan opened pull request #3703 → Add tests for libfetchers/attrs.hh → https://git.io/Jf5By
leah2 has quit [Ping timeout: 258 seconds]
<eyJhb> gchristensen: anything from within, so I can use it in a expression?
<eyJhb> within -> function in nixpkgs
<gchristensen> read how dockerToolsbuildImage works?
<eyJhb> Will try again, so far I con't quite see how
<{^_^}> [nixpkgs] @ryantm merged pull request #90557 → gitAndTools.git-open: 2.0.0 -> 2.1.0 → https://git.io/Jf5v5
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5Bp
iyzsong has joined #nixos
orivej_ has joined #nixos
<eyJhb> Will try to decode this line - https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/docker/default.nix#L49 looks like what I want
orivej has quit [Read error: Connection reset by peer]
suzanne has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #90574 → jamulus: 3.5.5 -> 3.5.6 → https://git.io/Jf5T1
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5Rv
SandwichChef has quit [Ping timeout: 256 seconds]
Guest8331 has quit [Ping timeout: 258 seconds]
suzanne_ has quit [Ping timeout: 265 seconds]
SandwichChef has joined #nixos
Guest8331 has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #90597 → graylog: 3.3.0 -> 3.3.1 (with plugins) → https://git.io/Jf5Wo
<{^_^}> [nixpkgs] @ryantm pushed 3 commits to master: https://git.io/Jf5Rt
orivej_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @ryantm merged pull request #90587 → kmymoney: 5.0.8 -> 5.1.0 → https://git.io/Jf5m6
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5RG
orivej has joined #nixos
leah2 has joined #nixos
bennofs has quit [Ping timeout: 258 seconds]
bennofs has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #90349 → easyrpg-player: 0.6.2 -> 0.6.2.1 → https://git.io/JfQyS
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5Rg
orivej has quit [Read error: Connection reset by peer]
jeregrine_ is now known as jeregrine
orivej has joined #nixos
SandwichChef has quit [Ping timeout: 260 seconds]
Cache has joined #nixos
suzanne_ has joined #nixos
<munksgaard> clever: So this is what I have now: http://paste.debian.net/1152344/ but when it doesn't seem like it's picking up the new version of the package? I've even pointed the overlay to my own fork where I've written stupid stuff in the `--version` output of sway, but it seems like I'm still using the old version of sway. Am I doing something wrong?
meh` has joined #nixos
drdee has quit [Ping timeout: 256 seconds]
suzanne has quit [Ping timeout: 256 seconds]
<munksgaard> s/ when /
<munksgaard> /
<munksgaard> ...
noudle has quit []
<clever> munksgaard: the .override here might be undoing .overrideAttrs
Chiliparrot has joined #nixos
gustavderdrache has joined #nixos
<munksgaard> clever: I see...
<{^_^}> [nix] @gilligan closed pull request #3703 → Add tests for libfetchers/attrs.hh → https://git.io/Jf5By
<munksgaard> Well, it was worth a shot. Thanks for your help, clever.
tilcreator has quit [Read error: Connection reset by peer]
tilcreator has joined #nixos
<{^_^}> [nixpkgs] @jshholland opened pull request #90606 → Add CF Checker and its cfunits dependency → https://git.io/Jf50Z
<ar> /34
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
cfricke has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @jagajaga merged pull request #90408 → out-of-tree: 1.3.0 -> 1.4.0 → https://git.io/Jf7fo
<{^_^}> [nixpkgs] @jagajaga pushed 2 commits to master: https://git.io/Jf500
rajivr has quit [Quit: Connection closed for inactivity]
zupo has joined #nixos
Chiliparrot has quit [Ping timeout: 256 seconds]
<gmr> is there a trick, something like $(which foo), for finding a .drv file from either its closure, or the command in $PATH ?
Chiliparrot has joined #nixos
<dutchie> nix-store --query -d $(which command)
<gmr> nvm, ```nix-store -qd $(which foo) ``` works
<gmr> dutchie++ # on it
<{^_^}> dutchie's karma got increased to 1
kleisli has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90607 → libqmi: 1.24.12 -> 1.25.900 → https://git.io/Jf50p
<{^_^}> [nix] @gilligan closed pull request #3671 → Add unit tests for rust-ffi → https://git.io/JfDML
cizra has joined #nixos
<cizra> Hello! Does NixOS somehow modify the CWD of docker build? I'm having troubles accessing my CWD:
<cizra> Step 4/12 : COPY jdk.deb /jdk.deb
<cizra> COPY failed: stat /var/lib/docker/tmp/docker-builder446988898/jdk.deb: no such file or directory
iyzsong has quit [Quit: ZNC 1.8.0 - https://znc.in]
jakobrs has joined #nixos
jakobrs has left #nixos [#nixos]
jakobrs has joined #nixos
jakobrs has left #nixos [#nixos]
<tnks_> gchristensen: I've been thinking about the argument that `nix` is still experimental. But later on, it occurred to me that it's officially how we get a repl (with `nix repl`), right? So this argument now feels inadequate. One benefit of documentation is that if it's hard to write, it's a good sign that the tool has a bad UX, so it seems like a mistake no to write documentation, even for new tools.
orivej_ has joined #nixos
orivej has quit [Read error: Connection reset by peer]
<gchristensen> tnks_: definitely 1,000% agreed
<gchristensen> tnks_: IMO we should write documentation as the is built, to litmus test "is it hard to document?"
drdee has joined #nixos
<tnks_> gchristensen: I wouldn't mind trying to help write the documentation, but I do wonder who's taken ownership of the design of `nix` as a tool. Does it still make sense that `nix-env` functionality is separate? When I first saw `nix`, I thought it would be monolithic, with even a `nix install` and `nix uninstall`.
<gchristensen> tnks_: ah. I think the part there is that nix has no nix-env equivalent, because we don't know what it should look like
<tnks_> gchristensen: is it because we don't know what it should look like? Or because there's philosophical resistance to a monolith of that scope?
<gchristensen> I don't think there is anything philisophical like that going on
<gchristensen> tnks_: I'd love to get your help on this ... one sec
<gchristensen> gilligan: you 'round?
<tnks_> Either way, I think we can start with documenting what we have. And by that, I mean... make a man page... and update the official docs.
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @bkchr opened pull request #90609 → hplip: Fix missing library → https://git.io/Jf5EE
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
<tnks_> As for a next step after getting docs in place, I think it would be healthy for the Nix core contributors to think more about what it means for a feature to be experimental for too long. When is `nix` not experimental? I'm kind of thinking about Hackage packages where things are marked as "Unstable" left and right, but the whole community is numb to it and uses them all anyway.
suzanne_ has quit [Ping timeout: 246 seconds]
suzanne has joined #nixos
suzanne has quit [Client Quit]
<gchristensen> tnks_: fwiw you're asking all the right questions, and I'm glad for it
<betaboon> tnks_++
<{^_^}> tnks_'s karma got increased to 3
<tnks_> Well, I can write documentation, and then I'll have more skin in the game, because the next question will be whether to remove this "experimental" warning or not. How do we explain it in the documentation?
cfricke has joined #nixos
<tnks_> As a point of reference, we have the experience of Debian, which took a /really/ long time to get out `apt` in its current state. And for a while, I new plenty of people who were frustrated by the weird array of tools you needed to know about... and there was even `aptitude` for a while, because the problem was unresolved.
AmandaC_ has joined #nixos
Avaq_ has joined #nixos
ynotperez_ has joined #nixos
kitemikaze_ has joined #nixos
ProofTechnique_ has joined #nixos
evck_ has joined #nixos
emilazy_ has joined #nixos
newhoggy_ has joined #nixos
teehemkay_ has joined #nixos
manveru_ has joined #nixos
<cizra> sorry, my issue was a PEBKAC. Never mind.
jbetz has quit [Ping timeout: 256 seconds]
sevanspowell has quit [Ping timeout: 256 seconds]
chriscoffee has quit [Ping timeout: 256 seconds]
lally has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90610 → libzip: 1.6.1 -> 1.7.1 → https://git.io/Jf5Eb
jmeredith has quit [Ping timeout: 256 seconds]
zot has quit [Ping timeout: 256 seconds]
fnords has quit [Ping timeout: 256 seconds]
ryjm has quit [Ping timeout: 256 seconds]
philipcristiano has quit [Ping timeout: 256 seconds]
pjt_014 has quit [Ping timeout: 240 seconds]
AmandaC has quit [Read error: Connection reset by peer]
avaq has quit [Remote host closed the connection]
newhoggy has quit [Ping timeout: 265 seconds]
ynotperez has quit [Read error: Connection reset by peer]
manveru has quit [Read error: Connection reset by peer]
kitemikaze has quit [Read error: Connection reset by peer]
emilazy has quit [Write error: Connection reset by peer]
ProofTechnique has quit [Read error: Connection reset by peer]
mankyKitty has quit [Read error: Connection reset by peer]
evck has quit [Read error: Connection reset by peer]
tazjin has quit [Read error: Connection reset by peer]
teehemkay has quit [Read error: Connection reset by peer]
tazjin has joined #nixos
tazjin has quit [Changing host]
tazjin has joined #nixos
ProofTechnique_ is now known as ProofTechnique
ynotperez_ is now known as ynotperez
emilazy_ is now known as emilazy
newhoggy_ is now known as newhoggy
manveru_ is now known as manveru
teehemkay_ is now known as teehemkay
kitemikaze_ has quit [Ping timeout: 256 seconds]
evck_ has quit [Ping timeout: 256 seconds]
_reanimus_ has quit [Ping timeout: 256 seconds]
drewr has quit [Ping timeout: 256 seconds]
lukego has quit [Ping timeout: 256 seconds]
pasukon has quit [Ping timeout: 256 seconds]
angerman has quit [Ping timeout: 256 seconds]
reanimus has joined #nixos
mankyKitty_ has joined #nixos
jbetz has joined #nixos
lally has joined #nixos
chriscoffee has joined #nixos
jmeredith has joined #nixos
philipcristiano has joined #nixos
zot has joined #nixos
pr06lefs has joined #nixos
fnords has joined #nixos
pasukon has joined #nixos
ryjm has joined #nixos
sevanspowell has joined #nixos
angerman has joined #nixos
awaz has quit [Ping timeout: 246 seconds]
kitemikaze_ has joined #nixos
evck_ has joined #nixos
lukego has joined #nixos
pamplemousse has joined #nixos
karetsu has joined #nixos
markus1189 has quit [Ping timeout: 264 seconds]
markus1189 has joined #nixos
drewr has joined #nixos
awaz has joined #nixos
sheepfleece has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #89070 → nanopb: init at 0.4.1 → https://git.io/Jfovy
<{^_^}> [nixpkgs] @kalbasit pushed 3 commits to master: https://git.io/Jf5uC
<{^_^}> [nixos-artwork] @ghuntley opened pull request #52 → add windows subsystem for linux artwork → https://git.io/Jf5u8
mankyKitty_ is now known as mankyKitty
<Ericson2314> p01ar: https://github.com/NixOS/nix/pull/3702 we may not have to worry about rust with Meson anymore
<{^_^}> nix#3702 (by edolstra, 1 hour ago, open): Rewrite StorePath class in C++
rardiol has joined #nixos
growpotkin has joined #nixos
<{^_^}> [nixos-homepage] @domenkozar opened pull request #474 → I'm trying to reduce my scope and leave space for someone else → https://git.io/Jf5uD
<{^_^}> [nixos-homepage] @grahamc merged pull request #474 → I'm trying to reduce my scope and leave space for someone else → https://git.io/Jf5uD
<{^_^}> [nixos-homepage] @grahamc pushed 2 commits to master: https://git.io/Jf5uQ
<{^_^}> [nixpkgs] @Infinisil merged pull request #90601 → lib/attrsets: fix typo in the comment of mapAttrsRecursiveCond → https://git.io/Jf58z
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/Jf5ub
<{^_^}> [nixpkgs] @fadenb opened pull request #90611 → [20.03] graylog: 3.3.0 -> 3.3.1 (with plugins) → https://git.io/Jf5uN
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90612 → menumaker: 0.99.11 -> 0.99.12 → https://git.io/Jf5uh
arahael1 has joined #nixos
rot13 has joined #nixos
cfricke has quit [Quit: WeeChat 2.8]
Arahael has quit [Ping timeout: 256 seconds]
axx[m] is now known as axx[m]1
<{^_^}> [nixpkgs] @jtojnar merged pull request #90539 → fwupd: 1.4.2 -> 1.4.4 → https://git.io/Jf7xL
<{^_^}> [nixpkgs] @jtojnar pushed 3 commits to master: https://git.io/Jf5zn
<typetetris> I try to override the `cookie` haskell packages using `callCabal2nix` but it yields an infinite recursion. I don't understand that, because I call `super.callCabal2nix` I thought it would then be a layering instead of a fix point search. Example nix expression: https://gist.github.com/typetetris/696a13f026d425d68af058d40755efc4
eoli3n has quit [Ping timeout: 246 seconds]
<{^_^}> [nix] @Ericson2314 opened pull request #3704 → WIP: Add another missing #include → https://git.io/Jf5zD
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<clever> typetetris: i think that can happen when callCabal2nix is using pkgs.cabal2nix or something like that
<clever> typetetris: you can sometimes work around it by doing `cabal2nix = super.cabal2nix.override { cookie = super.cookie; };` to force it to use the old one
drakonis_ has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #87425 → python27Packages.rope: 0.16.0 -> 0.17.0 → https://git.io/JfWel
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/Jf5gq
drakonis has quit [Ping timeout: 265 seconds]
drakonis has joined #nixos
drakonis_ has quit [Ping timeout: 260 seconds]
johnw has joined #nixos
sbetrium has joined #nixos
pamplemousse has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @Frostman opened pull request #90614 → node-exporter: 1.0.0 -> 1.0.1 → https://git.io/Jf5gp
tv1 has quit [Quit: WeeChat 2.7.1]
tv has joined #nixos
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #89634 → libiio: 0.19 -> 0.20 → https://git.io/Jf1FA
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « libiio: 0.19 -> 0.20 »: https://git.io/Jf52T
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #86688 → memtier-benchmark: 1.2.17 -> 1.3.0 → https://git.io/JfsrS
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « memtier-benchmark: 1.2.17 -> 1.3.0 »: https://git.io/Jf52I
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #90104 → opendht: 2.1.1 -> 2.1.3 → https://git.io/JfSxJ
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « opendht: 2.1.1 -> 2.1.3 »: https://git.io/Jf52t
<cab404[m]> Now for something completely different: anyone knows any open chemistry licenses?
<cab404[m]> * Now for something completely different: anyone knows any libre chemistry licenses?
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #89478 → pg_ed25519: init at 0.2 → https://git.io/JfXR7
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @k0001 to master « pg_ed25519: init at 0.2 »: https://git.io/Jf52C
<{^_^}> [nixpkgs] @priegger opened pull request #90615 → Replace vscode-extensions.ms-vscode.Go with vscode-extensions.golang.Go → https://git.io/Jf528
{^_^} has quit [Remote host closed the connection]
cole-h has joined #nixos
{^_^} has joined #nixos
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/d46e0376920 (from 22 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
sarcasticadmin has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg pushed to wxgtk_fix « woeusb: build with wxGTK3-gtk3 »: https://git.io/Jf52E
<{^_^}> [nixpkgs] @Mic92 opened pull request #90616 → python-language-server: 3.8 fixes + deps → https://git.io/Jf52a
ym555 has joined #nixos
<{^_^}> [nixpkgs] @eeeeeta opened pull request #90617 → swiften: unbreak package using Arch patch and scons flags → https://git.io/Jf525
Guest8331 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @cleverca22 opened pull request #90618 → raspberrypi-tools: 2018-10-03 -> 2020-05-28 → https://git.io/Jf5av
DerHorst_ is now known as DerHorst
rogue_koder has quit [Remote host closed the connection]
rogue_koder has joined #nixos
mog has joined #nixos
{^_^} has quit [Ping timeout: 256 seconds]
erasmas has joined #nixos
proofofkeags has joined #nixos
<gustavderdrache> how do i resize the qcow image built by nixos-generators? i set system.build.qcow.diskSize = 21474836480; in configuration.nix, but i'm still seeing a / of 430MB
ym555 has quit [Quit: leaving...]
<clever> gustavderdrache: did you delete the old qcow file before booting it?
FRidh has quit [Remote host closed the connection]
<gustavderdrache> pretty sure i did, but let me try again to be sure
FRidh has joined #nixos
<gustavderdrache> yeah, i did 'rm nixos.qcow2'
<clever> if you read the script in result, what does it do?
drakonis_ has joined #nixos
<gustavderdrache> hmm... i don't have a result link
<gustavderdrache> here's a snip of my command line:
<gustavderdrache> Formatting '~/nixos.qcow2', fmt=qcow2 size=536870912 cluster_size=65536 lazy_refcounts=off refcount_bits=16
<gustavderdrache> $ nixos-generate -f vm -c ./configuration.nix --run
<clever> > 536870912/1024/1024
orivej_ has joined #nixos
drakonis has quit [Ping timeout: 240 seconds]
orivej has quit [Read error: Connection reset by peer]
<gustavderdrache> yes, but i thought i had overridden that
<clever> gustavderdrache: search the scripts for qemu-img, and see where it gets the number from
user_0x58 has joined #nixos
<gustavderdrache> hmmm... it looks like there's a distinction between the 'vm' format and the 'qcow' format
<gustavderdrache> i had thought i could use these options, but it seems more like it'd be governed by https://github.com/nix-community/nixos-generators/blob/master/formats/vm.nix
<gustavderdrache> (based on a naive reading)
<__monty__> I have a bunch of attributes and I want to reach into them `pkgs.nameX.components.exes.nameX`, I have the following list `with pkgs; [ nameX nameY nameZ ]`. Is there a function I can map over that list to get at those similarly named nested attributes? `map (attr: getAttrFromPath [ "components" "exes" "${name attr}" ])` is the closest I can come up with but I'm lacking the "name" function. Ideally I'd
<__monty__> avoid having to pass in strings.
<clever> gustavderdrache: and you cant use the existing `nixos-rebuild build-vm` stuff?
<gustavderdrache> d'oh, i should've specified
<gustavderdrache> i'm on an ubuntu box just using nixpkgs
<clever> __monty__: i have something similar
<clever> gustavderdrache: you can still access that, nix-build '<nixpkgs/nixos>' -A vm -I nixos-config=configuration.nix
reanimus has quit [Ping timeout: 260 seconds]
reanimus has joined #nixos
<__monty__> clever: That's very close but missing the final attribute selection, right? I'm not sure whether I care but I'd like to try with the slightly more restricted version first.
orivej has joined #nixos
dingenskirchen has quit [Remote host closed the connection]
dingenskirchen has joined #nixos
drakonis has joined #nixos
karetsu has quit [Quit: WeeChat 2.6]
orivej_ has quit [Ping timeout: 264 seconds]
<gustavderdrache> clever: i did that and now i'm really confused... i'm seeing a / of 430M like i got with nixos-generate
<cole-h> Isn't qcow sparsely allocated? Meaning it'll grow as needed? Or am I misremembering
<clever> cole-h: the file on the host is sparse and tiny, but the size reported within the guest will remain the same
<clever> gustavderdrache: the `-A vm` script uses virtualisation.diskImage, and you can override it with $NIX_DISK_IMAGE when being launched
drakonis_ has quit [Ping timeout: 272 seconds]
<gustavderdrache> oh... config.virtualisation.diskSize looks like it might be the winner
orivej has quit [Ping timeout: 260 seconds]
justanotheruser has quit [Ping timeout: 246 seconds]
kenran has quit [Ping timeout: 265 seconds]
Chiliparrot has joined #nixos
<ornxka> oh god
<ornxka> i got a 4k monitor
<ornxka> and now everything is so TINY
<ornxka> i cant read anything
das-g[m] has joined #nixos
FRidh has quit [Ping timeout: 256 seconds]
<das-g[m]> Jan Tojnar: Can you review https://github.com/NixOS/nixpkgs/pull/90051 again?
<gustavderdrache> aha!
<gustavderdrache> clever++
FRidh has joined #nixos
<gustavderdrache> clever: that was the option i needed - nixos-generate is building a VM with a bigger disk
<gustavderdrache> thanks for the walkthrough of the config options
{^_^} has joined #nixos
<gustavderdrache> clever++ but for realsies this time
<{^_^}> clever's karma got increased to 458
<{^_^}> [nixpkgs] @jacg opened pull request #90624 → virtual-ans: init at 3.0.2c → https://git.io/Jf5wP
orivej has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 156 commits to staging: https://git.io/Jf5w7
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90625 → mapmap: 0.6.1 -> 0.6.2 → https://git.io/Jf5wA
<{^_^}> [nixpkgs] @thoughtpolice pushed to master « verilator: 4.034 -> 4.036 »: https://git.io/Jf5wx
philr_ has quit [Ping timeout: 265 seconds]
gs93 has joined #nixos
justanotheruser has joined #nixos
sheepfleece has quit [Quit: Lost terminal]
Thra11 has joined #nixos
Cache has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @tteggel opened pull request #90626 → Fixes open-vm-tools build → https://git.io/Jf5r8
<{^_^}> [nixpkgs] @flokli opened pull request #90627 → awscli, boto3, botocore: bump to latest versions → https://git.io/Jf5r4
mananamenos has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #90617 → swiften: unbreak package using Arch patch and scons flags → https://git.io/Jf525
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/Jf5ru
NeoCron has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @thoughtpolice pushed to master « yosys: 2020.06.11 -> 2020.06.16 »: https://git.io/Jf5rD
sbetrium has quit [Ping timeout: 256 seconds]
orivej has quit [Read error: Connection reset by peer]
orivej has joined #nixos
dermetfan has quit [Ping timeout: 256 seconds]
sbetrium has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #90366 → pythonPackages.flake8: fix dependencies → https://git.io/JfQ7G
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to staging: https://git.io/Jf5rp
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90628 → man-pages: 5.06 -> 5.07 → https://git.io/Jf5rj
meh` has quit [Ping timeout: 264 seconds]
drakonis1 has joined #nixos
codygman has quit [Read error: Connection reset by peer]
kenran has joined #nixos
zupo has joined #nixos
codygman has joined #nixos
bqv has joined #nixos
extends has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
bkv has quit [Ping timeout: 246 seconds]
dermetfan has joined #nixos
orivej has joined #nixos
the_pumpkin_man[ has quit [Quit: Idle for 30+ days]
uvnikita[m] has quit [Quit: Idle for 30+ days]
hax404[m]1 has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
slabity has quit [Quit: Idle for 30+ days]
rigola[m] has quit [Quit: Idle for 30+ days]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fantoom[m] has quit [Quit: Idle for 30+ days]
jlle[m] has quit [Quit: Idle for 30+ days]
thoughtweaver[m] has quit [Quit: Idle for 30+ days]
abbradar[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
dithered_diapen4 has quit [Quit: Idle for 30+ days]
pingiun[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
GerdFlaig[m] has quit [Quit: Idle for 30+ days]
leward[m] has quit [Quit: Idle for 30+ days]
pmc_ has quit [Quit: Idle for 30+ days]
johan767[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
austinbutler[m] has quit [Quit: Idle for 30+ days]
ris has joined #nixos
ebopp has quit [Quit: leaving]
kozova1[m] has quit [Quit: Idle for 30+ days]
efra[m] has quit [Quit: Idle for 30+ days]
bpye has quit [Quit: Idle for 30+ days]
kenran has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @erictapen closed pull request #90625 → mapmap: 0.6.1 -> 0.6.2 → https://git.io/Jf5wA
astraliam[m]1 has quit [Quit: Idle for 30+ days]
loupinfre[m] has quit [Quit: Idle for 30+ days]
<__monty__> I keep getting this warning: `trace: WARNING: license "GPL-2.0-or-later AND BSD-3-Clause" not found`. First thought it was cabal but seems it's nix. Anyone know where this is coming from?
softinio[m] has quit [Quit: Idle for 30+ days]
vmallela[m] has quit [Quit: Idle for 30+ days]
GuilhemArvilMari has quit [Quit: Idle for 30+ days]
cejota[m] has quit [Quit: Idle for 30+ days]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
exprez135[m] has quit [Quit: Idle for 30+ days]
cornu has quit [Quit: Idle for 30+ days]
cellofhuman[m] has quit [Quit: Idle for 30+ days]
kazzimazzi[m] has quit [Quit: Idle for 30+ days]
alfborge[m] has quit [Quit: Idle for 30+ days]
jjwatt[m] has quit [Quit: Idle for 30+ days]
bf0bdaf8-ad[m] has quit [Quit: Idle for 30+ days]
Arian[m] has quit [Quit: Idle for 30+ days]
ggpeti[m] has quit [Quit: Idle for 30+ days]
dot-product[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
ayrymmnwpnng[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
nbp[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
fiadliel[m] has quit [Quit: Idle for 30+ days]
M776f6c66[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
orivej has quit [Ping timeout: 246 seconds]
zupo has joined #nixos
atemu12[m] has quit [Quit: Idle for 30+ days]
loyon has quit [Quit: Idle for 30+ days]
icyhate5533[m] has quit [Quit: Idle for 30+ days]
jongeOld[m] has quit [Quit: Idle for 30+ days]
akymaky[m] has quit [Quit: Idle for 30+ days]
Jonas[m]2 has quit [Quit: Idle for 30+ days]
tamwile[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
Chiliparrot has joined #nixos
daniels[m] has quit [Quit: Idle for 30+ days]
dtz has quit [Quit: Idle for 30+ days]
tom[m]2 has quit [Quit: Idle for 30+ days]
<Izorkin> Mic92: aanderse: Who can merge this PR #87833 ?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/87833 (by Izorkin, 4 weeks ago, open): nixos/mysql: enable sandbox mode
<{^_^}> [nixpkgs] @Mic92 merged pull request #90628 → man-pages: 5.06 -> 5.07 → https://git.io/Jf5rj
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/Jf5oy
wildtrees[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
BenSima[m] has quit [Quit: Idle for 30+ days]
bachp has quit [Quit: Idle for 30+ days]
<aanderse> Izorkin: LGTM +1
smatting has quit [Ping timeout: 256 seconds]
Luigi[m]1 has quit [Quit: Idle for 30+ days]
<Mic92> Also runs on my machine
<{^_^}> [nixpkgs] @Mic92 merged pull request #87833 → nixos/mysql: enable sandbox mode → https://git.io/JfBih
<{^_^}> [nixpkgs] @Mic92 pushed 4 commits to master: https://git.io/Jf5o5
shazow[m] has quit [Quit: Idle for 30+ days]
M3DPACTE[m] has quit [Quit: Idle for 30+ days]
shu9[m]1 has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
<aanderse> Izorkin: thanks for your work on that, mysql module is way better now :)
<{^_^}> [nixpkgs] @Mic92 merged pull request #90621 → mosquitto: 1.6.8 -> 1.6.10 → https://git.io/Jf5Vi
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/Jf5oA
visl has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @FRidh pushed commit from @jonringer to staging-next « python3Packages.invoke: don't recompile bytecode »: https://git.io/Jf5Kt
quinn has joined #nixos
fendor_ is now known as fendor
Luigi[m] has joined #nixos
<{^_^}> [nixpkgs] @samueldr closed pull request #90618 → raspberrypi-tools: 2018-10-03 -> 2020-05-28 → https://git.io/Jf5av
<{^_^}> [nixpkgs] @samueldr closed pull request #89659 → raspberrypifw: 1.20190925 -> 1.20200601 → https://git.io/Jf1hX
<{^_^}> [nixpkgs] @samueldr merged pull request #89717 → Support Raspberry Pi 4 (8 GB) → https://git.io/JfMaw
<{^_^}> [nixpkgs] @samueldr pushed 6 commits to master: https://git.io/Jf5K0
FRidh has quit [Quit: Konversation terminated!]
rogue_koder has quit [Remote host closed the connection]
_ris has joined #nixos
muslimm has joined #nixos
rogue_koder has joined #nixos
* muslimm If U believe in the only creator of heaven & earth(the one) that moses believed in him and Jesus(monothiesm) u will be safe * islam is your cave of wonders; jewel of THE SEAS. For he is: (Allah) the only God; our refuge; follow islam The true religion of God it's our way to saftiness, Time and life is in god,s Hand - Be muslims to be fine ****
muslimm has quit [Killed (Sigyn (Stay safe off irc))]
<eyJhb> Thanks gchristensen :) ClosureInfo gives me all the store paths I need!
<eyJhb> gchristensen++
<{^_^}> gchristensen's karma got increased to 318
<gchristensen> cool!
ris has quit [Ping timeout: 246 seconds]
fendor has quit [Remote host closed the connection]
fendor has joined #nixos
kenran has joined #nixos
simba1 has joined #nixos
tazjin is now known as JSFzKHVpbnQ4PTEx
genevino has joined #nixos
JSFzKHVpbnQ4PTEx is now known as tazjin
<Izorkin> aanderse: please review PR #90339
<{^_^}> https://github.com/NixOS/nixpkgs/pull/90339 (by Izorkin, 2 days ago, open): php: replace substituteInPlace to patch
pr06lefs has quit [Remote host closed the connection]
pr06lefs has joined #nixos
sigmundv_ has quit [Ping timeout: 260 seconds]
<Thra11> When two unrelated things have the same name, do we generally take a first-come-first-served approach? i.e. the first one to be added to nixpkgs gets the name, and the second one has to have a prefix/suffix added?
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
asheshambasta has quit [Ping timeout: 272 seconds]
<simpson> Hm. There are other possible rules, like "most popular", or "both get a prefix", but `helm` and `kubernetes-helm` don't follow either of those rules. So perhaps you're right. What packages are you working on?
<{^_^}> [nixpkgs] @mcwitt opened pull request #90629 → nbconvert: add missing dependency → https://git.io/Jf56q
janneke_ has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed commit from @hlolli to release-20.03 « strace-graph: fix strace-graph shebang which points to perl »: https://git.io/Jf56m
<Thra11> simpson: I'm just reviewing PR #85422. I assume the most popular will tend to be pacakged first, so first-come-first-served might tend to look like most-popuplar-takes-precendence.
<{^_^}> https://github.com/NixOS/nixpkgs/pull/85422 (by marsam, 8 weeks ago, merged): lxc: 4.0.1 -> 4.0.2
<Thra11> What? That's not the PR I meant
toraritte1 has joined #nixos
<Thra11> PR #85442
<{^_^}> https://github.com/NixOS/nixpkgs/pull/85442 (by fgaz, 8 weeks ago, open): castor: init at 0.8.14
janneke has quit [Ping timeout: 246 seconds]
<simpson> Huh. Two different Gemini clients, both named "Castor"? Sounds like people read the same Greek stories. I'm not sure how to well-disambiguate them; a good example to look at might be `libtorrent`, which could refer to any of like three different libraries.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90630 → ocamlPackages.encore: 0.3 -> 0.4 → https://git.io/Jf56B
<Thra11> simpson: There are two gemini clients named castor? I thought the other one they were referring to was a java library?
<{^_^}> [nixpkgs] @Atemu opened pull request #90631 → Gns3: fix build and crash → https://git.io/Jf56z
asheshambasta has joined #nixos
<fgaz> simpson, Thra11 : yes, the other project with the same name is the java library
Heirlung has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @Ma27 merged pull request #90611 → [20.03] graylog: 3.3.0 -> 3.3.1 (with plugins) → https://git.io/Jf5uN
<{^_^}> [nixpkgs] @Ma27 pushed 3 commits to release-20.03: https://git.io/Jf567
<nh2> can I disable colours in `nix log`?
jakobrs has joined #nixos
<drakonis1> nix log exists?
<nh2> drakonis1: it is very useful
<drakonis1> nice thing.
<drakonis1> is there anything to make it easier to bump the flake lock?
<nh2> drakonis1: if one of many parallely building derivations fails, and nix said which one fails at the end, run `nix log` on that `.drv` to get nice non-interleaved output
<drakonis1> i'm tired of having to manually bump it every time i want to bump my system packages
seku has joined #nixos
nckx has joined #nixos
<jakobrs> I have a suggestion: A symlink at /nix/var/nix/profiles/boot-default that points to the boot default configuration
<infinisil> jakobrs: /run/booted-system?
<jakobrs> As a motivating example, you could rewrite the boot loader entries after nix-collect-garbage -d using /nix/var/nix/profiles/boot-default/bin/switch-to-configuration boot
<jakobrs> The boot default, not the booted system.
<jakobrs> If you choose a different configuration at boot, or do nixos-rebuild boot at some point, it's going to be different from /run/booted-system
<{^_^}> [nixpkgs] @ryantm merged pull request #90361 → ft2-clone: 1.24 -> 1.25_fix → https://git.io/JfQHH
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5it
<adamse> I want to package up a (generated) shell script and some auxiliary files, how do I best do this?
kalipso has joined #nixos
<adamse> do I put a `cat ${generatedScript} > $out/bin/script-name` in the installphase?
<jakobrs> You can just do `cp ${generatedScript} $out/bin/script-name`
<adamse> if `generatedScript = '' ... '';` ?
<{^_^}> [nixos-homepage] @garbas pushed 0 commits to fix-457: https://git.io/Jf5iG
<numkem> I've made a custom module that define a user service, it used to work just fine but now even if I activate it or not it doesn't add the service to my user. What else could be there to prevent it? I'm on unstable
<clever> adamse: if the string contains the raw script, then you probably want passAsFile
janneke_ is now known as janneke
<jakobrs> adamse: If the only file your package generates is this script, `pkgs.writeScriptBin` might be better
<clever> adamse: `foo = ''......''; passAsFile = [ "foo" ]; installPhase = "cp $fooPath $out/bin/foo";` if you want to have many files in $out
<clever> or writeScriptBin if you only want the script
<adamse> there will be at least 2 files so i'll take a look at passAsFile! thank you :)
<jakobrs> > writeScriptBin "script-name" ''...''
<{^_^}> "<derivation /nix/store/glwlmn4cy23a2fxdb45vgyy0b97c0a3l-script-name.drv>"
Heirlung has joined #nixos
<jakobrs> Is passAsFile a nixpkgs thing or is it part of `derivation` itself?
<clever> jakobrs: its part of builtins.derivation in nix
<numkem> the module that isn't applying is this https://gist.github.com/numkem/f12406e9a646a7582e3aa8709d82d037
knupfer has quit [Quit: knupfer]
knupfer1 has joined #nixos
<kalipso> Hey. in https://github.com/NixOS/nixpkgs/pull/85254 a bug that caused wrong library paths when trying to find boost libraries with cmake that got fixed some weeks ago. now i did a channel update and nixos-rebuild switch. when i now do a nix-shell -p boost171 it still points to the old derivation, is there a way to "update" that? when i try to get a
<kalipso> new boost package "nix-env -p boost172" it downloads a newer derivation that containes the fix, but not for the boost171 one.
<{^_^}> #85254 (by thequux, 8 weeks ago, merged): Cmake paths patch 1/? (boost, aws-sdk-cpp)
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90632 → gnome3.nautilus: 3.36.2 -> 3.36.3 → https://git.io/Jf5ig
<kalipso> sorry i meant nix-shell instead of nix-env
knupfer1 is now known as knupfer
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90633 → numix-icon-theme: 20.03.20 -> 20.06.07 → https://git.io/Jf5ir
<jakobrs> "Bug" I just found: If you try to do `switch-to-configuration boot` on a configuration that is not a generation of one of the system profiles, the systemd bootloader config won't be written
eoli3n has joined #nixos
pjt_014 has joined #nixos
<jakobrs> Quotes around "bug" because I can't see this being a problem
<jakobrs> To reproduce:
<jakobrs> nixos-rebuild build && rm /boot/loader/loader.conf && ./result/bin/switch-to-configuration boot
<jakobrs> Assuming `nixos-rebuild build` builds a new generation that is not already in one of the system profiles.
<adamse> clever, jakobrs: thank you, I successfully wrote the script using passAsFile!
<jakobrs> w
<jakobrs> umm, wrong window
lsix has quit [Ping timeout: 272 seconds]
<monokrome> ,locate mbsync
<{^_^}> Found in packages: isync
kenji has quit [Ping timeout: 240 seconds]
<bigvalen> So, I was trying to move my root from a ZFS filesystem on disks, to a new pool, on an nvme drive. Made up the config, got everything ready to go.../boot on a USB sdcard.
<bigvalen> # nixos-install
<bigvalen> [5 built]
<bigvalen> building the configuration in /mnt/etc/nixos/configuration.nix...
<bigvalen> copying channel...
<bigvalen> installing the boot loader...
<bigvalen> and it ... says nothing else.
kenran_ has joined #nixos
<bigvalen> I think the last command the installer ran was "nixos-enter --root /mnt -- /run/current-system/bin/switch-to-configuration boot" - any idea why that might have hung ?
asheshambasta has quit [Ping timeout: 244 seconds]
<jakobrs> $ ls /nix/var/nix/profiles
lsix has joined #nixos
kenran has quit [Ping timeout: 256 seconds]
<jakobrs> boot-default per-container per-user system system-18-link system-profiles
<cransom> the new /boot, do you mean /mnt/boot?
<simpson> Thra11, fgaz: Ah, I misread. No idea, then. `castor-browser` doesn't sound bad. At the end of the day, I am a chicken, not a pig; I'm not in charge of these names.
Chiliparrot has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #90531 → youtube-dl: 2020.06.06 -> 2020.06.16.1 → https://git.io/Jf7dV
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf5ip
drdee has quit [Remote host closed the connection]
<redcedar[m]> does anyone have any advice for troubleshooting a upnp device not showing up (in file manager or vlc)? I have a usb drive on my router which is easily discoverable by both a ps4 and vlc on my phone, but neither of my nixos machines discover it.
<{^_^}> [nixpkgs] @Ma27 pushed commit from @Luflosi to release-20.03 « youtube-dl: 2020.06.06 -> 2020.06.16.1 »: https://git.io/Jf5Pf
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
kleisli has joined #nixos
proofofkeags has quit [Remote host closed the connection]
proofofkeags has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #90589 → openmw: 0.45.0 -> 0.46.0 → https://git.io/Jf53S
<{^_^}> [nixpkgs] @veprbl pushed commit from @marius851000 to master « openmw: 0.45.0 -> 0.46.0 (#90589) »: https://git.io/Jf5Pt
<jakobrs> If I implement my suggestion, where should I create the boot-default symlink?
<jakobrs> It feels wrong to put it in /nix/var/nix/profiles because it's not actually a profile
proofofkeags has quit [Remote host closed the connection]
proofofkeags has joined #nixos
kenran has joined #nixos
lucc has joined #nixos
kenran_ has quit [Ping timeout: 256 seconds]
aveltras_ has quit [Quit: Connection closed for inactivity]
<Elorm[m]> Anyone know why the nixos subreddit has been restricted please?
<jakobrs> It seems there hasn't been a single post in a month
gentauro has quit [Read error: Connection reset by peer]
<jakobrs> maybe it was spammed
gentauro has joined #nixos
drdee has joined #nixos
amerigo has joined #nixos
jakobrs has left #nixos ["WeeChat 2.7.1"]
<numkem> I've tried pretty much everything and I can't figure out why a definition of `systemd.user.services."name" {}` isn't showing up in `systemctl --user status "name"`
ruuda has joined #nixos
<numkem> it works on another machine and it's the exact same code
<ruuda> Hi, I have two open PRs that can be merged, https://github.com/NixOS/nixpkgs/pull/88195 (reviewed and checked by OfBorg) and https://github.com/NixOS/nixpkgs/pull/88201 (reviewed but no OfBorg runs). It would be great if somebody with push access could have a look.
<{^_^}> #88195 (by ruuda, 3 weeks ago, open): libressl: add 3.1.2, default to it, remove 2.9
<{^_^}> #88201 (by ruuda, 3 weeks ago, open): acme-client: 0.2.5 -> 1.0.1
<ruuda> Oh, I see a new version of LibreSSL has been released since opening the PR, I will update #88195
<{^_^}> https://github.com/NixOS/nixpkgs/pull/88195 (by ruuda, 3 weeks ago, open): libressl: add 3.1.2, default to it, remove 2.9
justan0theruser has joined #nixos
justanotheruser has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @Lassulus merged pull request #88201 → acme-client: 0.2.5 -> 1.0.1 → https://git.io/JfzWW
<{^_^}> [nixpkgs] @Lassulus pushed 4 commits to master: https://git.io/Jf5PN
<ruuda> Thanks Lassulus!
<infinisil> Elorm[m]: The subreddit isn't an official one btw
<{^_^}> [nixpkgs] @flokli merged pull request #90627 → awscli, boto3, botocore: bump to latest versions → https://git.io/Jf5r4
<{^_^}> [nixpkgs] @flokli pushed 4 commits to staging-next: https://git.io/Jf5XL
<infinisil> It's controlled by who knows
<{^_^}> [nixpkgs] @dywedir merged pull request #90573 → janet: 1.9.1 -> 1.10.0 → https://git.io/Jf5T2
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/Jf5X3
pr06lefs has quit [Ping timeout: 260 seconds]
<bqv> ,locate bin func
<{^_^}> Found in packages: wine, eztrace, wineMinimal, wineStaging, linuxPackages.bcc, winePackages.base, winePackages.staging, wineWowPackages.base, wineWowPackages.full, linuxPackages_4_4.bcc, linuxPackages_4_9.bcc, linuxPackages_5_5.bcc, linuxPackages_4_14.bcc, linuxPackages_4_19.bcc, linuxPackages-libre.bcc, wineWowPackages.minimal, wineWowPackages.staging, linuxPackages_hardened.bcc, linuxPackages_xen_dom0.bcc, and 5 more
Church- has quit [Quit: WeeChat info:version]
ingenieroariel has joined #nixos
sbetrium has quit [Ping timeout: 256 seconds]
<ingenieroariel> Hello, I am trying out nix flakes - I wonder if anyone knows a way to configure it on a nix shell
zupo has joined #nixos
<ingenieroariel> so far I am setting: buildInputs = [ pkgs.nixFlakes ];
<ingenieroariel> but I get error: experimental Nix feature 'nix-command' is disabled
<Elorm[m]> infinisil (@freenode_infinisil:matrix.org): Yeah. But it was a pretty useful subreddit
<ingenieroariel> unless I edit .config/nix/nix.conf - I am looking for an env var or something I could set on default.nix
<cole-h> AFAIK, there is no env var to enable features
<bqv> nix.extraOptions = ''
<bqv> experimental-features = nix-command flakes ca-references
<bqv> '';
<bqv> add that line into nix.conf and persist it by adding all three to your config
<bqv> you won't be able to enable it just for one particular environment
<bqv> but there's no harm in doing it globally
<ingenieroariel> could I replace nix in the nix shell with the one in nixFlake?
<bqv> sounds like a good start
<ingenieroariel> I'll try something like that - I want end users of this to be able to git clone and nix-shell
<bqv> flakes are still kinda WIP, it can't be that easy right now
muslimm has joined #nixos
sbetrium has joined #nixos
* muslimm If U believe in the only creator of heaven & earth(the one) that moses believed in him and Jesus(monothiesm) u will be safe * islam is your cave of wonders; jewel of THE SEAS. For he is: (Allah) the only God; our refuge; follow islam The true religion of God it's our way to saftiness, Time and life is in god,s Hand - Be muslims to be fine ****
muslimm has quit [Killed (Sigyn (Stay safe off irc))]
pamplemousse has joined #nixos
<bqv> what on earth
<seku> well, at least it didnt last long.
<{^_^}> [nix] @edolstra merged pull request #3702 → Rewrite StorePath class in C++ → https://git.io/Jf5BB
<{^_^}> [nix] @edolstra pushed 3 commits to master: https://git.io/Jf5X9
<{^_^}> [nix] @edolstra pushed 0 commits to store-path-cxx: https://git.io/Jf5XQ
<ingenieroariel> here is what I tried
<ingenieroariel> now I have a command called fix, that I can use with flakes - would have been nice to have just the wrapped nix
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90634 → prometheus-mysqld-exporter: 0.11.0 -> 0.12.1 → https://git.io/Jf5Xb
orivej has joined #nixos
z3r0b1t3[m] has joined #nixos
<bqv> [this won't affect nix-build, nix-env, or any other nix-* tool]
muslimm has joined #nixos
muslimm has quit [Killed (Sigyn (Stay safe off irc))]
drakonis1 has quit [Ping timeout: 260 seconds]
muslimm has joined #nixos
drakonis1 has joined #nixos
drakonis1 has quit [Client Quit]
kenran has quit [Ping timeout: 246 seconds]
drakonis1 has joined #nixos
drakonis1 has quit [Client Quit]
muslimm has quit [K-Lined]
<{^_^}> [nixpkgs] @burke closed pull request #83804 → solargraph: Document the original bundle, not the bundlerApp's: → https://git.io/Jv7Fj
<ingenieroariel> true that
aleph- has joined #nixos
muslimm has joined #nixos
muslimm has quit [K-Lined]
orivej has quit [Quit: No Ping reply in 180 seconds.]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orivej has joined #nixos
eta has joined #nixos
<eta> hey, does anyone know why the derivation for libpqxx depends on postgresql (and not just postgresql.lib)?
<eta> (it's slightly annoying, as doing it that way pulls in ~100M of systemd)
<{^_^}> [nixpkgs] @Twey opened pull request #90635 → libinput: ensure that we only apply touchpad options to touchpads → https://git.io/Jf51q
zupo has joined #nixos
<{^_^}> [nixpkgs] @Ekleog merged pull request #87610 → matrix-nio: update → https://git.io/Jflo2
<{^_^}> [nixpkgs] @Ekleog pushed 4 commits to master: https://git.io/Jf51O
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/a84b797b28e (from 21 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
aleph- has quit [Quit: WeeChat info:version]
fivehole has joined #nixos
<__monty__> , locate bin sc-im
<{^_^}> Invalid command syntax
orivej has quit [Quit: No Ping reply in 180 seconds.]
<energizer> ,locate bin sc-im
<{^_^}> Couldn't find in any packages
<__monty__> Heh, nice bot : )
<__monty__> Have a cookie!
<cole-h> __monty__: You're probably looking for scim: scim.out /nix/store/cvlg531qdn8jfdk2c1gsm5dn61y1y5jq-sc-im-0.7.0/bin/scim
<evils> ,botsnack
<{^_^}> Oh thanks, have a cookie yourself
orivej has joined #nixos
<{^_^}> [nixpkgs] @Ekleog merged pull request #78780 → Dovecot plugin for Full Text Search (FTS) with Xapian → https://git.io/JvOvG
<{^_^}> [nixpkgs] @Ekleog pushed 3 commits to master: https://git.io/Jf514
<__monty__> cole-h: Hmmmmmmmmm
<{^_^}> [nixpkgs] @Ekleog merged pull request #90582 → krop: 0.5.1 -> 0.6.0 → https://git.io/Jf5qO
<{^_^}> [nixpkgs] @Ekleog pushed 2 commits to master: https://git.io/Jf51E
drakonis1 has joined #nixos
aleph- has joined #nixos
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
knupfer has quit [Client Quit]
<__monty__> > scim.meta.description
knupfer has joined #nixos
<{^_^}> "SC-IM - Spreadsheet Calculator Improvised - SC fork"
<{^_^}> [nixpkgs] @Ekleog merged pull request #87790 → krop: move libsForQt5.poppler out of propagatedBuildInputs → https://git.io/JfBJ6
<{^_^}> [nixpkgs] @Ekleog pushed commit from @doronbehar to master « krop: move libsForQt5.poppler out of propagatedBuildInputs (#87790) »: https://git.io/Jf512
<__monty__> Yep, thanks. energizer++ cole-h++
<{^_^}> cole-h's karma got increased to 70
<{^_^}> energizer's karma got increased to 20
<eyJhb> Never really got sc-im to work great
<infinisil> > randomPackage
<{^_^}> "pkgs.nms: A command line tool that recreates the famous data decryption\neffect seen in the 1992 movie Sneakers.\n < https://github.com/bartobri/no-more-secrets >"
<cole-h> \n
<{^_^}> [nixpkgs] @jonringer opened pull request #90636 → python2Packages: default to dontUsePythonRecompileBytecode = true; → https://git.io/Jf51K
* evils adds nms to a mental list of stuff for `hollywood`
pjt_014 has quit [Read error: Connection reset by peer]
pjt_014 has joined #nixos
<bqv> how have you managed to get random data into a pure system
<bqv> ok, i can vaguely figure out how, but the real question is why >_>
<gchristensen> it doesn't actually
<gchristensen> > :v randomPackage
<{^_^}> randomPackage = let inherit (r randomPackage') name value; in "pkgs.${name}: ${builtins.replaceStrings ["\n"] [" "] value.meta.description} < ${value.meta.homepage} >"
<gchristensen> > :v random
<{^_^}> random = fnv1a32 builtins.currentTime
<bqv> ah, ghetto random
<infinisil> Good enough!
<gchristensen> > vom "good enough for this!"
<{^_^}> "good enough for this!"
<gchristensen> oh. heh
lucc has quit [Quit: WeeChat 2.8]
* infinisil votes for colors in #nixos
<gchristensen> nah it makes spam even worse
ebopp has joined #nixos
pamplemousse has quit [Ping timeout: 260 seconds]
<bqv> technicolor spam
<ingenieroariel> I ended up caving and using: nix.package = pkgs.nixFlakes;
* bqv smirks
<{^_^}> [nix] @edolstra pushed to master « Remove StorePath::clone() and related functions »: https://git.io/Jf5Mv
lilpea has joined #nixos
gxt has quit [Quit: WeeChat 2.8]
davidv7 has quit [Ping timeout: 264 seconds]
noam has joined #nixos
noam has quit [Client Quit]
MtotheM1 has joined #nixos
lilpea has quit [Read error: Connection reset by peer]
MtotheM has quit [Ping timeout: 246 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/448a27759ee (from 24 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<mgdm> ,channels
<{^_^}> Largest Nix channels: #nixos, #nixos-dev, #nixos-chat, #nixos-aarch64, #nixos-security, #nixcon, #nixos-officehours, #nixops, #haskell.nix, #nix-darwin, #nixos-de, #nixos-emacs, #nixos-on-your-router, #nixos-nur, #nix-lang, #nixos-fr, #nixos-systemd, #nixos-borg, #nixos-wiki
lilpea has joined #nixos
orivej_ has joined #nixos
orivej has quit [Read error: Connection reset by peer]
kreyren has quit [Remote host closed the connection]
cript0nauta has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @andir merged pull request #89981 → microcodeIntel: 20200520 -> 20200609 → https://git.io/JfyQP
<{^_^}> [nixpkgs] @andir pushed 3 commits to master: https://git.io/Jf5Mn
kreyren has joined #nixos
smatting has joined #nixos
<energizer> i have nixos on an M.2 nvme ssd and i'm trying to boot my laptop. it works when i use the M.2 usb adapter, but when i plug the card directly into the M.2 slot in the laptop, stage 1 boot fails to find the encrypted device /dev/disk/by-uuid/... with the root partition on it
<energizer> i have boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" "uas" "nvme" ];
<energizer> the stage 1 interactive shell doesn't have bin/blkid and /dev/disk doesnt exist so i can't see what uuids are available
<energizer> i figure there's some kernel module missing
lsix has quit [Ping timeout: 256 seconds]
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
cosimone has quit [Quit: Quit.]
orivej has joined #nixos
lilpea has quit [Read error: Connection reset by peer]
cosimone has joined #nixos
fivehole has quit [Quit: Leaving]
fivehole has joined #nixos
<energizer> the laptop is dell xps 13
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #90007 → [20.03] microcodeIntel: 20200508 -> 20200520 -> 20200609 → https://git.io/JfypP
<{^_^}> [nixpkgs] @andir pushed 4 commits to release-20.03: https://git.io/Jf5MV
<timokau[m]> If anyone here has any review-starved PRs, please test the new experimental bot marvin!
<timokau[m]> As the PR author you can opt-in like this: https://github.com/NixOS/nixpkgs/pull/87621#issuecomment-644966783
ruuda has quit [Quit: ruuda]
<energizer> aha, as usual gchristensen to the rescue https://grahamc.com/blog/nixos-on-dell-9560
<energizer> needed to disable raid in the firmware settings
<energizer> gchristensen++
<{^_^}> gchristensen's karma got increased to 319
orivej has quit [Ping timeout: 264 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @hedning merged pull request #90632 → gnome3.nautilus: 3.36.2 -> 3.36.3 → https://git.io/Jf5ig
<{^_^}> [nixpkgs] @hedning pushed commit from @r-ryantm to staging « gnome3.nautilus: 3.36.2 -> 3.36.3 (#90632) »: https://git.io/Jf5Mi
ogkloo has joined #nixos
NeoCron has joined #nixos
ingenieroariel has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/f2592c0b946 (from 13 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
five-hole has joined #nixos
five-hole has quit [Client Quit]
fivehole has quit [Quit: Leaving]
absoluutely has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
<symphorien> timokau[m]: maybe you can make the bot a bit permissive on spelling: https://github.com/NixOS/nixpkgs/pull/84135#issuecomment-645009283
<symphorien> but in anycase, timokau[m]++
<{^_^}> timokau[m]'s karma got increased to 4
orivej has joined #nixos
user_0x58 has quit [Ping timeout: 260 seconds]
amerigo has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90637 → nlohmann_json: 3.7.3 -> 3.8.0 → https://git.io/Jf5Md
<{^_^}> [nixpkgs] @HugoReeves closed pull request #89452 → cassowary: 0.7.0 -> 0.10.0 → https://git.io/JfXLx
<glittershark> timokau[m]: do you have a quick elevator pitch on what this gets me besides the existing github pull request review statuses + workflow?
<{^_^}> [nixpkgs] @jtojnar merged pull request #90051 → hamster: init at 3.0.2 → https://git.io/JfSzB
<{^_^}> [nixpkgs] @jtojnar pushed 3 commits to master: https://git.io/Jf5MA
<{^_^}> [nixpkgs] @flokli merged pull request #90619 → ssb/patchwork-classic: Remove due to deprecation → https://git.io/Jf5ak
<{^_^}> [nixpkgs] @flokli pushed 3 commits to master: https://git.io/Jf5Df
<{^_^}> [nixpkgs] @benley opened pull request #90638 → melonDS: init at 0.8.3 → https://git.io/Jf5DJ
<{^_^}> [nixpkgs] @eliaslfox opened pull request #90639 → nixos/nvidia: Only install nvidia-persistenced when enabled as a service → https://git.io/Jf5DU
ckauhaus has quit [Quit: WeeChat 2.7.1]
<{^_^}> [nixpkgs] @flokli merged pull request #90609 → hplip: Fix missing library → https://git.io/Jf5EE
<{^_^}> [nixpkgs] @flokli pushed 3 commits to master: https://git.io/Jf5DL
orivej_ has joined #nixos
orivej has quit [Ping timeout: 264 seconds]
mounty has quit [Quit: Konversation terminated!]
<timokau[m]> symphorien: Thanks for the feedback, might be a good idea
<timokau[m]> Possibly less relevant when/if people get used to it though
<timokau[m]> glittershark: More explicit, more flexible & extendable
<glittershark> timokau[m]: cool, knew a comment like that had to exist somewhere :)
<timokau[m]> Basically if you have merge permissions and are looking for already reviewed PRs, searching github for approvals is not very useful. People use approvals to mean all kinds of things.
<glittershark> ah sure, so this is to help the workflow of people with a commit bit
lsix has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
dnlkrgr has quit [Quit: WeeChat 2.7.1]
<{^_^}> [nixpkgs] @artemist closed pull request #72209 → melonDS: init at 0.8.3 → https://git.io/JeuV5
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf5Dz
Yaniel has quit [Ping timeout: 260 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
knupfer has quit [Ping timeout: 260 seconds]
Yaniel has joined #nixos
mallox has quit [Quit: WeeChat 2.8]
orivej_ has quit [Ping timeout: 256 seconds]
<evils> timokau[m]: PRs already reviewed, but via a github bot?
<{^_^}> [nixpkgs] @Mic92 opened pull request #90641 → python3.pkgs.jedi: remove unused postPatch → https://git.io/Jf5Dy
adamtkh has joined #nixos
shibboleth has quit [Quit: shibboleth]
ogkloo has quit [Ping timeout: 272 seconds]
sbetrium has quit [Quit: sbetrium]
dingenskirchen has quit [Quit: dingenskirchen]
dingenskirchen1 has joined #nixos
extends has quit [Quit: leaving]
sbetrium has joined #nixos
<timokau[m]> glittershark: For now yes, mostly. But also improvements for unprivileged reviewers (hopefully much more rewarding if your reviews actually lead to a merge) and PR authors. Many extensions possible down the line.
dingenskirchen1 is now known as dingenskirchen
<glittershark> timokau[m]: cool!
<timokau[m]> evils: Yes! And PRs ready for review.
<{^_^}> [nixpkgs] @flokli merged pull request #90604 → nixos/systemd: Update warning for restarting oneshots → https://git.io/Jf5Bw
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/Jf5yq
__monty__ has quit [Quit: leaving]
noudle has joined #nixos
cosimone has quit [Quit: Quit.]
betawaffle has quit [Ping timeout: 256 seconds]
betawaffle has joined #nixos
sbetrium has quit [Ping timeout: 264 seconds]
user_0x58 has joined #nixos
absoluutely has quit [Ping timeout: 264 seconds]
simba1 has quit [Ping timeout: 256 seconds]
NeoCron has quit [Ping timeout: 260 seconds]
parsnip has quit [Ping timeout: 256 seconds]
smatting has quit [Ping timeout: 256 seconds]
parsnip has joined #nixos
<{^_^}> [nixpkgs] @ProgVal opened pull request #90642 → vlc: 3.0.10 -> 3.0.11 → https://git.io/Jf5yK
pamplemousse has joined #nixos
AluisioASG has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
bitonic has quit [Ping timeout: 256 seconds]
AluisioASG has joined #nixos
bitonic has joined #nixos
sbetrium has joined #nixos
ArdaXi has quit [Ping timeout: 256 seconds]
smatting has joined #nixos
ArdaXi has joined #nixos
pamplemousse has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @mweinelt opened pull request #90643 → pythonPackages.coveralls: 1.9.2 -> 2.0.0 → https://git.io/Jf5Sf
dermetfan has quit [Ping timeout: 272 seconds]
nikita` has quit [Quit: leaving]
qz has quit [Ping timeout: 256 seconds]
qz has joined #nixos
copy_ has joined #nixos
ryjm has quit [Ping timeout: 256 seconds]
copy has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #90644 → opentx: 2.3.7 -> 2.3.9 → https://git.io/Jf5Sm
ryjm has joined #nixos
gs93 has quit [*.net *.split]
goibhniu1 has quit [*.net *.split]
contrun1 has quit [*.net *.split]
eddyb has quit [*.net *.split]
mzafkismugi[m]1 has quit [*.net *.split]
mkg20001 has quit [*.net *.split]
Poscat[m] has quit [*.net *.split]
rednaZ[m]1 has quit [*.net *.split]
kriteus[m] has quit [*.net *.split]
ngerstle[m] has quit [*.net *.split]
eadwu[m] has quit [*.net *.split]
tet[m] has quit [*.net *.split]
sshow[m] has quit [*.net *.split]
mullein[m] has quit [*.net *.split]
limpid-kzonix[m] has quit [*.net *.split]
Grauwolf[m] has quit [*.net *.split]
neonfuz2 has quit [*.net *.split]
anton-latukha[m] has quit [*.net *.split]
theduke[m] has quit [*.net *.split]
tyrion-mx has quit [*.net *.split]
DamienCassou1 has quit [*.net *.split]
NobbZ[m] has quit [*.net *.split]
redcedar[m] has quit [*.net *.split]
observer_alpha[m has quit [*.net *.split]
coyoneda[m] has quit [*.net *.split]
azazel1 has quit [*.net *.split]
arcnmx has quit [*.net *.split]
alj[m] has quit [*.net *.split]
Cdric[m] has quit [*.net *.split]
spherinder[m] has quit [*.net *.split]
kriteus[m] has joined #nixos
rot13 has quit [Ping timeout: 256 seconds]
cyraxjoe has quit [Ping timeout: 256 seconds]
rot13_ has joined #nixos
cyraxjoe has joined #nixos
q3k has quit [Ping timeout: 256 seconds]
dxtr has quit [Ping timeout: 256 seconds]
dxtr has joined #nixos
szicari has quit [Ping timeout: 264 seconds]
q3k has joined #nixos
Luigi[m] has quit [*.net *.split]
logan12358[m] has quit [*.net *.split]
emmanuelrosa[m] has quit [*.net *.split]
koschitzky[m]1 has quit [*.net *.split]
Nacho[m]1 has quit [*.net *.split]
dxtr[m]1 has quit [*.net *.split]
ibinzari[m] has quit [*.net *.split]
chvp has quit [*.net *.split]
mt[m] has quit [*.net *.split]
adit[m] has quit [*.net *.split]
iwvt[m] has quit [*.net *.split]
NickHu1 has quit [*.net *.split]
MawKKe[m] has quit [*.net *.split]
wangoe[m] has quit [*.net *.split]
alienpirate5 has quit [*.net *.split]
Ericson2314 has quit [*.net *.split]
anarchomoh[m] has quit [*.net *.split]
freeman42x[m] has quit [*.net *.split]
roberth has quit [*.net *.split]
sm[m] has quit [*.net *.split]
wak-work has quit [*.net *.split]
bobfett1 has quit [*.net *.split]
CRTified[m] has quit [*.net *.split]
musicmatze[m] has quit [*.net *.split]
gsals[m] has quit [*.net *.split]
trufas[m] has quit [*.net *.split]
Notkea[m] has quit [*.net *.split]
davidak[m] has quit [*.net *.split]
sibachian[m] has quit [*.net *.split]
chreekat[m] has quit [*.net *.split]
fsmnarmosta[m] has quit [*.net *.split]
ky0ko has quit [*.net *.split]
Fulgen has quit [*.net *.split]
zgrep has quit [*.net *.split]
aleph- has quit [Ping timeout: 256 seconds]
reanimus has quit [Ping timeout: 256 seconds]
NinjaTrappeur has quit [Ping timeout: 256 seconds]
jhuizy has quit [Ping timeout: 256 seconds]
<energizer> i see some people encrypt their data with a key file and then encrypt the key file with a password. what's the benefit of that over just encrypting the data with a password without the middle step?
jhuizy has joined #nixos
reanimus has joined #nixos
NinjaTrappeur has joined #nixos
jean-lopes has joined #nixos
mekeor has quit [Ping timeout: 256 seconds]
mekeor has joined #nixos
szicari has joined #nixos
aleph- has joined #nixos
fendor_ has joined #nixos
ericnoan has quit [Ping timeout: 264 seconds]
zgrep has joined #nixos
ebopp has quit [Ping timeout: 256 seconds]
ArdaXi has quit [Ping timeout: 256 seconds]
blindidiotgod has quit [Ping timeout: 256 seconds]
philipp[m]2 has quit [Ping timeout: 256 seconds]
blindidiotgod1 has joined #nixos
Philipp[m]21 has joined #nixos
rardiol has quit [Ping timeout: 246 seconds]
vykook has quit [Ping timeout: 246 seconds]
<manveru> keys usually have more entropy that passwords
ebopp has joined #nixos
ArdaXi has joined #nixos
<energizer> but the password is sufficient to get the key, so how does that help?
fendor_ has quit [Client Quit]
agsdheidjd has quit [Ping timeout: 256 seconds]
<manveru> well, you usually try to protect the key more than the file you're encrypting :)
vykook has joined #nixos
<manveru> the password is only there in case you somehow leak your key
<energizer> in this case https://grahamc.com/blog/nixos-on-dell-9560 the data and the key are on the same disk so i dont understand how it helps
<jean-lopes> Hello, i'm quite new to nixos and I need to use the netExtender (http://help.sonicwall.com/help/sw/eng/8112/8/0/0/content/Chapter2_Overview.03.22.html) application to connect to my work VPN, I tried searching and didn't find a 'ready-to-use' solution, what are my options? The company website provides an RPM file
fendor has quit [Ping timeout: 260 seconds]
ericnoan has joined #nixos
<manveru> energizer: just ask gchristensen directly then :)
<infinisil> energizer: Usually the reason is that it adds another factor: You need to have the file and know the password to decrypt the data. Having one of them isn't eneugh
logan12358[m] has joined #nixos
emmanuelrosa[m] has joined #nixos
Notkea[m] has joined #nixos
chvp has joined #nixos
koschitzky[m]1 has joined #nixos
Luigi[m] has joined #nixos
Nacho[m]1 has joined #nixos
MawKKe[m] has joined #nixos
roberth has joined #nixos
CRTified[m] has joined #nixos
trufas[m] has joined #nixos
dxtr[m]1 has joined #nixos
sm[m] has joined #nixos
alienpirate5 has joined #nixos
mt[m] has joined #nixos
iwvt[m] has joined #nixos
anarchomoh[m] has joined #nixos
sibachian[m] has joined #nixos
bobfett1 has joined #nixos
NickHu1 has joined #nixos
Fulgen has joined #nixos
adit[m] has joined #nixos
ibinzari[m] has joined #nixos
musicmatze[m] has joined #nixos
chreekat[m] has joined #nixos
ky0ko has joined #nixos
fsmnarmosta[m] has joined #nixos
davidak[m] has joined #nixos
wangoe[m] has joined #nixos
gsals[m] has joined #nixos
freeman42x[m] has joined #nixos
Ericson2314 has joined #nixos
wak-work has joined #nixos
<infinisil> And somebody that steals the key file doesn't know the password, and somebody that steals the password doesn't have the key file
<energizer> infinisil: they're on the same disk
<manveru> in this case you have to steal the laptop
<infinisil> Then I don't think it adds anything extra
<gchristensen> tbh I think I did it so I'd only have to type the password in once, or rotate the user-typed in only one place
<gchristensen> but I wouldn't read any special sauce
shah^ has quit [Ping timeout: 264 seconds]
<energizer> otherwise you'd have to type the password for each partition?
asymptotically has quit [Quit: Leaving]
<gchristensen> you don't actually need to, no, nixos will try the typed password on all partitions
shah^ has joined #nixos
shah^ has quit [Max SendQ exceeded]
<gchristensen> it may have been misguided from the start
shah^ has joined #nixos
shah^ has quit [Max SendQ exceeded]
shah^ has joined #nixos
shah^ has quit [Max SendQ exceeded]
shah^ has joined #nixos
<energizer> thanks for clarifying
slikts has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @Ekleog merged pull request #87269 → tartube: 2.0.016 -> 2.1.0 → https://git.io/JfcMO
<{^_^}> [nixpkgs] @Ekleog pushed 3 commits to master: https://git.io/Jf5Sy
lunik15 has joined #nixos
<manveru> maybe something like https://github.com/cornelinux/yubikey-luks might be more secure :)
<gchristensen> sounds good
<gchristensen> a better bet would be using the laptop's TPM as part of the decryption process
<gchristensen> (better bet than using a key partition)
<manveru> man... that amazon-init service module is really annoying the hell out of me :|
<manveru> really wanted to avoid having to make my own AMI again
lunik1 has quit [Ping timeout: 256 seconds]
lunik15 is now known as lunik1
q3k has quit [Remote host closed the connection]
`slikts has joined #nixos
`slikts has quit [Changing host]
`slikts has joined #nixos
q3k has joined #nixos
<manveru> i feed a nixos configuration into amazon-init via user_data, which in turn spawns another systemd service that does a second nixos-rebuild so i can actually build a flake with more than one file...
mzafkismugi[m]1 has joined #nixos
goibhniu1 has joined #nixos
contrun1 has joined #nixos
gs93 has joined #nixos
eddyb has joined #nixos
rednaZ[m]1 has joined #nixos
ngerstle[m] has joined #nixos
tet[m] has joined #nixos
limpid-kzonix[m] has joined #nixos
Poscat[m] has joined #nixos
sshow[m] has joined #nixos
neonfuz2 has joined #nixos
mkg20001 has joined #nixos
eadwu[m] has joined #nixos
tyrion-mx has joined #nixos
mullein[m] has joined #nixos
theduke[m] has joined #nixos
NobbZ[m] has joined #nixos
redcedar[m] has joined #nixos
anton-latukha[m] has joined #nixos
azazel1 has joined #nixos
DamienCassou1 has joined #nixos
Grauwolf[m] has joined #nixos
coyoneda[m] has joined #nixos
arcnmx has joined #nixos
Cdric[m] has joined #nixos
observer_alpha[m has joined #nixos
alj[m] has joined #nixos
spherinder[m] has joined #nixos
lsix has quit [Quit: WeeChat 2.8]
trfl has quit [Quit: ZNC - http://znc.in]
dingenskirchen has quit [Read error: Connection reset by peer]
dingenskirchen has joined #nixos
zot has quit [Ping timeout: 256 seconds]
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
zot has joined #nixos
kalipso has quit [Remote host closed the connection]
<manveru> the hoops you jump through to avoid needing direct ssh access :P
gs93 has quit [*.net *.split]
contrun1 has quit [*.net *.split]
goibhniu1 has quit [*.net *.split]
mkg20001 has quit [*.net *.split]
eddyb has quit [*.net *.split]
Poscat[m] has quit [*.net *.split]
mzafkismugi[m]1 has quit [*.net *.split]
rednaZ[m]1 has quit [*.net *.split]
tet[m] has quit [*.net *.split]
sshow[m] has quit [*.net *.split]
mullein[m] has quit [*.net *.split]
eadwu[m] has quit [*.net *.split]
ngerstle[m] has quit [*.net *.split]
Grauwolf[m] has quit [*.net *.split]
limpid-kzonix[m] has quit [*.net *.split]
DamienCassou1 has quit [*.net *.split]
tyrion-mx has quit [*.net *.split]
theduke[m] has quit [*.net *.split]
redcedar[m] has quit [*.net *.split]
NobbZ[m] has quit [*.net *.split]
anton-latukha[m] has quit [*.net *.split]
observer_alpha[m has quit [*.net *.split]
coyoneda[m] has quit [*.net *.split]
neonfuz2 has quit [*.net *.split]
arcnmx has quit [*.net *.split]
azazel1 has quit [*.net *.split]
alj[m] has quit [*.net *.split]
Cdric[m] has quit [*.net *.split]
spherinder[m] has quit [*.net *.split]
sabry97[m]1 has joined #nixos
sabry97[m] has quit [Ping timeout: 256 seconds]
trfl has joined #nixos
quidome[m] has joined #nixos
jean-lopes has quit [Quit: Leaving]
Luigi[m] has quit [*.net *.split]
logan12358[m] has quit [*.net *.split]
emmanuelrosa[m] has quit [*.net *.split]
dxtr[m]1 has quit [*.net *.split]
koschitzky[m]1 has quit [*.net *.split]
ibinzari[m] has quit [*.net *.split]
Nacho[m]1 has quit [*.net *.split]
chvp has quit [*.net *.split]
wangoe[m] has quit [*.net *.split]
mt[m] has quit [*.net *.split]
MawKKe[m] has quit [*.net *.split]
iwvt[m] has quit [*.net *.split]
NickHu1 has quit [*.net *.split]
adit[m] has quit [*.net *.split]
sm[m] has quit [*.net *.split]
anarchomoh[m] has quit [*.net *.split]
roberth has quit [*.net *.split]
alienpirate5 has quit [*.net *.split]
Ericson2314 has quit [*.net *.split]
freeman42x[m] has quit [*.net *.split]
bobfett1 has quit [*.net *.split]
wak-work has quit [*.net *.split]
CRTified[m] has quit [*.net *.split]
musicmatze[m] has quit [*.net *.split]
Notkea[m] has quit [*.net *.split]
gsals[m] has quit [*.net *.split]
trufas[m] has quit [*.net *.split]
davidak[m] has quit [*.net *.split]
fsmnarmosta[m] has quit [*.net *.split]
chreekat[m] has quit [*.net *.split]
sibachian[m] has quit [*.net *.split]
ky0ko has quit [*.net *.split]
Fulgen has quit [*.net *.split]
<pjt_014> oh no not again
<pjt_014> hmm :L
drakonis1 has quit [*.net *.split]
drdee has quit [*.net *.split]
kitemikaze_ has quit [*.net *.split]
leah2 has quit [*.net *.split]
philipcristiano has quit [*.net *.split]
thc202 has quit [*.net *.split]
ajs124 has quit [*.net *.split]
das_j has quit [*.net *.split]
b42 has quit [*.net *.split]
abbe has quit [*.net *.split]
nwspk has quit [*.net *.split]
gilligan has quit [*.net *.split]
nek0 has quit [*.net *.split]
DigitalKiwi has quit [*.net *.split]
Orbstheorem has quit [*.net *.split]
vpfeiffer[m] has quit [*.net *.split]
Pidgeotto has quit [*.net *.split]
amf has quit [*.net *.split]
klys has quit [*.net *.split]
lzmartinico has quit [*.net *.split]
ardumont has quit [*.net *.split]
mkfart[m] has quit [*.net *.split]
mumuluxi_ has quit [*.net *.split]
gmr has quit [*.net *.split]
quidome[m] has quit [*.net *.split]
shah^ has quit [*.net *.split]
vykook has quit [*.net *.split]
Philipp[m]21 has quit [*.net *.split]
blindidiotgod1 has quit [*.net *.split]
ebopp has quit [*.net *.split]
zgrep has quit [*.net *.split]
NinjaTrappeur has quit [*.net *.split]
gildedlink[m] has quit [*.net *.split]
bennofs[m] has quit [*.net *.split]
marius851000[m] has quit [*.net *.split]
zrsk[m] has quit [*.net *.split]
felschr[m] has quit [*.net *.split]
watzon has quit [*.net *.split]
hpfr[m] has quit [*.net *.split]
Philipp[m]1 has quit [*.net *.split]
MilkManzJourDadd has quit [*.net *.split]
cmcaine[m] has quit [*.net *.split]
flip[m] has quit [*.net *.split]
Foooooo[m] has quit [*.net *.split]
atgo[m] has quit [*.net *.split]
yangm has quit [*.net *.split]
thefloweringash has quit [*.net *.split]
interro[m] has quit [*.net *.split]
siraben has quit [*.net *.split]
leons has quit [*.net *.split]
jojosch[m] has quit [*.net *.split]
xfix has quit [*.net *.split]
demoulin[m] has quit [*.net *.split]
keithy[m] has quit [*.net *.split]
evanjs[m] has quit [*.net *.split]
chris[m]4 has quit [*.net *.split]
ongy[m] has quit [*.net *.split]
nikola[m]2 has quit [*.net *.split]
boogiewoogie[m] has quit [*.net *.split]
layus[m] has quit [*.net *.split]
ma27[m] has quit [*.net *.split]
siel has quit [*.net *.split]
tarzeau has quit [*.net *.split]
amir has quit [*.net *.split]
naominitel has quit [*.net *.split]
cruxeternus has quit [*.net *.split]
zemm_ has quit [*.net *.split]
steell_ has quit [*.net *.split]
xe4 has quit [*.net *.split]
rsa has quit [*.net *.split]
ben has quit [*.net *.split]
eyJhb has quit [*.net *.split]
DerHorst has quit [*.net *.split]
DerGuteMoritz has quit [*.net *.split]
incognito9999 has quit [*.net *.split]
cybrian has quit [*.net *.split]
mfernandez has quit [*.net *.split]
boolman has quit [*.net *.split]
jaeckel has quit [*.net *.split]
goodwill has quit [*.net *.split]
mupf has quit [*.net *.split]
Twey has quit [*.net *.split]
greymalkin has quit [*.net *.split]
tomaw has quit [*.net *.split]
n3t has quit [*.net *.split]
erhandsome has quit [*.net *.split]
stree has quit [*.net *.split]
minicom has quit [*.net *.split]
jkarni has quit [*.net *.split]
pbogdan has quit [*.net *.split]
fiddlerwoaroof has quit [*.net *.split]
robogoat has quit [*.net *.split]
heath has quit [*.net *.split]
andersk has quit [*.net *.split]
edwtjo has quit [*.net *.split]
buffet has quit [*.net *.split]
Luker has quit [*.net *.split]
z3r0b1t3[m] has quit [*.net *.split]
kriteus[m] has quit [*.net *.split]
vtest[m] has quit [*.net *.split]
TobiasKratzlitsc has quit [*.net *.split]
solomon[m]2 has quit [*.net *.split]
tristan[m] has quit [*.net *.split]
Elorm[m] has quit [*.net *.split]
nolan_d has quit [*.net *.split]
wip_ has quit [*.net *.split]
dasj19[m] has quit [*.net *.split]
Irenes[m] has quit [*.net *.split]
srxl1 has quit [*.net *.split]
tokudan[m] has quit [*.net *.split]
antpic01[m] has quit [*.net *.split]
chrismatheson has quit [*.net *.split]
zannzen[m] has quit [*.net *.split]
adam[m]3 has quit [*.net *.split]
gnxlxnxx[m] has quit [*.net *.split]
phittacus has quit [*.net *.split]
domenkozar[m] has quit [*.net *.split]
vaibhavsagar has quit [*.net *.split]
neumantm[m] has quit [*.net *.split]
kai_w has quit [*.net *.split]
Valodim[m] has quit [*.net *.split]
nilsirl[m] has quit [*.net *.split]
phirsch has quit [*.net *.split]
d4rkshad0w has quit [*.net *.split]
vegai1 has quit [*.net *.split]
DanP[m] has quit [*.net *.split]
dkellner[m] has quit [*.net *.split]
srid has quit [*.net *.split]
quiet_laika[m] has quit [*.net *.split]
willghatch[m] has quit [*.net *.split]
regivanx[m] has quit [*.net *.split]
qbit[m]1 has quit [*.net *.split]
icetan has quit [*.net *.split]
jschievink has quit [*.net *.split]
pistache has quit [*.net *.split]
Blessjah has quit [*.net *.split]
duckonomy has quit [*.net *.split]
qyliss has quit [*.net *.split]
jordansinn has quit [*.net *.split]
scoates has quit [*.net *.split]
cptMikky has quit [*.net *.split]
Ashy has quit [*.net *.split]
sphalerite has quit [*.net *.split]
swflint has quit [*.net *.split]
Dagger has quit [*.net *.split]
dottedmag has quit [*.net *.split]
flx has quit [*.net *.split]
mauli has quit [*.net *.split]
dredozubov has quit [*.net *.split]
thonkpod has quit [*.net *.split]
dramaturg has quit [*.net *.split]
ij has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
Cadey has quit [*.net *.split]
talyz has quit [*.net *.split]
sephii has quit [*.net *.split]
tristanC has quit [*.net *.split]
liori has quit [*.net *.split]
hspak has quit [*.net *.split]
stolyaroleh has quit [*.net *.split]
itorres has quit [*.net *.split]
tnias has quit [*.net *.split]
grw1 has quit [*.net *.split]
Uma has quit [*.net *.split]
mutantmell has quit [*.net *.split]
mightybyte has quit [*.net *.split]
inkOne_ has quit [*.net *.split]
cybertron has quit [*.net *.split]
georges_ has quit [*.net *.split]
tudorr has quit [*.net *.split]
lovesegfault has quit [*.net *.split]
joko has quit [*.net *.split]
NieDzejkob has quit [*.net *.split]
bukkitgerman8608 has quit [*.net *.split]
niksnut has quit [*.net *.split]
fre has quit [*.net *.split]
infinisil has quit [*.net *.split]
WilliButz has quit [*.net *.split]
wucke13 has quit [*.net *.split]
clever has quit [*.net *.split]
superbaloo has quit [*.net *.split]
bridge[evilred] has quit [*.net *.split]
jtobin has quit [*.net *.split]
lukegb has quit [*.net *.split]
makefu has quit [*.net *.split]
efriend has quit [*.net *.split]
duairc has quit [*.net *.split]
sigtrm has quit [*.net *.split]
acertain has quit [*.net *.split]
bodgix_ has quit [*.net *.split]
dweller has quit [*.net *.split]
`slikts has quit [*.net *.split]
ArdaXi has quit [*.net *.split]
aleph- has quit [*.net *.split]
das-g[m] has quit [*.net *.split]
d3c[m] has quit [*.net *.split]
AberDerBart[m]1 has quit [*.net *.split]
cryptix has quit [*.net *.split]
aterius1 has quit [*.net *.split]
matthewbauer1 has quit [*.net *.split]
axx[m]1 has quit [*.net *.split]
aleph9[m] has quit [*.net *.split]
hanemile[m] has quit [*.net *.split]
dammndot[m] has quit [*.net *.split]
ptotter[m] has quit [*.net *.split]
hsiktas[m] has quit [*.net *.split]
geekimerssive[m] has quit [*.net *.split]
gcoakes[m] has quit [*.net *.split]
Houtworm[m] has quit [*.net *.split]
user51[m] has quit [*.net *.split]
bohan[m] has quit [*.net *.split]
dwagenk[m] has quit [*.net *.split]
TheSirC[m] has quit [*.net *.split]
hsngrmpf[m] has quit [*.net *.split]
JJJollyjim has quit [*.net *.split]
dngray has quit [*.net *.split]
leonardp has quit [*.net *.split]
greghab[m] has quit [*.net *.split]
Minijackson[m]1 has quit [*.net *.split]
denbrahe[m] has quit [*.net *.split]
frobenius[m] has quit [*.net *.split]
worldofpeace has quit [*.net *.split]
infinisil-m has quit [*.net *.split]
vojta001[m] has quit [*.net *.split]
init_6 has quit [*.net *.split]
fresheyeball[m] has quit [*.net *.split]
ohhaimark[m] has quit [*.net *.split]
utdemir[m] has quit [*.net *.split]
wedens[m] has quit [*.net *.split]
tskc[m] has quit [*.net *.split]
puzzlewolf has quit [*.net *.split]
zimbatm has quit [*.net *.split]
obadz has quit [*.net *.split]
Mic92 has quit [*.net *.split]
ldlework has quit [*.net *.split]
bgupta has quit [*.net *.split]
sneakweb has quit [*.net *.split]
johanot has quit [*.net *.split]
techtangents has quit [*.net *.split]
ctp has quit [*.net *.split]
ocharles has quit [*.net *.split]
valwal_ has quit [*.net *.split]
MtotheM1 has quit [*.net *.split]
justan0theruser has quit [*.net *.split]
gentauro has quit [*.net *.split]
proofofkeags has quit [*.net *.split]
quinn has quit [*.net *.split]
erasmas has quit [*.net *.split]
cole-h has quit [*.net *.split]
arahael1 has quit [*.net *.split]
markus1189 has quit [*.net *.split]
tazjin has quit [*.net *.split]
palo has quit [*.net *.split]
OmnipotentEntity has quit [*.net *.split]
acarrico has quit [*.net *.split]
peel has quit [*.net *.split]
Cale has quit [*.net *.split]
realrokka_ has quit [*.net *.split]
barm has quit [*.net *.split]
amanjeev has quit [*.net *.split]
johnnyfive has quit [*.net *.split]
iMatejC has quit [*.net *.split]
benny has quit [*.net *.split]
packer has quit [*.net *.split]
cbarrett has quit [*.net *.split]
rizary has quit [*.net *.split]
kalbasit has quit [*.net *.split]
sdier has quit [*.net *.split]
dvim has quit [*.net *.split]
steveeJ has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
nick_h has quit [*.net *.split]
midchildan has quit [*.net *.split]
c00w has quit [*.net *.split]
mpickering has quit [*.net *.split]
marcinkuzminski has quit [*.net *.split]
dsal has quit [*.net *.split]
leotaku_ has quit [*.net *.split]
craftyguy has quit [*.net *.split]
kumikumi has quit [*.net *.split]
euank has quit [*.net *.split]
lohfu has quit [*.net *.split]
hplar has quit [*.net *.split]
ambroiseur has quit [*.net *.split]
rprosper- has quit [*.net *.split]
c4rc4s has quit [*.net *.split]
silver_hook_ has quit [*.net *.split]
at_mart_ has quit [*.net *.split]
travelion78 has quit [*.net *.split]
martyet-o has quit [*.net *.split]
drainful has quit [*.net *.split]
n1x_ has quit [*.net *.split]
commander has quit [*.net *.split]
catern has quit [*.net *.split]
jhuizy has quit [*.net *.split]
Heirlung has quit [*.net *.split]
lord| has quit [*.net *.split]
xensky_ has quit [*.net *.split]
coderobe has quit [*.net *.split]
Pwnna has quit [*.net *.split]
grumble has quit [*.net *.split]
captn3m0 has quit [*.net *.split]
chipb has quit [*.net *.split]
kaliumxyz has quit [*.net *.split]
adamtkh has quit [*.net *.split]
medvid_ has quit [*.net *.split]
meck has quit [*.net *.split]
ToxicFrog has quit [*.net *.split]
LambdaDuck has quit [*.net *.split]
bvdw has quit [*.net *.split]
devalot has quit [*.net *.split]
Siyo has quit [*.net *.split]
serokell_jonn has quit [*.net *.split]
eacameron has quit [*.net *.split]
d1rewolf has quit [*.net *.split]
victorbjelkholm_ has quit [*.net *.split]
heatm1s3r has quit [*.net *.split]
alunduil has quit [*.net *.split]
sethetter has quit [*.net *.split]
Tritlo has quit [*.net *.split]
eddyb[legacy] has quit [*.net *.split]
tnks_ has quit [*.net *.split]
pittma has quit [*.net *.split]
jfhbrook has quit [*.net *.split]
nand0p has quit [*.net *.split]
lstanley has quit [*.net *.split]
mniip has quit [*.net *.split]
plp has quit [*.net *.split]
CcxWrk has quit [*.net *.split]
MasseR has quit [*.net *.split]
c_wraith has quit [*.net *.split]
kahiru has quit [*.net *.split]
otulp has quit [*.net *.split]
pjan has quit [*.net *.split]
thommey has quit [*.net *.split]
turq has quit [*.net *.split]
rooke has quit [*.net *.split]
HedgeMage has quit [*.net *.split]
orbekk has quit [*.net *.split]
kcalvinalvin has quit [*.net *.split]
jperras has quit [*.net *.split]
mxco86 has quit [*.net *.split]
yourfate has quit [*.net *.split]
jeaye has quit [*.net *.split]
anders^ has quit [*.net *.split]
Gaelan has quit [*.net *.split]
gambpang has quit [*.net *.split]
ajp has quit [*.net *.split]
thomassgn has quit [*.net *.split]
enteee has quit [*.net *.split]
diekl has quit [*.net *.split]
Kritnich has quit [*.net *.split]
Sigma has quit [*.net *.split]
nahamu has quit [*.net *.split]
trfl has quit [*.net *.split]
lunik1 has quit [*.net *.split]
qz has quit [*.net *.split]
pjt_014 has quit [*.net *.split]
genevino has quit [*.net *.split]
Thra11 has quit [*.net *.split]
ddellacosta has quit [*.net *.split]
_rvl has quit [*.net *.split]
Scriptkiddi has quit [*.net *.split]
dongcarl has quit [*.net *.split]
mbrgm has quit [*.net *.split]
lassulus has quit [*.net *.split]
teto has quit [*.net *.split]
abathur has quit [*.net *.split]
EsperLily has quit [*.net *.split]
delroth has quit [*.net *.split]
plutes has quit [*.net *.split]
anderslundstedt has quit [*.net *.split]
aszlig has quit [*.net *.split]
Mrmaxmeier has quit [*.net *.split]
Izorkin has quit [*.net *.split]
Mateon1 has quit [*.net *.split]
orcus has quit [*.net *.split]
daGrevis has quit [*.net *.split]
konobi has quit [*.net *.split]
Negher has quit [*.net *.split]
elibrokeit has quit [*.net *.split]
never_released has quit [*.net *.split]
evils has quit [*.net *.split]
julm has quit [*.net *.split]
Acou_Bass has quit [*.net *.split]
ShaRose has quit [*.net *.split]
Emantor has quit [*.net *.split]
maxter has quit [*.net *.split]
Guest48129 has quit [*.net *.split]
CMCDragonkai has quit [*.net *.split]
jonge has quit [*.net *.split]
mla has quit [*.net *.split]
zfnmxt has quit [*.net *.split]
tpham has quit [*.net *.split]
unacceptable has quit [*.net *.split]
stoile has quit [*.net *.split]
ryantm has quit [*.net *.split]
page has quit [*.net *.split]
demize has quit [*.net *.split]
alexbakker has quit [*.net *.split]
wolke has quit [*.net *.split]
nixy37179 has quit [*.net *.split]
tghume has quit [*.net *.split]
tjg1 has quit [*.net *.split]
kriztw has quit [*.net *.split]
numkem has quit [*.net *.split]
LeshaInc1 has quit [*.net *.split]
ericnoan has quit [*.net *.split]
szicari has quit [*.net *.split]
Yaniel has quit [*.net *.split]
kleisli has quit [*.net *.split]
nckx has quit [*.net *.split]
awaz has quit [*.net *.split]
m0rphism has quit [*.net *.split]
bdju has quit [*.net *.split]
azdle has quit [*.net *.split]
zebrag has quit [*.net *.split]
iceypoi has quit [*.net *.split]
Bunogi has quit [*.net *.split]
xwvvvvwx has quit [*.net *.split]
omnigoat has quit [*.net *.split]
TheNumb has quit [*.net *.split]
NekomimiScience has quit [*.net *.split]
wildsebastian has quit [*.net *.split]
Havvy has quit [*.net *.split]
tno has quit [*.net *.split]
amfl has quit [*.net *.split]
kmein has quit [*.net *.split]
nlofaro_ has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
eyenx|m has quit [*.net *.split]
vesper11 has quit [*.net *.split]
hke has quit [*.net *.split]
m1cr0m4n has quit [*.net *.split]
xeu has quit [*.net *.split]
marcusr has quit [*.net *.split]
cmk_zzz has quit [*.net *.split]
Athas has quit [*.net *.split]
agb has quit [*.net *.split]
monokrome has quit [*.net *.split]
SOO7 has quit [*.net *.split]
wspthr has quit [*.net *.split]
simukis_ has quit [*.net *.split]
avn has quit [*.net *.split]
sveitser2 has quit [*.net *.split]
dkibi has quit [*.net *.split]
dbe has quit [*.net *.split]
signaryk has quit [*.net *.split]
gordon1 has quit [*.net *.split]
edef has quit [*.net *.split]
laerling has quit [*.net *.split]
neobit has quit [*.net *.split]
raoul has quit [*.net *.split]
rixed_ has quit [*.net *.split]
sabry97[m]1 has quit [*.net *.split]
_ris has quit [*.net *.split]
sksneheheh[m] has quit [*.net *.split]
idontgetoutmuch[ has quit [*.net *.split]
dsx has quit [*.net *.split]
epic_guy[m] has quit [*.net *.split]
mica[m]1 has quit [*.net *.split]
nikivi has quit [*.net *.split]
Vykook[m] has quit [*.net *.split]
Hedgework has quit [*.net *.split]
toraritte1 has quit [*.net *.split]
MinceR has quit [*.net *.split]
luelista has quit [*.net *.split]
ZerataX has quit [*.net *.split]
unclechu has quit [*.net *.split]
epitron[m] has quit [*.net *.split]
piotrszegda[m] has quit [*.net *.split]
rschulman has quit [*.net *.split]
Ox4A6F has quit [*.net *.split]
emily has quit [*.net *.split]
hiroshi[m] has quit [*.net *.split]
regnat has quit [*.net *.split]
rnhmjoj has quit [*.net *.split]
spinlock[m] has quit [*.net *.split]
aquarial has quit [*.net *.split]
la-s has quit [*.net *.split]
bbigras has quit [*.net *.split]
edrex has quit [*.net *.split]
drozdziak1[m] has quit [*.net *.split]
jwaksbaum[m] has quit [*.net *.split]
chmod222[m] has quit [*.net *.split]
mlatus[m] has quit [*.net *.split]
bricewge1 has quit [*.net *.split]
timokau[m] has quit [*.net *.split]
psiperator[m] has quit [*.net *.split]
exel[m] has quit [*.net *.split]
apple_at_cha[m] has quit [*.net *.split]
Stphan[m] has quit [*.net *.split]
rycee has quit [*.net *.split]
jordandoyle has quit [*.net *.split]
randnoise[m] has quit [*.net *.split]
sjanes[m]1 has quit [*.net *.split]
echel0n[m] has quit [*.net *.split]
comrandroxaos[m] has quit [*.net *.split]
sonerhalis[m] has quit [*.net *.split]
michaelpj has quit [*.net *.split]
askatasun[m] has quit [*.net *.split]
haaksmash[m] has quit [*.net *.split]
jonreeve[m] has quit [*.net *.split]
maralorn has quit [*.net *.split]
d10n-work has quit [*.net *.split]
justache has quit [*.net *.split]
diamondman has quit [*.net *.split]
akaWolf has quit [*.net *.split]
raboof has quit [*.net *.split]
hodapp has quit [*.net *.split]
Reiser has quit [*.net *.split]
uwap has quit [*.net *.split]
joedevivo has quit [*.net *.split]
ghuntley has quit [*.net *.split]
pointfree has quit [*.net *.split]
CitadelCore has quit [*.net *.split]
xacktm has quit [*.net *.split]
yorick has quit [*.net *.split]
piegames has quit [*.net *.split]
megfault has quit [*.net *.split]
njha has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
misuzu has quit [*.net *.split]
U-armin has quit [*.net *.split]
penguwin has quit [*.net *.split]
Miyu-saki has quit [*.net *.split]
Guest44765 has quit [*.net *.split]
adisbladis has quit [*.net *.split]
ivegotasthma has quit [*.net *.split]
seku has quit [*.net *.split]
codygman has quit [*.net *.split]
drakonis has quit [*.net *.split]
growpotkin has quit [*.net *.split]
jtcs has quit [*.net *.split]
evanjs has quit [*.net *.split]
wavirc22 has quit [*.net *.split]
mjrosenb has quit [*.net *.split]
wolfshappen has quit [*.net *.split]
cross has quit [*.net *.split]
detran has quit [*.net *.split]
wrunt has quit [*.net *.split]
callahad87074 has quit [*.net *.split]
dsg has quit [*.net *.split]
garbas has quit [*.net *.split]
locallycompact has quit [*.net *.split]
trulsa has quit [*.net *.split]
tobiasBora2 has quit [*.net *.split]
cransom has quit [*.net *.split]
Nazral has quit [*.net *.split]
lvmond__ has quit [*.net *.split]
mkaito- has quit [*.net *.split]
jeschli1 has quit [*.net *.split]
barrucadu has quit [*.net *.split]
benedikt93_ has quit [*.net *.split]
ottidmes_ has quit [*.net *.split]
_cyril__ has quit [*.net *.split]
energizer has quit [*.net *.split]
tetdim_ has quit [*.net *.split]
epta has quit [*.net *.split]
puffnfresh has quit [*.net *.split]
seanparsons has quit [*.net *.split]
kgz has quit [*.net *.split]
mac10688 has quit [*.net *.split]
iwq has quit [*.net *.split]
rembo10 has quit [*.net *.split]
chrisaw has quit [*.net *.split]
VulNix has quit [*.net *.split]
xantoz has quit [*.net *.split]
kharon has quit [*.net *.split]
Raito_Bezarius has quit [*.net *.split]
doublej472 has quit [*.net *.split]
shlevy has quit [*.net *.split]
fionera has quit [*.net *.split]
luigy has quit [*.net *.split]
vk3wtf has quit [*.net *.split]
helpusobi has quit [*.net *.split]
__red__ has quit [*.net *.split]
wrl has quit [*.net *.split]
himmAllRight has quit [*.net *.split]
Baughn has quit [*.net *.split]
fps has quit [*.net *.split]
ekleog has quit [*.net *.split]
hl has quit [*.net *.split]
mekeor has quit [*.net *.split]
cyraxjoe has quit [*.net *.split]
rogue_koder has quit [*.net *.split]
Avaq_ has quit [*.net *.split]
tilcreator has quit [*.net *.split]
AmandaC_ has quit [*.net *.split]
Rusty1 has quit [*.net *.split]
eta has quit [*.net *.split]
andymandias has quit [*.net *.split]
Jackneill has quit [*.net *.split]
mlen has quit [*.net *.split]
is_null has quit [*.net *.split]
_deepfire has quit [*.net *.split]
claudiii_ has quit [*.net *.split]
emilsp has quit [*.net *.split]
urkk has quit [*.net *.split]
kayg04 has quit [*.net *.split]
emacsomancer has quit [*.net *.split]
kini has quit [*.net *.split]
mg has quit [*.net *.split]
srhb has quit [*.net *.split]
elvishjerricco has quit [*.net *.split]
mitchellh has quit [*.net *.split]
feepo has quit [*.net *.split]
terrorjack has quit [*.net *.split]
teozkr_ has quit [*.net *.split]
sam_w has quit [*.net *.split]
gleber has quit [*.net *.split]
r0bby has quit [*.net *.split]
dgpratt has quit [*.net *.split]
hamishmack has quit [*.net *.split]
lightandlight has quit [*.net *.split]
sgraf has quit [*.net *.split]
chessai has quit [*.net *.split]
buggymcbugfix has quit [*.net *.split]
johs has quit [*.net *.split]
jackdk has quit [*.net *.split]
mudri has quit [*.net *.split]
andromeda-galaxy has quit [*.net *.split]
dozn has quit [*.net *.split]
cptchaos83 has quit [*.net *.split]
develCuy has quit [*.net *.split]
dfordvm has quit [*.net *.split]
ornxka has quit [*.net *.split]
edcragg has quit [*.net *.split]
AMD1212_ has quit [*.net *.split]
judson has quit [*.net *.split]
Freneticks has quit [*.net *.split]
davidcl has quit [*.net *.split]
AstroBadger has quit [*.net *.split]
aminechikhaoui has quit [*.net *.split]
Swant has quit [*.net *.split]
queiw has quit [*.net *.split]
multun has quit [*.net *.split]
stew has quit [*.net *.split]
boegel has quit [*.net *.split]
mitsuhiko has quit [*.net *.split]
phI||Ip has quit [*.net *.split]
tarruda has quit [*.net *.split]
dminuoso has quit [*.net *.split]
exarkun has quit [*.net *.split]
kwork has quit [*.net *.split]
codezero has quit [*.net *.split]
nil has quit [*.net *.split]
e has quit [*.net *.split]
kreyren has quit [*.net *.split]
xelxebar has quit [*.net *.split]
nixbitcoin has quit [*.net *.split]
andreas303 has quit [*.net *.split]
jb55 has quit [*.net *.split]
oida has quit [*.net *.split]
klntsky has quit [*.net *.split]
ninjin has quit [*.net *.split]
est31 has quit [*.net *.split]
cantstanya has quit [*.net *.split]
phreedom has quit [*.net *.split]
rot13_ has quit [*.net *.split]
dxtr has quit [*.net *.split]
reanimus has quit [*.net *.split]
user_0x58 has quit [*.net *.split]
parsnip has quit [*.net *.split]
janneke has quit [*.net *.split]
jlv[m]1 has quit [*.net *.split]
etrigan63[m] has quit [*.net *.split]
ivank[m] has quit [*.net *.split]
xavierm02 has quit [*.net *.split]
nocent has quit [*.net *.split]
cyberwolf[m] has quit [*.net *.split]
mudrii[m] has quit [*.net *.split]
zarathustra_[m] has quit [*.net *.split]
faya01[m] has quit [*.net *.split]
jluttine[m] has quit [*.net *.split]
yutyo[m] has quit [*.net *.split]
ksevelyar[m] has quit [*.net *.split]
mdlayher has quit [*.net *.split]
danielrf[m] has quit [*.net *.split]
JameySharp[m] has quit [*.net *.split]
develobster[m] has quit [*.net *.split]
sparogy has quit [*.net *.split]
mindtree[m]1 has quit [*.net *.split]
acys[m]1 has quit [*.net *.split]
dpc has quit [*.net *.split]
bqy has quit [*.net *.split]
colemickens has quit [*.net *.split]
Caleb[m]1 has quit [*.net *.split]
li_matrix has quit [*.net *.split]
kraem[m] has quit [*.net *.split]
cab404[m] has quit [*.net *.split]
faewenys[m] has quit [*.net *.split]
Wouter[m] has quit [*.net *.split]
fgaz has quit [*.net *.split]
alexfmpe has quit [*.net *.split]
pitch has quit [*.net *.split]
atopuzov[m] has quit [*.net *.split]
q3ax[m] has quit [*.net *.split]
aanderse has quit [*.net *.split]
hr[m] has quit [*.net *.split]
nisstyre has quit [*.net *.split]
englishm has quit [*.net *.split]
typetetris has quit [*.net *.split]
gausby has quit [*.net *.split]
sauyon has quit [*.net *.split]
drvirgilio has quit [*.net *.split]
etu has quit [*.net *.split]
Forkk has quit [*.net *.split]
nikola2 has quit [*.net *.split]
mingc has quit [*.net *.split]
fpletz has quit [*.net *.split]
flokli has quit [*.net *.split]
hellrazor has quit [*.net *.split]
cjay has quit [*.net *.split]
ilmu has quit [*.net *.split]
bwe has quit [*.net *.split]
benley has quit [*.net *.split]
hauleth has quit [*.net *.split]
copy_ has quit [*.net *.split]
smatting has quit [*.net *.split]
sbetrium has quit [*.net *.split]
otti0815 has quit [*.net *.split]
Neo-- has quit [*.net *.split]
ok2` has quit [*.net *.split]
eyenx has quit [*.net *.split]
stiell has quit [*.net *.split]
vuko has quit [*.net *.split]
m4ts has quit [*.net *.split]
runciter has quit [*.net *.split]
Philonous has quit [*.net *.split]
pareidolia has quit [*.net *.split]
lewo has quit [*.net *.split]
noogie has quit [*.net *.split]
nixy has quit [*.net *.split]
cyphase has quit [*.net *.split]
ent has quit [*.net *.split]
tpanum has quit [*.net *.split]
litschi has quit [*.net *.split]
lejonet has quit [*.net *.split]
MarcWeber has quit [*.net *.split]
electrocat has quit [*.net *.split]
Ankhers has quit [*.net *.split]
zaeph has quit [*.net *.split]
switchy has quit [*.net *.split]
octe has quit [*.net *.split]
Gohla has quit [*.net *.split]
kapil_ has quit [*.net *.split]
betaboon has quit [*.net *.split]
puck has quit [*.net *.split]
stigo has quit [*.net *.split]
dustinm has quit [*.net *.split]
kraem has quit [*.net *.split]
Serus has quit [*.net *.split]
woffs has quit [*.net *.split]
pie_ has quit [*.net *.split]
fyuuri has quit [*.net *.split]
oleks has quit [*.net *.split]
nbp has quit [*.net *.split]
dfgg has quit [*.net *.split]
Unode has quit [*.net *.split]
deni has quit [*.net *.split]
djanatyn has quit [*.net *.split]
nbathum has quit [*.net *.split]
AluisioASG has quit [*.net *.split]
betawaffle has quit [*.net *.split]
bqv has quit [*.net *.split]
lukego has quit [*.net *.split]
evck_ has quit [*.net *.split]
angerman has quit [*.net *.split]
jmeredith has quit [*.net *.split]
newhoggy has quit [*.net *.split]
manveru has quit [*.net *.split]
ynotperez has quit [*.net *.split]
emilazy has quit [*.net *.split]
pbb has quit [*.net *.split]
marsh has quit [*.net *.split]
mystfox has quit [*.net *.split]
andi- has quit [*.net *.split]
Guest23015 has quit [*.net *.split]
jlpeters has quit [*.net *.split]
higherorder has quit [*.net *.split]
georgyo has quit [*.net *.split]
pkral has quit [*.net *.split]
adamse has quit [*.net *.split]
christiaanb has quit [*.net *.split]
blackriversoftwa has quit [*.net *.split]
prusnak has quit [*.net *.split]
cvlad- has quit [*.net *.split]
joshmeredith has quit [*.net *.split]
etrepum has quit [*.net *.split]
vdemeester has quit [*.net *.split]
alanz_ has quit [*.net *.split]
s1341 has quit [*.net *.split]
glittershark has quit [*.net *.split]
jasom has quit [*.net *.split]
ehmry has quit [*.net *.split]
hexa- has quit [*.net *.split]
cstrahan has quit [*.net *.split]
matthiaskrgr has quit [*.net *.split]
skomorokh has quit [*.net *.split]
Woutifier has quit [*.net *.split]
Taneb has quit [*.net *.split]
jlv[m] has quit [*.net *.split]
tdeo has quit [*.net *.split]
davidtwco has quit [*.net *.split]
munksgaard has quit [*.net *.split]
f0x2 has quit [*.net *.split]
marcinja has quit [*.net *.split]
skorpy has quit [*.net *.split]
bgamari has quit [*.net *.split]
cizra has quit [*.net *.split]
aristid has quit [*.net *.split]
HeN has quit [*.net *.split]
ajmcmiddlin has quit [*.net *.split]
taylskid has quit [*.net *.split]
amosbird has quit [*.net *.split]
kkd has quit [*.net *.split]
endocrimes has quit [*.net *.split]
f0x has quit [*.net *.split]
liff has quit [*.net *.split]
heijligen has quit [*.net *.split]
cap has quit [*.net *.split]
jjakob has quit [*.net *.split]
tom39291 has quit [*.net *.split]
risson has quit [*.net *.split]
spacekookie has quit [*.net *.split]
lux1 has quit [*.net *.split]
komasa has quit [*.net *.split]
Adluc has quit [*.net *.split]
GlennS has quit [*.net *.split]
PyroLagus has quit [*.net *.split]
hexo has quit [*.net *.split]
gchristensen has quit [*.net *.split]
njd has quit [*.net *.split]
myme has quit [*.net *.split]
samueldr has quit [*.net *.split]
step21 has quit [*.net *.split]
noudle has quit [*.net *.split]
eoli3n has quit [*.net *.split]
sevanspowell has quit [*.net *.split]
bennofs has quit [*.net *.split]
miah has quit [*.net *.split]
inf has quit [*.net *.split]
drewc has quit [*.net *.split]
aw has quit [*.net *.split]
mrpi has quit [*.net *.split]
rail has quit [*.net *.split]
lorimer has quit [*.net *.split]
jD91mZM2 has quit [*.net *.split]
Maxdaman1us has quit [*.net *.split]
troydm has quit [*.net *.split]
tokudan has quit [*.net *.split]
mzan has quit [*.net *.split]
tobiasBora has quit [*.net *.split]
kozowu has quit [*.net *.split]
dmj` has quit [*.net *.split]
rodarmor has quit [*.net *.split]
parseval has quit [*.net *.split]
dani- has quit [*.net *.split]
carter has quit [*.net *.split]
mcint has quit [*.net *.split]
Czen1 has quit [*.net *.split]
armin has quit [*.net *.split]
pinkieval has quit [*.net *.split]
duck_ has quit [*.net *.split]
Streetwalrus has quit [*.net *.split]
cyris212 has quit [*.net *.split]
CRTified has quit [*.net *.split]
averell has quit [*.net *.split]
meatcar has quit [*.net *.split]
gueorgui has quit [*.net *.split]
aither has quit [*.net *.split]
leothrix has quit [*.net *.split]
primeos has quit [*.net *.split]
kaivai has quit [*.net *.split]
chin-tastic has quit [*.net *.split]
nore has quit [*.net *.split]
rotaerk has quit [*.net *.split]
FireFly has quit [*.net *.split]
davean has quit [*.net *.split]
maurer has quit [*.net *.split]
voidcontext has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
infty has quit [*.net *.split]
mk_modrzew has quit [*.net *.split]
eri has quit [*.net *.split]
mgdm has quit [*.net *.split]
eon` has quit [*.net *.split]
rkallos has quit [*.net *.split]
jboy has quit [*.net *.split]
danderson has quit [*.net *.split]
Nafai has quit [*.net *.split]
dev3 has quit [*.net *.split]
dutchie has quit [*.net *.split]
djahandarie has quit [*.net *.split]
ikwildrpepper has quit [*.net *.split]
petar has quit [*.net *.split]
srk has quit [*.net *.split]
moredhel has quit [*.net *.split]
hyperfekt has quit [*.net *.split]
sarcasticadmin has quit [*.net *.split]
tv has quit [*.net *.split]
cr4y1 has quit [*.net *.split]
spacefrogg has quit [*.net *.split]
fling has quit [*.net *.split]
ericsagnes has quit [*.net *.split]
turlando has quit [*.net *.split]
kmplsv has quit [*.net *.split]
notgne2 has quit [*.net *.split]
xqsl has quit [*.net *.split]
suchar has quit [*.net *.split]
sshow has quit [*.net *.split]
statusfailed has quit [*.net *.split]
marek has quit [*.net *.split]
eeva has quit [*.net *.split]
craige_ has quit [*.net *.split]
pemeunie1 has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
evax has quit [*.net *.split]
dominikh has quit [*.net *.split]
arianvp has quit [*.net *.split]
xensky has quit [*.net *.split]
statusbot has quit [*.net *.split]
iron_houzi has quit [*.net *.split]
ar has quit [*.net *.split]
bsima has quit [*.net *.split]
sjourdois has quit [*.net *.split]
shiver has quit [*.net *.split]
shapr has quit [*.net *.split]
dirkx has quit [*.net *.split]
Enzime has quit [*.net *.split]
kandinski has quit [*.net *.split]
adamCS has quit [*.net *.split]
lally has quit [Ping timeout: 253 seconds]
dukedave has quit [Ping timeout: 253 seconds]
CustosLimen has quit [Ping timeout: 260 seconds]
noonien has quit [Ping timeout: 260 seconds]
bitonic has quit [Ping timeout: 260 seconds]
easamuilov[m] has quit [Ping timeout: 260 seconds]
rgamma[m] has quit [Ping timeout: 260 seconds]
hoek has quit [Ping timeout: 260 seconds]
metheflea has quit [Ping timeout: 260 seconds]
grin[m] has quit [Ping timeout: 260 seconds]
dgpratt has joined #nixos
LeshaInc1 has joined #nixos
wolke has joined #nixos
demize has joined #nixos
alexbakker has joined #nixos
nixy37179 has joined #nixos
tjg1 has joined #nixos
kriztw has joined #nixos
numkem has joined #nixos
tghume has joined #nixos
page has joined #nixos
zfnmxt has joined #nixos
jonge has joined #nixos
mla has joined #nixos
tpham has joined #nixos
CMCDragonkai has joined #nixos
unacceptable has joined #nixos
Guest48129 has joined #nixos
ryantm has joined #nixos
Emantor has joined #nixos
maxter has joined #nixos
ShaRose has joined #nixos
mbrgm has joined #nixos
aszlig has joined #nixos
evils has joined #nixos
stoile has joined #nixos
Mrmaxmeier has joined #nixos
Philipp[m]21 has joined #nixos
cmcaine[m] has joined #nixos
Mateon1 has joined #nixos
interro[m] has joined #nixos
nikola[m]2 has joined #nixos
ddellacosta has joined #nixos
atgo[m] has joined #nixos
dvim has joined #nixos
thefloweringash has joined #nixos
Negher has joined #nixos
keithy[m] has joined #nixos
raboof has joined #nixos
lunik1 has joined #nixos
kraem has joined #nixos
nbp has joined #nixos
pjt_014 has joined #nixos
Thra11 has joined #nixos
marius851000[m] has joined #nixos
dukedave has joined #nixos
anderslundstedt has joined #nixos
julm has joined #nixos
evanjs[m] has joined #nixos
demoulin[m] has joined #nixos
abathur has joined #nixos
victorbjelkholm_ has joined #nixos
tarzeau has joined #nixos
never_released has joined #nixos
Izorkin has joined #nixos
nbathum has joined #nixos
trfl has joined #nixos
xfix has joined #nixos
quidome[m] has joined #nixos
Foooooo[m] has joined #nixos
delroth has joined #nixos
boogiewoogie[m] has joined #nixos
NekomimiScience has joined #nixos
zgrep has joined #nixos
Acou_Bass has joined #nixos
_rvl has joined #nixos
orcus has joined #nixos
copy_ has joined #nixos
sethetter has joined #nixos
daGrevis has joined #nixos
b42 has joined #nixos
regivanx[m] has joined #nixos
djanatyn has joined #nixos
nek0 has joined #nixos
captn3m0 has joined #nixos
cmk_zzz has joined #nixos
swflint has joined #nixos
dustinm has joined #nixos
qbit[m]1 has joined #nixos
ongy[m] has joined #nixos
helpusobi has joined #nixos
denbrahe[m] has joined #nixos
lejonet has joined #nixos
lord| has joined #nixos
plutes has joined #nixos
sphalerite has joined #nixos
jeaye has joined #nixos
agb has joined #nixos
Houtworm[m] has joined #nixos
`slikts has joined #nixos
sneakweb has joined #nixos
EsperLily has joined #nixos
talyz has joined #nixos
drdee has joined #nixos
Unode has joined #nixos
tno has joined #nixos
leons has joined #nixos
abbe has joined #nixos
laerling has joined #nixos
adamtkh has joined #nixos
fionera has joined #nixos
Nazral has joined #nixos
cross has joined #nixos
tetdim_ has joined #nixos
trulsa has joined #nixos
gchristensen has joined #nixos
f0x has joined #nixos
codygman has joined #nixos
cvlad- has joined #nixos
vdemeester has joined #nixos
jmeredith has joined #nixos
andi- has joined #nixos
lohfu has joined #nixos
travelion78 has joined #nixos
arianvp has joined #nixos
ambroiseur has joined #nixos
MinceR has joined #nixos
xensky has joined #nixos
sigtrm has joined #nixos
jonreeve[m] has joined #nixos
Cale has joined #nixos
georgyo has joined #nixos
mightybyte has joined #nixos
Luker has joined #nixos
andersk has joined #nixos
tnias has joined #nixos
at_mart_ has joined #nixos
WilliButz has joined #nixos
rot13_ has joined #nixos
mudrii[m] has joined #nixos
hauleth has joined #nixos
typetetris has joined #nixos
pitch has joined #nixos
mdlayher has joined #nixos
nikola2 has joined #nixos
nisstyre has joined #nixos
Wouter[m] has joined #nixos
TheNumb has joined #nixos
mla has quit [Remote host closed the connection]
nlofaro_ has joined #nixos
lally has joined #nixos
sgraf has joined #nixos
aminechikhaoui has joined #nixos
Avaq_ has joined #nixos
nil has joined #nixos
kayg04 has joined #nixos
dozn has joined #nixos
eta has joined #nixos
hamishmack has joined #nixos
victorbjelkholm_ has joined #nixos
mudri has joined #nixos
Jackneill has joined #nixos
develCuy has joined #nixos
dsal has joined #nixos
judson has joined #nixos
raboof has joined #nixos
_deepfire has joined #nixos
edcragg has joined #nixos
tilcreator has joined #nixos
teozkr_ has joined #nixos
claudiii_ has joined #nixos
dminuoso has joined #nixos
mitchellh has joined #nixos
gleber has joined #nixos
dukedave has joined #nixos
Swant has joined #nixos
exarkun has joined #nixos
mitsuhiko has joined #nixos
stew has joined #nixos
victorbjelkholm_ has quit [Changing host]
Rusty1 has joined #nixos
AstroBadger has joined #nixos
kini has joined #nixos
emilsp has joined #nixos
urkk has joined #nixos
mg has joined #nixos
davidcl has joined #nixos
andymandias has joined #nixos
emacsomancer has joined #nixos
boegel has joined #nixos
kwork has joined #nixos
cptchaos83 has joined #nixos
tarruda has joined #nixos
queiw has joined #nixos
Freneticks has joined #nixos
AMD1212_ has joined #nixos
AmandaC_ has joined #nixos
sam_w has joined #nixos
raboof has quit [Changing host]
dfordvm has joined #nixos
dukedave has quit [Changing host]
codezero has joined #nixos
rogue_koder has joined #nixos
chessai has joined #nixos
is_null has joined #nixos
multun has joined #nixos
mlen has joined #nixos
srhb has joined #nixos
jackdk has joined #nixos
andromeda-galaxy has joined #nixos
mpickering has joined #nixos
phI||Ip has joined #nixos
lightandlight has joined #nixos
mekeor has joined #nixos
klntsky has joined #nixos
ninjin has joined #nixos
oida has joined #nixos
phreedom has joined #nixos
kreyren has joined #nixos
est31 has joined #nixos
jb55 has joined #nixos
nixbitcoin has joined #nixos
xelxebar has joined #nixos
cantstanya has joined #nixos
eon` has joined #nixos
ikwildrpepper has joined #nixos
{^_^} has quit [Remote host closed the connection]
edef has joined #nixos
mla has joined #nixos
edef has joined #nixos
edef has quit [Changing host]
nix-build has joined #nixos
johs has joined #nixos
feepo has joined #nixos
kalbasit has joined #nixos
dsal is now known as Guest11076
marius851000[m] has quit [Ping timeout: 240 seconds]
Foooooo[m] has quit [Ping timeout: 240 seconds]
atgo[m] has quit [Ping timeout: 240 seconds]
cmcaine[m] has quit [Ping timeout: 240 seconds]
interro[m] has quit [Ping timeout: 240 seconds]
thefloweringash has quit [Ping timeout: 240 seconds]
ongy[m] has quit [Ping timeout: 240 seconds]
keithy[m] has quit [Ping timeout: 240 seconds]
boogiewoogie[m] has quit [Ping timeout: 240 seconds]
kalbasit has joined #nixos
kalbasit has quit [Changing host]
feepo has joined #nixos
feepo has quit [Changing host]
johs has joined #nixos
johs has quit [Changing host]
pinkieval has joined #nixos
kalbasit has quit [Changing host]
kalbasit has joined #nixos
balsoft has quit [Ping timeout: 260 seconds]
diamondman has joined #nixos
sethetter has quit [Ping timeout: 256 seconds]
AluisioASG has joined #nixos
CustosLimen has joined #nixos
mudri has quit [Ping timeout: 251 seconds]
mitsuhiko has quit [Ping timeout: 251 seconds]
SOO7 has joined #nixos
eddyb[legacy] has joined #nixos
fnords has quit [Ping timeout: 245 seconds]
pingveno has quit [Ping timeout: 245 seconds]
coot has quit [Ping timeout: 245 seconds]
pasukon has quit [Ping timeout: 245 seconds]
NemesisD_ has quit [Ping timeout: 245 seconds]
nh2 has quit [Ping timeout: 245 seconds]
hamishmack has quit [Ping timeout: 240 seconds]
gleber has quit [Ping timeout: 240 seconds]
chessai has quit [Ping timeout: 240 seconds]
lightandlight has quit [Ping timeout: 240 seconds]
Fulgen has joined #nixos
ky0ko has joined #nixos
yrashk has quit [Ping timeout: 260 seconds]
aria has quit [Ping timeout: 260 seconds]
davidtwco has joined #nixos
parsnip has joined #nixos
Guest11076 has quit [Ping timeout: 240 seconds]
jfhbrook has joined #nixos
kenji has joined #nixos
gnxlxnxx[m] has joined #nixos
gnxlxnxx[m] has joined #nixos
bitonic has joined #nixos
s1341 has joined #nixos
jwaksbaum[m] has joined #nixos
hamishmack has joined #nixos
mitsuhiko has joined #nixos
betawaffle has joined #nixos
zot has quit [Ping timeout: 260 seconds]
mankyKitty has quit [Ping timeout: 260 seconds]
lord| has quit [Ping timeout: 256 seconds]
ocharles has joined #nixos
<nix-build> [nixpkgs] @dotlambda merged pull request #90327 → protobufc: 1.3.1 -> 1.3.3 → https://git.io/JfQPx
<nix-build> [nixpkgs] @dotlambda pushed to master « protobufc: 1.3.1 -> 1.3.3 (#90327) »: https://git.io/Jf59c
johanot has joined #nixos
Yakulu[m]1 has joined #nixos
dsal has joined #nixos
aria has joined #nixos
sethetter has joined #nixos
drewc has joined #nixos
bennofs has joined #nixos
sevanspowell has joined #nixos
lorimer has joined #nixos
Maxdaman1us has joined #nixos
rodarmor has joined #nixos
noudle has joined #nixos
dutchie has joined #nixos
dmj` has joined #nixos
tokudan has joined #nixos
mgdm has joined #nixos
eoli3n has joined #nixos
kozowu has joined #nixos
troydm has joined #nixos
mzan has joined #nixos
rail has joined #nixos
mrpi has joined #nixos
tobiasBora has joined #nixos
inf has joined #nixos
aw has joined #nixos
jD91mZM2 has joined #nixos
mcint has joined #nixos
parseval has joined #nixos
carter has joined #nixos
dani- has joined #nixos
17WAA85G0 has joined #nixos
nore has joined #nixos
Streetwalrus has joined #nixos
rkallos has joined #nixos
CRTified has joined #nixos
primeos has joined #nixos
averell has joined #nixos
gueorgui has joined #nixos
chin-tastic has joined #nixos
leothrix has joined #nixos
aither has joined #nixos
kaivai has joined #nixos
davean has joined #nixos
Czen1 has joined #nixos
armin has joined #nixos
cyris212 has joined #nixos
maurer has joined #nixos
Aleksejs has joined #nixos
mk_modrzew has joined #nixos
Nafai has joined #nixos
infty has joined #nixos
FireFly has joined #nixos
dev3 has joined #nixos
duck_ has joined #nixos
rotaerk has joined #nixos
eri has joined #nixos
jboy has joined #nixos
djahandarie has joined #nixos
moredhel has joined #nixos
voidcontext has joined #nixos
petar has joined #nixos
srk has joined #nixos
hyperfekt has joined #nixos
rodarmor has quit [Ping timeout: 310 seconds]
dmj` has quit [Ping timeout: 310 seconds]
noudle has quit []
jlpeters has joined #nixos
zot has joined #nixos
glittershark has joined #nixos
infinisil-m has joined #nixos
greghab[m] has joined #nixos
Minijackson[m]1 has joined #nixos
Minijackson[m]1 has joined #nixos
Minijackson[m]1 has quit [Changing host]
gleber has joined #nixos
teehemkay has quit [Ping timeout: 260 seconds]
zertox has quit [Ping timeout: 260 seconds]
solomon[m]2 has joined #nixos
leonardp has joined #nixos
aleph9[m] has joined #nixos
TobiasKratzlitsc has joined #nixos
AberDerBart[m]1 has joined #nixos
init_6 has joined #nixos
elvishjerricco has joined #nixos
das-g[m] has joined #nixos
frobenius[m] has joined #nixos
tskc[m] has joined #nixos
dwagenk[m] has joined #nixos
puzzlewolf has joined #nixos
cryptix has joined #nixos
bohan[m] has joined #nixos
ohhaimark[m] has joined #nixos
TheSirC[m] has joined #nixos
worldofpeace has joined #nixos
tnks_ has joined #nixos
angerman has joined #nixos
Irenes[m] has joined #nixos
nolan_d has joined #nixos
d4rkshad0w has joined #nixos
mankyKitty has joined #nixos
Guest23015 has joined #nixos
buggymcbugfix has joined #nixos
d3c[m] has joined #nixos
srxl1 has joined #nixos
omnigoat has joined #nixos
chessai has joined #nixos
lukego has joined #nixos
r0bby has joined #nixos
yrashk has joined #nixos
newhoggy has joined #nixos
neumantm[m] has joined #nixos
lightandlight has joined #nixos
miah has joined #nixos
pingveno has joined #nixos
haaksmash[m] has joined #nixos
danderson has joined #nixos
kitemikaze_ has joined #nixos
mudri has joined #nixos
Elorm[m] has joined #nixos
andreas303 has joined #nixos
srid has joined #nixos
quiet_laika[m] has joined #nixos
teehemkay has joined #nixos
bgupta has joined #nixos
higherorder has joined #nixos
hanemile[m] has joined #nixos
zertox has joined #nixos
carter has quit [Ping timeout: 262 seconds]
steveeJ has joined #nixos
pasukon has joined #nixos
NemesisD_ has joined #nixos
tokudan[m] has joined #nixos
epitron[m] has joined #nixos
piotrszegda[m] has joined #nixos
noonien has joined #nixos
sabry97[m]1 has joined #nixos
tazjin has joined #nixos
bbigras has joined #nixos
eacameron has joined #nixos
alunduil has joined #nixos
exel[m] has joined #nixos
fnords has joined #nixos
zannzen[m] has joined #nixos
sbetrium has joined #nixos
coot has joined #nixos
HeN has joined #nixos
utdemir[m] has joined #nixos
timokau[m] has joined #nixos
nh2 has joined #nixos
cbarrett has joined #nixos
cyberwolf[m] has joined #nixos
nocent has joined #nixos
carter has joined #nixos
lord| has joined #nixos
phittacus has joined #nixos
tristan[m] has joined #nixos
adam[m]3 has joined #nixos
chrismatheson has joined #nixos
dkellner[m] has joined #nixos
willghatch[m] has joined #nixos
phirsch has joined #nixos
DanP[m] has joined #nixos
terrorjack has joined #nixos
Dandellion has joined #nixos
Vykook[m] has joined #nixos
emily has joined #nixos
hoek has joined #nixos
jlv[m] has joined #nixos
Philipp[m]1 has joined #nixos
lstanley has joined #nixos
rizary has joined #nixos
d1rewolf has joined #nixos
drozdziak1[m] has joined #nixos
mica[m]1 has joined #nixos
easamuilov[m] has joined #nixos
epic_guy[m] has joined #nixos
maralorn has joined #nixos
bricewge1 has joined #nixos
d10n-work has joined #nixos
metheflea has joined #nixos
aterius1 has joined #nixos
vegai1 has joined #nixos
metheflea has joined #nixos
metheflea has quit [Changing host]
vegai1 has joined #nixos
vegai1 has quit [Changing host]
aterius1 has quit [Changing host]
aterius1 has joined #nixos
Rusty1 has joined #nixos
cstrahan has joined #nixos
blindidiotgod1 has joined #nixos
<nix-build> [nixpkgs] @Ma27 opened pull request #90646 → maintainers/teams: add matrix team → https://git.io/Jf592
sksneheheh[m] has joined #nixos
mlatus[m] has joined #nixos
jordandoyle has joined #nixos
chmod222[m] has joined #nixos
psiperator[m] has joined #nixos
rycee has joined #nixos
randnoise[m] has joined #nixos
aquarial has joined #nixos
regnat has joined #nixos
idontgetoutmuch[ has joined #nixos
spinlock[m] has joined #nixos
askatasun[m] has joined #nixos
toraritte1 has joined #nixos
wedens[m] has joined #nixos
rgamma[m] has joined #nixos
watzon has joined #nixos
siraben has joined #nixos
mkfart[m] has joined #nixos
vpfeiffer[m] has joined #nixos
michaelpj has joined #nixos
sonerhalis[m] has joined #nixos
comrandroxaos[m] has joined #nixos
rnhmjoj has joined #nixos
echel0n[m] has joined #nixos
michaelpj has joined #nixos
michaelpj has quit [Changing host]
echel0n[m] has joined #nixos
echel0n[m] has quit [Changing host]
rnhmjoj has joined #nixos
rnhmjoj has quit [Changing host]
sonerhalis[m] has joined #nixos
sonerhalis[m] has quit [Changing host]
comrandroxaos[m] has joined #nixos
comrandroxaos[m] has quit [Changing host]
<nix-build> [nixpkgs] @r-ryantm opened pull request #90647 → olm: 3.1.4 -> 3.1.5 → https://git.io/Jf59w
rodarmor has joined #nixos
gmr has joined #nixos
kriteus[m] has joined #nixos
Luigi[m] has joined #nixos
emmanuelrosa[m] has joined #nixos
logan12358[m] has joined #nixos
koschitzky[m]1 has joined #nixos
dxtr[m]1 has joined #nixos
Nacho[m]1 has joined #nixos
<cole-h> gchristensen: lol, bot changed names again
ibinzari[m] has joined #nixos
chvp has joined #nixos
mt[m] has joined #nixos
wangoe[m] has joined #nixos
NickHu1 has joined #nixos
MawKKe[m] has joined #nixos
anarchomoh[m] has joined #nixos
freeman42x[m] has joined #nixos
dmj` has joined #nixos
sm[m] has joined #nixos
edef has joined #nixos
Ericson2314 has joined #nixos
wak-work has joined #nixos
bobfett1 has joined #nixos
musicmatze[m] has joined #nixos
gsals[m] has joined #nixos
trufas[m] has joined #nixos
Notkea[m] has joined #nixos
davidak[m] has joined #nixos
sibachian[m] has joined #nixos
chreekat[m] has joined #nixos
adit[m] has joined #nixos
iwvt[m] has joined #nixos
roberth has joined #nixos
fsmnarmosta[m] has joined #nixos
gs93 has joined #nixos
contrun1 has joined #nixos
goibhniu1 has joined #nixos
sasyctu[m]1 has joined #nixos
mzafkismugi[m]1 has joined #nixos
Poscat[m] has joined #nixos
rednaZ[m]1 has joined #nixos
ngerstle[m] has joined #nixos
eadwu[m] has joined #nixos
sshow[m] has joined #nixos
mullein[m] has joined #nixos
limpid-kzonix[m] has joined #nixos
<nix-build> [nixpkgs] @r-ryantm opened pull request #90648 → owncloud-client: 2.5.4.11654 -> 2.6.3.14058 → https://git.io/Jf5Qe
Grauwolf[m] has joined #nixos
neonfuz2 has joined #nixos
anton-latukha[m] has joined #nixos
observer_alpha[m has joined #nixos
hpfr[m] has joined #nixos
nilsirl[m] has joined #nixos
MilkManzJourDadd has joined #nixos
drdee has quit [Read error: Connection reset by peer]
geekimerssive[m] has joined #nixos
user51[m] has joined #nixos
JJJollyjim has joined #nixos
chris[m]4 has joined #nixos
hsiktas[m] has joined #nixos
dngray has joined #nixos
colemickens has joined #nixos
justache has joined #nixos
edrex has joined #nixos
unclechu has joined #nixos
hiroshi[m] has joined #nixos
zarathustra_[m] has joined #nixos
mindtree[m]1 has joined #nixos
axx[m]1 has joined #nixos
rschulman has joined #nixos
<nix-build> [nixpkgs] @lopsided98 closed pull request #90371 → opentx: 2.3.7 -> 2.3.8 → https://git.io/JfQ5i
CRTified[m] has joined #nixos
alienpirate5 has joined #nixos
mkg20001 has joined #nixos
eddyb has joined #nixos
tet[m] has joined #nixos
muslimm has joined #nixos
tyrion-mx has joined #nixos
theduke[m] has joined #nixos
muslimm has quit [Killed (kline (bye))]
DamienCassou1 has joined #nixos
redcedar[m] has joined #nixos
Cdric[m] has joined #nixos
coyoneda[m] has joined #nixos
alj[m] has joined #nixos
NobbZ[m] has joined #nixos
azazel1 has joined #nixos
arcnmx has joined #nixos
spherinder[m] has joined #nixos
zenxhd has joined #nixos
muslimm has joined #nixos
ZerataX has joined #nixos
* muslimm - Be muslims to be fine *****
muslimm has quit [Max SendQ exceeded]
sparogy has joined #nixos
fresheyeball[m] has joined #nixos
Valodim[m] has joined #nixos
dammndot[m] has joined #nixos
balsoft has joined #nixos
ongy[m] has joined #nixos
thefloweringash has joined #nixos
ma27[m] has joined #nixos
felschr[m] has joined #nixos
marius851000[m] has joined #nixos
atgo[m] has joined #nixos
cmcaine[m] has joined #nixos
zrsk[m] has joined #nixos
Foooooo[m] has joined #nixos
interro[m] has joined #nixos
kaychaks_riot has joined #nixos
boogiewoogie[m] has joined #nixos
keithy[m] has joined #nixos
<nix-build> [nixpkgs] @r-ryantm opened pull request #90649 → openblas: 0.3.9 -> 0.3.10 → https://git.io/Jf5QV
<nix-build> [nixpkgs] @Ma27 merged pull request #90495 → cppcheck: 2.0 -> 2.1 → https://git.io/Jf7wZ
<nix-build> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf5Qw
vaibhavsagar has joined #nixos
domenkozar[m] has joined #nixos
<nix-build> [nixpkgs] @mweinelt closed pull request #90643 → pythonPackages.coveralls: 1.9.2 -> 2.0.0 → https://git.io/Jf5Sf
grin[m] has joined #nixos
cmk_zzz has quit [Remote host closed the connection]
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
lpsmith has quit [Quit: ZNC 1.6.5 - http://znc.in]
lpsmith has joined #nixos
rummik has quit [Ping timeout: 260 seconds]
lord| has joined #nixos
<nix-build> [nixpkgs] @ryantm merged pull request #90644 → opentx: 2.3.7 -> 2.3.9 → https://git.io/Jf5Sm
<nix-build> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jf5Qx
justan0theruser has joined #nixos
CRTified[m] has quit [Quit: authenticating]
CRTified[m] has joined #nixos
cript0nauta has joined #nixos
<nix-build> [nixpkgs] @Ma27 merged pull request #90614 → node-exporter: 1.0.0 -> 1.0.1 → https://git.io/Jf5gp
mbrgm_ has joined #nixos
<nix-build> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf57v
mbrgm has quit [Ping timeout: 246 seconds]
mbrgm_ is now known as mbrgm
<nix-build> [nixpkgs] @romildo merged pull request #90633 → numix-icon-theme: 20.03.20 -> 20.06.07 → https://git.io/Jf5ir
<nix-build> [nixpkgs] @romildo pushed 2 commits to staging: https://git.io/Jf57f
kenji has quit [Ping timeout: 264 seconds]
user_0x58 has joined #nixos
<nix-build> [nixpkgs] @Ma27 merged pull request #90634 → prometheus-mysqld-exporter: 0.11.0 -> 0.12.1 → https://git.io/Jf5Xb
<nix-build> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf57T
cript0nauta has quit [Ping timeout: 260 seconds]
rummik has joined #nixos
cmk_zzz has joined #nixos
cript0nauta has joined #nixos
eoli3n has quit [Ping timeout: 258 seconds]
rajivr has joined #nixos
philr_ has joined #nixos
sigmundv_ has joined #nixos
<nix-build> [nixpkgs] @Ma27 merged pull request #90308 → bitwarden_rs: 1.15.0 -> 1.15.1 → https://git.io/JfQiY
<nix-build> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jf57M
cript0nauta has quit [Ping timeout: 264 seconds]
_ris has joined #nixos
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
cript0nauta has joined #nixos