andi- changed the topic of #nixos to: NixOS stable: 19.09 \o/ https://discourse.nixos.org/t/nixos-19-09-release/4306/2 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2019 || For best support,
<elux> im using my dotfiles across a desktop and laptop, although they overlap by like 90% of the config, there are some nuances between the two that are unique. how can i have a single nix conf and some conditional logic to load depending on a variable?
<ajs124> elux: you can if config.networking.hostName == a then b else c
<sondr3> elux: I just posted about this on the forums about how I do it https://discourse.nixos.org/t/is-this-a-good-way-to-modularize-home-manager-home-nix-for-home-work/5817/6
<elux> nice, thx i will check out the post
<sondr3> the gist of it is that I set the `nixos-config` variable in $NIX_PATH to point to each individual machines configuration, and therefore I don't have to do a ton of `if machine == a then x else y`
<sondr3> the differences aren't very large though so I don't know how well this would scale for more advanced configurations, but for my laptop and desktop it works really well
<elux> i have ~/.dotfiles repo, and i just symlink /etc/nixos/configuration.nix to my respective machine, and it could have its own import tree.. but, still within a file i could have some conditional logic
cosimone has quit [Ping timeout: 256 seconds]
<sondr3> yeah, I used to do that but felt like it could be more nix-y
orivej has quit [Ping timeout: 240 seconds]
<elux> if i could just see some sample, "if machine == "desktop" then some.setting = 1;" this would be nice
<sondr3> you could do `if config.networking.hostname == 'machinename' then`
<elux> something is wrong with my syntax
u0_a121 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @bdesham opened pull request #79578 → git: enable zsh completion → https://git.io/JvnNp
u0_a121 has joined #nixos
<elux> this works though: `networking.firewall.enable = lib.mkIf (config.networking.hostName == "pak") false;`
u0_a121 has quit [Read error: Connection reset by peer]
<elux> just as a simple example..
<sondr3> elux: do you have a specific example on how you'd want to do it? That looks about how I'd do it
<elux> id prefer to do it in a block of statements.. like, lib.mkIf lib.config.networking.hostName == "desktop" { ... bunch of config statements .. }; lib.mkIf lib.config.networking.hostName == "laptop" { ........... };
Ralith_ has quit [Ping timeout: 256 seconds]
johnnyfive has quit [Ping timeout: 268 seconds]
Ralith_ has joined #nixos
<sondr3> when I've previously had something like this I've instead turned to configuration options, so I'm not really sure in this case
<sondr3> you can see here https://github.com/sondr3/dotfiles/blob/haskellify/config/nixos/gaming.nix how I do it for conditionally enabling gaming for example
<sondr3> and then in my configuration.nix I'd just do `mine.gaming.enable = true;` and get that configuration
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/ee5de7e0323 (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
<danderson> ooh, nixos gaming config.
turona_ has quit [Ping timeout: 272 seconds]
<danderson> Does steam work okay? I'm super tempted to switch my laptop to nixos (from arch), I'm mostly just worried about having the packages I need (vs. Arch where AUR has every program ever made basically)
bhipple has quit [Ping timeout: 256 seconds]
<sondr3> I've never had any issues with Steam, but all the games I play are native Linux games so I haven't tested Proton/Wine
<sondr3> but Rocket League (RIP) worked with my PS4 controller without having to do anything
<elux> sondr3: cool, i will try this. where is config.mine.gaming defined tho? and how is it picked up
<sondr3> ditty for EU4, Dota2, CSGO, GolfIt etc
<danderson> I mostly only play native stuff as well, I have a windows dual-boot for the rest
<danderson> sondr3: are you running nixos on a laptop? Works okay?
turona has joined #nixos
fresheyeball has joined #nixos
<sondr3> danderson: yeah, ran it previously on my old MBP 2012 Retina and now on a Dell Latitude 5401, no issues whatsoever
<sondr3> elux: and it is just magically picked up when you import that file
<fresheyeball> anyone know how to use mcelog on nixos?
<danderson> Neat. I wish the SSD in this was a little bit bigger, so I could try a win/arch/nixos triple boot for a while. Hmm...
<danderson> I wonder how much space I can steal from Windows for a test drive...
<fresheyeball> I enabled it in my options, but can't see, to get any output
<sondr3> danderson: steal all of it >:D
<danderson> sondr3: but but gaming
<danderson> also firmware updates, this Dell XPS is a bit garbage and fwupd can't update most of the chipsets from linux :(
<fresheyeball> mcelog: Cannot open `/dev/mcelog': No such file or directory
<fresheyeball> with `sudo mcelog`
<danderson> speaking of which, I should reboot and do some firmware updates, there's bugfixes for thunderbolt crapping itself! So excited.
<sondr3> danderson: really? My Dell works flawlessly with fwupd
<danderson> sondr3: I got linux secure boot working, and Arch doesn't ship a signed fwupd EFI binary
<danderson> so it refuses to update, because its updater program wouldn't be allowed to run
<sondr3> danderson: ah, I disabled that crap :P
<danderson> a screwup of my own creation :)
<danderson> eh, secure boot is a neat idea. If *I* control the keys. Which I do :P
<danderson> it just breaks a bunch of Arch's assumptions, because it assumes nobody could be dumb enough to try using it
<sondr3> lmao
<sondr3> I really didn't read up on what it even is, all the guides I found for installing Linux told me to disable it so I did
<danderson> speaking of which: is there any precedent for having something that pauses for human input in activation scripts?
<danderson> to make secure boot work, I would have to pause and request signing with my security key while installing a new kernel image
u0_a121 has joined #nixos
<danderson> sondr3: happy to explain if you care :) But basically, secure boot means the bios will only boot OSes signed by a trusted source. It's a way to stop malware injecting itself into early boot and breaking OS-based security
<danderson> in my case, I have an encrypted root on my linux, so the initrd prompts me for a passphrase during boot. But how do I know that passphrase prompt is legit? Maybe someone got to my machine and made it boot an infected kernel, and it's going to steal my passphrase.
<danderson> With secure boot, that's not possible. The kernel and initrd are signed, and the BIOS refuses to boot unsigned things
<sondr3> I just assume that if anyone is that out to get me I have bigger problems to worry about, I encrypted my disk but that's about it
<danderson> so if the passphrase prompt appears, I'm certain that it's running a kernel+initrd that I signed
<sondr3> but cool, sounds like something I'd do if it was easy and straight forward
<sondr3> but I spent five hours trying to get btrfs + LUKS + LVM to work well
<danderson> so the main threat model for secure boot is 2 things: make it harder for malware to become persistent, and "evil maid" attacks
<danderson> the malware thing is a big deal for windows: without secure boot, malware can inject itself deep into the boot process, and survive a windows reinstall
<danderson> with secure boot, worst thing the malware can do is stay inside windows, and a reinstall will clean it out
<sondr3> it sounds like a great idea, what's the catch? :P
<danderson> evil maid attacks (temporary physical access to my machines) is the main thing. With secure boot enabled, there's no place to inject boot malware
<danderson> so many catches :D
<danderson> mostly, it's kinda hard to set up on linux.
<danderson> by default, computers ship with a keyring controlled by Microsoft. So you need to have a kernel signed by Microsoft, or it won't boot.
<sondr3> oh joy
<danderson> Fortunately there's ways around that. You can replace the entire keychain with keys you control. Or you can use Redhat's `shim` binary, which is signed by microsoft and adds a secondary keyring controlled by the machine owner
codygman has quit [Ping timeout: 260 seconds]
<danderson> I use `shim` just because it means I can still dual-boot windows.
<danderson> after that, it's just a question of signing all the things, and setting the bootloader up so that it does signature verification
<danderson> it's really badly documented, and there's a bunch of incorrect instructions out on the internet... So most people just say "disable secure boot" :(
<sondr3> from what you've explained I'd still disable it lol
<sondr3> danderson++
<{^_^}> danderson's karma got increased to 2
drakonis has quit [Quit: WeeChat 2.6]
<danderson> Anyway. I'd like to make secure boot work with nixos, but in most setups that means the activation script has to pause during activation and say something like "insert and tap your security key to sign+install the boot kernel"
<danderson> or just dump the keys on the filesystem and the activation script can sign stuff without interaction... But that exposes the signing keys a lot more :)
<sondr3> I don't really have any useful input, but thanks a bunch for the explanation/rambling :D
mbrgm_ has joined #nixos
mbrgm_ is now known as mbrgm
mbrgm has quit [Ping timeout: 240 seconds]
u0_a121 has quit [Read error: Connection reset by peer]
<nh2> solved my include problem as well, I hadn't set the llvm `release_version` to the one zapcc uses
sigmundv has joined #nixos
bhipple has joined #nixos
ng0 has joined #nixos
jluttine has quit [Ping timeout: 272 seconds]
ng0_ has quit [Ping timeout: 256 seconds]
buckley310 has quit [Quit: The Lounge - https://thelounge.chat]
bvdw has quit [Read error: Connection reset by peer]
johnnyfive has joined #nixos
bvdw has joined #nixos
u0_a121 has joined #nixos
<fresheyeball> gchristensen: do you know how to use mcelog on nixos?
karetsu has quit [Quit: WeeChat 2.6]
<fresheyeball> I think you are the maintainer
<elux> im getting, error: syntax error, unexpected ';', expecting $end, at /home/peter/.dotfiles/nixpkgs/autorandr.nix:88:2
<elux> just trying to do some basic conditional config
<sondr3> elux: you normally don't end .nix files with a semi-colon, have you tried wrapping everything in {}?
<{^_^}> [nixpkgs] @mkg20001 opened pull request #79579 → twinkle: patch manual link since old domain got re-used → https://git.io/Jvnx4
buckley310 has joined #nixos
<elux> wrapping in {} doesnt seem to work..
<{^_^}> [nixpkgs] @cdepillabout merged pull request #79561 → haskellPackages.hledger-flow: do not build static → https://git.io/Jvn7d
<{^_^}> [nixpkgs] @cdepillabout pushed 2 commits to haskell-updates: https://git.io/JvnxE
<{^_^}> [nixpkgs] @cdepillabout merged pull request #79556 → haskellPackages.http-streams: mark not broken → https://git.io/Jvn7C
<{^_^}> [nixpkgs] @cdepillabout pushed 2 commits to haskell-updates: https://git.io/Jvnxa
u0_a121 has quit [Read error: Connection reset by peer]
<elux> i figured it out..
dansho has quit [Quit: Leaving]
jluttine has joined #nixos
wildtrees has quit [Quit: Leaving]
<elux> thanks sondr3, that pointer helped me figure out another way
u0_a121 has joined #nixos
butterthebuddha has joined #nixos
<sondr3> elux: sweet, what was the solution?
<elux> looks like this now, i just did the conditional on the specific setting
xkapastel has quit [Quit: Connection closed for inactivity]
<elux> i also added a little magic file, machine.nix which has just a single string either "desktop" or "laptop"
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/59e3cc9b165 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<elux> and i import this whenever i do some conditional stuff
<elux> prob a better way to do it.. but, meh
<cole-h> How would I run a package and bypass the overlay I have installed for it?
<cole-h> `NIX_PATH="nixpkgs-overlays=/var/empty:$NIX_PATH" nix-shell -p <package>` worked
ng0_ has joined #nixos
<clever> cole-h: nix-build '<nixpkgs>' -A package --arg overlays '[]'
xkapastel has joined #nixos
Maxdaman1us has joined #nixos
Maxdamantus has quit [Ping timeout: 256 seconds]
<cole-h> That works too, thanks!
sondr3 has quit [Quit: WeeChat 2.7]
<cole-h> clever++
<{^_^}> clever's karma got increased to 322
<cole-h> Some might even say that was... clever
acarrico has joined #nixos
ng0 has quit [Ping timeout: 260 seconds]
<elux> does nix support conditional variables... ? like........... `let blah = "hi" mkIf (something == "yes"); ?
<clever> elux: `mkIf` is part of the module framework, it takes part of a nixos module
<clever> elux: and its primarily to deal with infinite recursion
<gchristensen> > blah = if true then "hi" else "bye";
<{^_^}> error: syntax error, unexpected ';', at (string):43:38
<gchristensen> > let blah = if true then "hi" else "bye"; in blah
<{^_^}> "hi"
jluttine has quit [Ping timeout: 256 seconds]
Rusty1 has quit [Remote host closed the connection]
<clever> elux: this will return a special attrset, which gets translated into { system = mkIf condition ...; }, allowing nixos to figure out what config.boot is, while lazily ignoring config.system for the moment
<elux> nice that works
<elux> thanks gchristensen
<clever> elux: also, you dont want to make your config conditional on hostname, you want to do it the other way around
<clever> elux: make a hostname.nix file, that sets all of the conditional stuff, and the hostname
<elux> clever: yea, true that makes sense. but im still super nix language amateur
<elux> the declarative style for that would be great, but so many things i intutitively expect nix to work, doesnt
<elux> so im just adding lame conditionals in different places
cosimone has joined #nixos
<bhipple> gchristensen: I implemented the improvements we talked about for the fetchcargo vendor as a flat tar.gz file that works with hashed mirrors, btw: https://github.com/NixOS/nixpkgs/pull/78501
<{^_^}> #78501 (by bhipple, 1 week ago, open): fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir
phirsch has joined #nixos
<bhipple> saves almost 90% of the disk space for the src packages in the store :o (aside from the other benefits, like hashed mirror support and better abstraction boundaries)
elux has quit [Quit: Lost terminal]
h0m1 has quit [Ping timeout: 256 seconds]
h0m1 has joined #nixos
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
u0_a121 has quit [Read error: Connection reset by peer]
elux has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/ee5de7e0323 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<elux> inside of xsession.windowsManager.i3.startup which is an array of items, can i somehow have a conditional when defining the array..? ie. if (machine == "desktop") then _ else { command = "blueman-applet"; notification = false; };
<clever> > lib.optional true 42
<{^_^}> [ 42 ]
<clever> > lib.optional false 42
<{^_^}> [ ]
<clever> elux: and then use ++ to append that to another list
<samueldr> > lib.optionals true [ "for" "multiple" "entries" ]
<{^_^}> [ "for" "multiple" "entries" ]
<elux> i tried.. `startup = [ { ..some stuff } ] optional (machine == "laptop") ++ [ { command = "blueman-applet"; notification = false; } ] ;`
<elux> not quite there
<cole-h> It's `++ optional (cond) [ stuff ];` I believe
<clever> elux: the ++ is on the wrong side
<clever> startup = [ { ..some stuff } ] ++ optional (machine == "laptop") { command = "blueman-applet"; notification = false; };
<elux> thanks, that helped and worked!
<elux> i switchd it to ++ optionals (etc..
<elux> so i could pass an array with more options
<clever> elux: its also much simpler if you use a laptop.nix, that sets that set of options
<elux> clever: any git repos out there with that as an example?
<elux> this is what ive done which works
<elux> (thanks to your help)
<clever> elux: each machine has a different starting file, that sets stuff for just that machine, and then puts more common stuff into imports
<clever> vim.nix is a special case, where every machine should have vim, but i want to customize it further
<clever> so i define a custom vim.fat option
<clever> and then i can just set it to true/false in other places
<{^_^}> [nixpkgs] @worldofpeace merged pull request #79300 → nixos/services.xserver: Fix legacy options for default wm without dm → https://git.io/JvZ3Z
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/Jvnp0
<elux> nice. that is a great config to learn from
<elux> very nice
jluttine has joined #nixos
<genesis> some advice for an easy httpd mocking tool ? i tried to run Mockoon unsussecfully
<genesis> ( i try to mock netflix server to run netflix's playstation2 for fun)
cartwright has quit [Ping timeout: 240 seconds]
cartwright has joined #nixos
drakonis has joined #nixos
Hunterkll has quit [Remote host closed the connection]
Hunterkll has joined #nixos
WinchellsM has quit [Quit: Lost terminal]
butterthebuddha has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79580 → opera: 66.0.3515.36 -> 66.0.3515.72 → https://git.io/Jvnp1
<{^_^}> [nixpkgs] @bhipple opened pull request #79581 → fetchzip, fetchgit: cleanup handling of optional features and whitespace → https://git.io/Jvnpy
<DigitalKiwi> nh2: i'm mad at you
iyzsong has joined #nixos
<nh2> DigitalKiwi: how comes?
<DigitalKiwi> 5b78ca49f2ed6224945db7421160b7696e1987f1
<DigitalKiwi> breaks scribusUnstable :<
jluttine has quit [Ping timeout: 240 seconds]
<DigitalKiwi> i'm trying to figure out what to do to make fix it and PR but uh it's complicated :(
epl692 has quit [Ping timeout: 260 seconds]
<nh2> DigitalKiwi: hmm, what breaks? I'm quite sure I had run nix-review and some GUI programs to check it works, let me dig it up
<DigitalKiwi> am not really mad every time poppler has updated scribus has broken
<DigitalKiwi> worldofpeace found most of that much faster than i would have :)
gustavderdrache has quit [Quit: Leaving.]
<DigitalKiwi> i confirmed that it built on the git commit before and that that git commit made it fail
<worldofpeace> DigitalKiwi: you should do `nix-shell -A scribusUnstable; unpackPhase` and find scribus-1.5.5/scribus/plugins/import/pdf/slaoutput.cpp 1232:16
<nh2> DigitalKiwi: hmm, indeed my nix-review actually did spot the scribus build break, see https://github.com/NixOS/nixpkgs/pull/77186. I did not spot though that it was poppler related
<{^_^}> #77186 (by r-ryantm, 4 weeks ago, merged): poppler: 0.83.0 -> 0.84.0
<{^_^}> [nixpkgs] @worldofpeace merged pull request #75670 → bless: init at 0.6.2 → https://git.io/JeQlh
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/Jvnp9
jluttine has joined #nixos
<DigitalKiwi> worldofpeace: ok i did that and confirmed it's the one highlighted on github
butterthebuddha has joined #nixos
<worldofpeace> DigitalKiwi: which line?
<DigitalKiwi> 1232
<DigitalKiwi> is 1202
<nh2> DigitalKiwi: I don't understand the error though. Did the poppler upgrade somehow activate `HAVE_FREETYPE_H` and it was off before? It does not seem to mention poppler
<worldofpeace> nh2: wondering the same
<DigitalKiwi> that's the file after unpackPhase
<worldofpeace> DigitalKiwi: I don't see the POPPLER_ENCODED_VERSION
<worldofpeace> got it
<worldofpeace> no wonder I was like, hmm that code should work
<DigitalKiwi> am still confused
cosimone has quit [Quit: Quit.]
<worldofpeace> DigitalKiwi: the code in the archive doesn't have https://github.com/scribusproject/scribus/commit/3742559924136c2471ab15081c5b600dd5feaeb0
<DigitalKiwi> oic
<worldofpeace> DigitalKiwi: re the line difference
<worldofpeace> DigitalKiwi: just apply that patch
<DigitalKiwi> so just update it?
<DigitalKiwi> ok
<worldofpeace> it looks like should apply perfectly
detran has quit [Ping timeout: 256 seconds]
<DigitalKiwi> just make that a file and add it to patchPhase?
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
<worldofpeace> example in nixpkgs
<worldofpeace> * examples are
<worldofpeace> lol
<worldofpeace> * fetchpatch
<DigitalKiwi> oh there are already 2 there lmao
<DigitalKiwi> ok building
<nh2> DigitalKiwi: what's your github handle?
<DigitalKiwi> Kiwi
<DigitalKiwi> i'll have a PR soon
<nh2> DigitalKiwi: thanks, when you have it, please comment on https://github.com/NixOS/nixpkgs/pull/77186#issuecomment-583800213
<DigitalKiwi> ok
waleee-cl has quit [Quit: Connection closed for inactivity]
ajs124 has quit [Remote host closed the connection]
das_j has quit [Remote host closed the connection]
Scriptkiddi has quit [Remote host closed the connection]
Scriptkiddi has joined #nixos
das_j has joined #nixos
ajs124 has joined #nixos
m15k has joined #nixos
u0_a121 has joined #nixos
epl692 has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79582 → osinfo-db: 20191125 -> 20200203 → https://git.io/Jvnhe
<DigitalKiwi> nh2: yay it built
<nh2> DigitalKiwi: nice
<nh2> sorry for the breakage!
<DigitalKiwi> it's ok i'm used to it
<DigitalKiwi> and it gets my PR count up so i get social credit!
<DigitalKiwi> ;p
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79583 → pcb: 4.2.1 -> 4.2.2 → https://git.io/JvnhJ
wavirc22 has joined #nixos
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
aw has joined #nixos
spacefrogg has joined #nixos
felixfoertsch has joined #nixos
kleisli has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79584 → parallel: 20191222 -> 20200122 → https://git.io/JvnhT
felixfoertsch23 has quit [Ping timeout: 256 seconds]
ng0 has joined #nixos
m15k has quit [Remote host closed the connection]
u0_a121 has quit [Ping timeout: 256 seconds]
ng0_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Kiwi opened pull request #79585 → scribusUnstable: Fix build with Poppler 0.84 → https://git.io/Jvnhk
Maxdaman1us is now known as Maxdamantus
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79586 → osl: 1.10.8 -> 1.10.9 → https://git.io/JvnhI
<DigitalKiwi> nh2: ^
<nh2> nice
epl692 has quit [Ping timeout: 256 seconds]
xkapastel has quit [Quit: Connection closed for inactivity]
chagra has joined #nixos
chagra_ has quit [Ping timeout: 240 seconds]
epl692 has joined #nixos
butterthebuddha has quit [Quit: Textual IRC Client: www.textualapp.com]
sigmundv has quit [Ping timeout: 265 seconds]
<genesis> try to setup nginx with Cipher Suite: TLS_DHE_RSA_WITH_AES_256_CBC_SHA (0x0039)
<genesis> i wonder if i have to rebuild openssl with weak ciphers option.
detran has joined #nixos
Supersonic112 has joined #nixos
Supersonic has quit [Disconnected by services]
Supersonic112 is now known as Supersonic
<colemickens> So for JS applications like this, https://github.com/andrewosh/hyperdrive-daemon, do we still package it by adding it to node-packages-v10.json ?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79587 → palemoon: 28.8.1 -> 28.8.2.1 → https://git.io/Jvnj3
elux has quit [Quit: leaving]
<thefloweringash> bhipple++ thank you for #79108 !
<{^_^}> bhipple's karma got increased to 1
<bhipple> thefloweringash: you're welcome!
ng0_ has joined #nixos
ng0 has quit [Ping timeout: 260 seconds]
<DigitalKiwi> nh2 worldofpeace i wonder why we do all of those patches instead of updating to a newer version in their github?
wavirc22 has quit [Read error: Connection reset by peer]
<nh2> DigitalKiwi: you mean why not upgrade to a master commit of the upstream project?
<DigitalKiwi> yeah
<nh2> DigitalKiwi: because they are not usually tested a lot, and often regressions are introduced. By cherry-picking the fix, we can be reasonably sure to not introduce new regressions
<DigitalKiwi> oh
<DigitalKiwi> but also we don't get new fixes either :(
nikola_i has quit [Ping timeout: 240 seconds]
<nh2> DigitalKiwi: nixpkgs master already updates extremely quickly though; often as soon as a new release is made by the upstream project
xkapastel has joined #nixos
<nh2> DigitalKiwi: usually upstream maintainers do not intend people to use non-release versions productively
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #79572 → Update EDA tools → https://git.io/JvnbB
<{^_^}> [nixpkgs] @thoughtpolice pushed 12 commits to master: https://git.io/Jvnji
<DigitalKiwi> oh, right
<nh2> DigitalKiwi: keep in mind that many projects still don't have CI; some test only when they make releases, manually
<DigitalKiwi> oh i forgot to add me to maintainers
<DigitalKiwi> the more the better amirite
<DigitalKiwi> should i do that and add the comment you wanted
wavirc22 has joined #nixos
<{^_^}> #78312 (by gnidorah, 2 weeks ago, open): openmw-tes3mp: fix build
<DigitalKiwi> i didn't run nixpkgs-fmt on it either which i normally do arrrgh
kandinski has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79588 → poedit: 2.2.4 -> 2.3 → https://git.io/Jvnjp
alexbakker has quit [Quit: Dikke doei]
<DigitalKiwi> nh2: https://github.com/scribusproject/scribus/blob/master/COPYING#L14-L19 the only license we have is gpl2...should it have more
nexgen has joined #nixos
alexbakker has joined #nixos
<DigitalKiwi> nh2 ok i did a bunch of changes i hope they're ok
<DigitalKiwi> nh2: if not; glad to fix
<{^_^}> [nixpkgs] @veprbl merged pull request #79430 → frescobaldi: 3.1 -> 3.1.1 → https://git.io/JvnUB
<{^_^}> [nixpkgs] @veprbl pushed commit from @r-ryantm to master « frescobaldi: 3.1 -> 3.1.1 (#79430) »: https://git.io/JvceI
nikola_i has joined #nixos
bhipple has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @veprbl merged pull request #79301 → librepcb: Fix platform plugin xcb not found → https://git.io/JvZ3H
<{^_^}> [nixpkgs] @veprbl pushed 2 commits to master: https://git.io/JvceY
Palmform has joined #nixos
bhipple has joined #nixos
v88m has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79589 → python27Packages.apprise: 0.8.3 -> 0.8.4 → https://git.io/Jvcen
domogled has quit [Ping timeout: 256 seconds]
Maxdaman1us has joined #nixos
Maxdamantus has quit [Ping timeout: 240 seconds]
jjakob has quit [Quit: No Ping reply in 180 seconds.]
jjakob has joined #nixos
<wedens[m]> any tips on debugging hard lockups? sysrq doesn't work, no logs at the moment of a lockup.
o1lo01ol1o has joined #nixos
bhipple has quit [Ping timeout: 268 seconds]
jjakob has quit [Quit: No Ping reply in 180 seconds.]
Palmform has quit [Remote host closed the connection]
Emantor has quit [Quit: ZNC - http://znc.in]
bhipple has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79591 → postfix: 3.4.8 -> 3.4.9 → https://git.io/Jvceu
o1lo01ol1o has quit [Ping timeout: 256 seconds]
Emantor has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/4ced5611dbc (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
xelxebar has joined #nixos
xelxebar_ has quit [Ping timeout: 240 seconds]
ng0 has joined #nixos
buckley310 has quit [Quit: The Lounge - https://thelounge.chat]
buckley310 has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #74786 → librepcb: 0.1.2 -> 0.1.3 → https://git.io/JeMU5
<{^_^}> [nixpkgs] @veprbl pushed commit from @Luz to master « librepcb: 0.1.2 -> 0.1.3 (#74786) »: https://git.io/Jvce6
jjakob has joined #nixos
buckley310 has quit [Client Quit]
ng0_ has quit [Ping timeout: 268 seconds]
Sigma has quit [Ping timeout: 240 seconds]
buckley310 has joined #nixos
GrimSleepless has joined #nixos
<colemickens> !channels
<colemickens> ,channels
<{^_^}> Largest Nix-related channels: #nixos, #nixos-dev, #nix-darwin, #nixos-chat, #nixos-aarch64, #nixos-wiki, #nixos-borg, #nixos-security, #nix-core
smatting has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #79569 → mcelog: 167 -> 168 → https://git.io/JvnFT
bhipple has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvcey
palo1 has joined #nixos
nikola_i has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79592 → pulseeffects: 4.7.0 -> 4.7.1 → https://git.io/Jvcvu
palo has quit [Ping timeout: 272 seconds]
palo1 is now known as palo
<{^_^}> [nixpkgs] @thefloweringash opened pull request #79593 → wafHook: allow overriding phases → https://git.io/Jvcvp
<{^_^}> [nixpkgs] @veprbl merged pull request #74560 → qnotero: 1.0.0->2.1.1 → https://git.io/Je1LM
<{^_^}> [nixpkgs] @veprbl pushed commit from @pasqui23 to master « qnotero: 1.0.0 -> 2.1.1 (#74560) »: https://git.io/Jvcfk
smatting has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @veprbl merged pull request #74381 → rstudio: use qt5's mkDerivation → https://git.io/JeXKt
<{^_^}> [nixpkgs] @veprbl pushed commit from @Beskhue to master « rstudio: use qt5's mkDerivation (#74381) »: https://git.io/Jvcfq
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79594 → python27Packages.awkward: 0.12.19 -> 0.12.20 → https://git.io/Jvcfm
ddellacosta has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @veprbl closed pull request #73744 → darwin.apple_sdk: 10.12 -> 10.13 update → https://git.io/JeKoz
drakonis has quit [Ping timeout: 272 seconds]
u0_a121 has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
u0_a121 has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @veprbl closed pull request #72824 → openarena: Update link from oa_ded to openarena-server → https://git.io/Je2QO
<{^_^}> [nixpkgs] @veprbl pushed 0 commits to kevincox-openarena-server-1: https://git.io/Jvcf8
callahad870 has joined #nixos
dingenskirchen has quit [Quit: dingenskirchen]
dingenskirchen has joined #nixos
o1lo01ol1o has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
u0_a121 has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
pikajude has joined #nixos
<pikajude> is kvm_amd supposed to show up in lsmod?
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
u0_a121 has joined #nixos
cole-h has quit [Ping timeout: 260 seconds]
Maxdaman1us is now known as Maxdamantus
<{^_^}> [nixpkgs] @vcunat pushed to master « linux config: revert BPF_JIT_ALWAYS_ON=yes »: https://git.io/JvcfV
<pikajude> (the answer is yes, btw)
<pikajude> (i didn't turn on SVM in bios settings)
<pikajude> boy do i feel foolish
<li_matrix> got the public key from nixpkgs source
<li_matrix> oops, used the wrong key
<li_matrix> :P
lord| has joined #nixos
<li_matrix> lol, it worked
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79595 → postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 → https://git.io/JvcfF
Sigma has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/57ed5db343f (from 2 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
logzet has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
zupo has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #72090 → pin conkeror to firefox esr-5.2 → https://git.io/JeEAf
<{^_^}> [nixpkgs] @veprbl pushed commit from @PanAeon to master « conkeror: pin to firefox-esr-52 (#72090) »: https://git.io/JvcJe
u0_a121 has quit [Read error: Connection reset by peer]
<phirsch> I now managed to override the nativeBuildInputs to a package inside rPackages by setting its override argument in an overlay (yay!) - but unfortunately, this does not work for the 'src' attribute. Nix then complains about missing dependencies... Any ideas?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79596 → python27Packages.azure-mgmt-policyinsights: 0.3.1 -> 0.4.0 → https://git.io/JvcJI
FRidh2 has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #79577 → nspr: 4.24 -> 4.25 → https://git.io/JvnNg
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « nspr: 4.24 -> 4.25 »: https://git.io/JvcJt
jjakob has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @FRidh merged pull request #79539 → libtasn1: 4.14 -> 4.16.0 → https://git.io/JvnM1
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « libtasn1: 4.14 -> 4.16.0 »: https://git.io/JvcJq
<{^_^}> [nixpkgs] @FRidh merged pull request #79518 → gnutls: 3.6.11.1 -> 3.6.12 → https://git.io/Jvnwj
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « gnutls: 3.6.11.1 -> 3.6.12 »: https://git.io/JvcJm
<{^_^}> [nixpkgs] @Frostman opened pull request #79597 → go: remove not any more used patch files → https://git.io/JvcJY
<{^_^}> [nixpkgs] @FRidh merged pull request #79402 → bison: 3.5 -> 3.5.1 → https://git.io/JvZNZ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « bison: 3.5 -> 3.5.1 »: https://git.io/JvcJO
jjakob has joined #nixos
Heirlung- has joined #nixos
u0_a121 has joined #nixos
Heirlung has quit [Ping timeout: 268 seconds]
Heirlung- is now known as Heirlung
Sigma has quit [Ping timeout: 240 seconds]
chagra_ has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
chagra has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @FRidh pushed 7 commits to python-unstable: https://git.io/JvcJ4
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79598 → python37Packages.cmd2: 0.9.23 -> 0.9.25 → https://git.io/JvcJR
<{^_^}> [nixpkgs] @FRidh closed pull request #78711 → pythonPackages.django: 1.11 -> 2.2 → https://git.io/JvYYr
<{^_^}> [nixpkgs] @FRidh merged pull request #79375 → Python package set updates → https://git.io/JvZMG
<{^_^}> [nixpkgs] @FRidh pushed 31 commits to staging: https://git.io/JvcJz
<{^_^}> [nixpkgs] @FRidh merged pull request #76595 → rubyPackages: update → https://git.io/JeNOn
<{^_^}> [nixpkgs] @FRidh pushed 2 commits to staging: https://git.io/JvcJg
<{^_^}> [nixpkgs] @FRidh merged pull request #79148 → rustc: 1.40.0 -> 1.41.0 → https://git.io/Jvsyu
<{^_^}> [nixpkgs] @FRidh pushed commit from @bkchr to staging « rustc: 1.40.0 -> 1.41.0 »: https://git.io/JvcJr
<{^_^}> [nixpkgs] @FRidh pushed 164 commits to staging-next: https://git.io/JvcJK
<{^_^}> [nixpkgs] @FRidh pushed 165 commits to staging: https://git.io/JvcJ6
<{^_^}> [nixpkgs] @FRidh merged pull request #79578 → git: enable zsh completion → https://git.io/JvnNp
<{^_^}> [nixpkgs] @FRidh pushed commit from @bdesham to staging « git: enable zsh completion »: https://git.io/JvcJi
<{^_^}> [nixpkgs] @FRidh merged pull request #79510 → ffmpeg: fix vdpauSupport=false → https://git.io/JvnVH
<{^_^}> [nixpkgs] @FRidh pushed commit from @thefloweringash to staging « ffmpeg: fix vdpauSupport=false »: https://git.io/JvcJ1
<{^_^}> [nixpkgs] @vcunat pushed 7 commits to release-19.09: https://git.io/JvcJM
abcdef3248348384 has joined #nixos
jakob_rs has joined #nixos
<jakob_rs> Is it better to use the sha256 or hash arguments to fetchFromGithub?
<etu> sha256 is the most commonly used attribute name for hashes
<jakob_rs> etu: Which one should I prefer?
u0_a121 has joined #nixos
<etu> jakob_rs: Go with sha256
<etu> ,tofu jakob_rs
<{^_^}> jakob_rs: To get a sha256 hash of a new source, you can use the Trust On First Use model: use probably-wrong hash (for example: 0000000000000000000000000000000000000000000000000000) then replace it with the correct hash Nix expected. See: tofu-vim
<etu> That may help you as well :)
<jakob_rs> I just use lib.fakeSha256
akaWolf has quit [Read error: Connection reset by peer]
u0_a121 has quit [Read error: Connection reset by peer]
akaWolf has joined #nixos
gnidorah has quit [Quit: Connection closed for inactivity]
<abcdef3248348384> Anyone know why home-manager with imports might not be respecting nixpkgs.config.allowUnfree? How can I see what the derivation looks like after the import happens?
<abcdef3248348384> I need to know that to debug it more I think
Maxdamantus has quit [Quit: Lost terminal]
<{^_^}> [nixpkgs] @FRidh merged pull request #79594 → python27Packages.awkward: 0.12.19 -> 0.12.20 → https://git.io/Jvcfm
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.awkward: 0.12.19 -> 0.12.20 »: https://git.io/JvcJA
<{^_^}> [nixos-hardware] @Mic92 opened pull request #143 → xps/15-7590: don't enable unfree firmware by default → https://git.io/JvcJp
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79599 → python37Packages.breathe: 4.14.0 -> 4.14.1 → https://git.io/JvcJj
<{^_^}> [nixpkgs] @FRidh merged pull request #79599 → python37Packages.breathe: 4.14.0 -> 4.14.1 → https://git.io/JvcJj
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.breathe: 4.14.0 -> 4.14.1 »: https://git.io/JvcUf
<{^_^}> [nixpkgs] @FRidh merged pull request #79589 → python27Packages.apprise: 0.8.3 -> 0.8.4 → https://git.io/Jvcen
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.apprise: 0.8.3 -> 0.8.4 »: https://git.io/JvcUU
<abcdef3248348384> forgot to post issue with dteails/minimum repro: https://github.com/rycee/home-manager/issues/1022
<{^_^}> rycee/home-manager#1022 (by codygman, 2 hours ago, open): nixpkgs.config.allowUnfree not applied to imports
Maxdamantus has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #79586 → osl: 1.10.8 -> 1.10.9 → https://git.io/JvnhI
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « osl: 1.10.8 -> 1.10.9 »: https://git.io/JvcUk
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79600 → python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 → https://git.io/JvcUI
<{^_^}> [nixpkgs] @FRidh merged pull request #78980 → highlight: 3.54 -> 3.55 → https://git.io/Jv3wW
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « highlight: 3.54 -> 3.55 »: https://git.io/JvcUL
<{^_^}> [nixpkgs] @FRidh merged pull request #78966 → check: 0.13.0 -> 0.14.0 → https://git.io/Jv3lh
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « check: 0.13.0 -> 0.14.0 »: https://git.io/JvcUt
<{^_^}> [nixos-hardware] @Mic92 merged pull request #142 → Add Dell XPS 15-7590 suggested options → https://git.io/JvnmM
<{^_^}> [nixos-hardware] @Mic92 pushed 2 commits to master: https://git.io/JvcUY
<{^_^}> [nixpkgs] @jvierling opened pull request #79601 → iprover: 2018_Jul_24_11h -> 3.1 → https://git.io/JvcUO
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #78930 → intel-compute-runtime: 19.44.14658 -> 20.02.15268 → https://git.io/JvOF7
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to staging « intel-compute-runtime: 19.44.14658 -> 20.02.15268 »: https://git.io/JvcU3
<{^_^}> [nixpkgs] @FRidh merged pull request #78671 → rapid-photo-downloader: 0.9.17 -> 0.9.18 → https://git.io/Jvmjx
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « rapid-photo-downloader: 0.9.17 -> 0.9.18 »: https://git.io/JvcUs
<{^_^}> [nixpkgs] @FRidh merged pull request #78620 → pkcs11helper: 1.25.1 -> 1.26 → https://git.io/JvmPJ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « pkcs11helper: 1.25.1 -> 1.26 »: https://git.io/JvcUG
<{^_^}> [nixpkgs] @FRidh merged pull request #78619 → plata-theme: 0.9.1 -> 0.9.2 → https://git.io/Jvmiz
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « plata-theme: 0.9.1 -> 0.9.2 »: https://git.io/JvcUZ
<{^_^}> [nixpkgs] @FRidh merged pull request #78589 → ibus-engines.m17n: 1.4.1 -> 1.4.2 → https://git.io/JvmLP
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « ibus-engines.m17n: 1.4.1 -> 1.4.2 »: https://git.io/JvcUn
chiefgoat has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @FRidh merged pull request #78564 → amtk: 5.0.1 -> 5.0.2 → https://git.io/JvqbW
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « amtk: 5.0.1 -> 5.0.2 »: https://git.io/JvcUc
<{^_^}> [nixpkgs] @FRidh merged pull request #78563 → aws-checksums: 0.1.3 -> 0.1.5 → https://git.io/JvqFx
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « aws-checksums: 0.1.3 -> 0.1.5 »: https://git.io/JvcUC
<{^_^}> [nixpkgs] @nlewo merged pull request #79216 → telepresence: 0.101 -> 0.104 → https://git.io/JvGR8
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/JvcUl
<{^_^}> [nixpkgs] @FRidh merged pull request #78491 → asn2quickder: 1.2-6 -> 1.3.0 → https://git.io/Jvq69
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « asn2quickder: 1.2-6 -> 1.3.0 »: https://git.io/JvcU8
<{^_^}> [nixpkgs] @FRidh merged pull request #77904 → sickgear: 0.20.0 -> 0.21.5 → https://git.io/JvT2C
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « sickgear: 0.20.0 -> 0.21.5 »: https://git.io/JvcU4
kleisli has joined #nixos
ixxie has joined #nixos
<abcdef3248348384> on the topic of debuggin derivations I found this which might help me or others: https://discourse.nixos.org/t/one-pager-to-help-beginners-troubleshoot-derivations/4643
<{^_^}> [nixpkgs] @FRidh merged pull request #77118 → ibus-engines.typing-booster-unwrapped: 2.7.4 -> 2.7.5 → https://git.io/JejKR
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « ibus-engines.typing-booster-unwrapped: 2.7.4 -> 2.7.5 »: https://git.io/JvcU0
<{^_^}> [nixpkgs] @FRidh merged pull request #77067 → frostwire-bin: 6.7.4 -> 6.8.3 → https://git.io/Jejuw
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « frostwire-bin: 6.7.4 -> 6.8.3 »: https://git.io/JvcUE
chiefgoat has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #76424 → syslogng: 3.24.1 -> 3.25.1 → https://git.io/JeFAt
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « syslogng: 3.24.1 -> 3.25.1 »: https://git.io/JvcUu
<{^_^}> [nixpkgs] @FRidh merged pull request #76322 → librealsense: 2.29.0 -> 2.31.0 → https://git.io/JvcU2
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « librealsense: 2.29.0 -> 2.31.0 »: https://git.io/JvcUa
<{^_^}> [nixpkgs] @FRidh merged pull request #76266 → haproxy: 2.0.10 -> 2.1.2 → https://git.io/JvcUw
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « haproxy: 2.0.10 -> 2.1.2 »: https://git.io/JvcUr
<{^_^}> [nixpkgs] @FRidh merged pull request #75204 → bwidget: 1.9.13 -> 1.9.14 → https://git.io/JeSfJ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « bwidget: 1.9.13 -> 1.9.14 »: https://git.io/JvcUo
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @FRidh merged pull request #76210 → abcmidi: 2019.11.11 -> 2019.12.09 → https://git.io/JvcUK
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « abcmidi: 2019.11.11 -> 2019.12.09 »: https://git.io/JvcU6
<{^_^}> [nixpkgs] @FRidh merged pull request #78885 → wxSVG: 1.5.21 -> 1.5.22 → https://git.io/JvOX7
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « wxSVG: 1.5.21 -> 1.5.22 »: https://git.io/JvcUi
<{^_^}> [nixpkgs] @FRidh merged pull request #78863 → tqsl: 2.4.7 -> 2.5.1 → https://git.io/JvOKj
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « tqsl: 2.4.7 -> 2.5.1 »: https://git.io/JvcUP
<{^_^}> [nixpkgs] @FRidh merged pull request #78862 → wcslib: 6.4 -> 7.1 → https://git.io/JvOK4
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « wcslib: 6.4 -> 7.1 »: https://git.io/JvcUX
<{^_^}> [nixpkgs] @veprbl merged pull request #79597 → go: remove not any more used patch files → https://git.io/JvcJY
<{^_^}> [nixpkgs] @veprbl pushed commit from @Frostman to master « go: remove not any more used patch files (#79597) »: https://git.io/JvcUM
<{^_^}> [nixpkgs] @FRidh merged pull request #78851 → smtube: 19.6.0 -> 20.1.0 → https://git.io/JvOV6
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « smtube: 19.6.0 -> 20.1.0 »: https://git.io/JvcUD
sogatori has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #79592 → pulseeffects: 4.7.0 -> 4.7.1 → https://git.io/Jvcvu
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JvcU9
<{^_^}> [nixpkgs] @FRidh merged pull request #78541 → unetbootin: 675 -> 677 → https://git.io/JvqQD
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « unetbootin: 675 -> 677 »: https://git.io/JvcUH
dingenskirchen has quit [Remote host closed the connection]
dingenskirchen has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #78547 → xdelta: 3.0.11 -> 3.1.0 → https://git.io/Jvq76
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « xdelta: 3.0.11 -> 3.1.0 »: https://git.io/JvcU7
<{^_^}> [nixpkgs] @FRidh merged pull request #79240 → xbps: 0.57.1 -> 0.58 → https://git.io/JvG10
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « xbps: 0.57.1 -> 0.58 »: https://git.io/JvcU5
<{^_^}> [nixpkgs] @FRidh merged pull request #79236 → wesnoth: 1.14.9 -> 1.14.10 → https://git.io/JvGPs
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « wesnoth: 1.14.9 -> 1.14.10 »: https://git.io/JvcUd
<{^_^}> [nixpkgs] @FRidh merged pull request #79232 → sslmate: 1.7.0 -> 1.7.1 → https://git.io/JvGoU
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « sslmate: 1.7.0 -> 1.7.1 »: https://git.io/JvcUF
<{^_^}> [nixpkgs] @FRidh closed pull request #51839 → python: add geographiclib and update geopy → https://git.io/fpHHz
<{^_^}> [nixpkgs] @FRidh closed pull request #52884 → pythonPackages.apio: init at 0.4.0 → https://git.io/fhTmE
kloenk has joined #nixos
kloenk has quit [Client Quit]
<{^_^}> [nixpkgs] @FRidh closed pull request #54231 → pythonPackages.pythonparser: init at 1.3 → https://git.io/fh4QI
<{^_^}> [nixpkgs] @FRidh closed pull request #54234 → pythonPackages: sphinxcontrib-wavedrom: init at 2.0.0, wavedrom: init at 0.1 → https://git.io/fh47e
<{^_^}> [nixpkgs] @FRidh closed pull request #54907 → python3Packages.just-start: init at 2018-10-25 → https://git.io/fh1zU
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79602 → python27Packages.feedgen: 0.8.0 -> 0.9.0 → https://git.io/JvcUh
<{^_^}> [nixpkgs] @FRidh closed pull request #54952 → pythonPackages.coconut init at 1.4.0 → https://git.io/fhMaU
abcdef3248348384 has quit [Ping timeout: 260 seconds]
kloenk has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 6 commits to master: https://git.io/JvcTT
<{^_^}> [nixpkgs] @FRidh merged pull request #55016 → WIP: Init mayavi at 4.6.1 → https://git.io/fhyD5
<{^_^}> [nixos-hardware] @Mic92 merged pull request #138 → Add Lenovo ThinkPad L13 profile → https://git.io/Jexww
<{^_^}> [nixos-hardware] @Mic92 pushed 3 commits to master: https://git.io/JvcTk
<{^_^}> [nixpkgs] @FRidh closed pull request #55027 → WIP: social-auth-app-django: init at 3.1.0 → https://git.io/fhy7T
<{^_^}> [nixpkgs] @FRidh closed pull request #55032 → pythonPackages.django-proxy: init at 1.1.0 → https://git.io/fhy79
<{^_^}> [nixpkgs] @FRidh closed pull request #55034 → pythonPackages.bumpversion: init at 0.5.3 → https://git.io/fhy7F
<{^_^}> [nixpkgs] @zimbatm merged pull request #79565 → broot: 0.12.2 -> 0.13.0 → https://git.io/JvndG
<{^_^}> [nixpkgs] @zimbatm pushed commit from @marsam to master « broot: 0.12.2 -> 0.13.1 (#79565) »: https://git.io/JvcTL
<{^_^}> [nixpkgs] @FRidh closed pull request #55408 → pythonPackages.assimulo: init at 3.0 [WIP] [Help needed] → https://git.io/fhHJE
jakob_rs has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #79552 → metabase: 0.34.1 -> 0.34.2 → https://git.io/JvnHr
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « metabase: 0.34.1 -> 0.34.2 »: https://git.io/JvcTY
<{^_^}> [nixpkgs] @FRidh closed pull request #59258 → tahoe-lafs: 1.13.0 -> unstable-2019-04-08 → https://git.io/fjqk6
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #79595 → postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 → https://git.io/JvcfF
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 »: https://git.io/JvcTZ
<{^_^}> [nixpkgs] @FRidh merged pull request #63514 → pythonPackages.z3c_checkversions: init at 1.1 → https://git.io/fjVcd
<{^_^}> [nixpkgs] @FRidh pushed commit from @talkara to master « pythonPackages.z3c_checkversions: init at 1.1 »: https://git.io/JvcTc
<{^_^}> [nixpkgs] @FRidh closed pull request #63789 → ldh_client → https://git.io/fjrVU
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79603 → python27Packages.m3u8: 0.5.2 -> 0.5.4 → https://git.io/JvcTW
<{^_^}> [nixpkgs] @FRidh merged pull request #63853 → galario: init at 1.2.1 → https://git.io/fjoIh
<{^_^}> [nixpkgs] @FRidh pushed commit from @smaret to master « galario: init at 1.2.1 »: https://git.io/JvcTl
nexgen has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @FRidh closed pull request #70251 → twisted: 18.9.0 -> 19.7.0 → https://git.io/Jecf5
<{^_^}> [nixpkgs] @FRidh merged pull request #66675 → pythonPackages.furl → https://git.io/fjdGF
<{^_^}> [nixpkgs] @FRidh pushed 2 commits to master: https://git.io/JvcTB
is_null_ has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #67321 → pythonPackages.pyfcm: init at 1.4.7 → https://git.io/fjNWY
<{^_^}> [nixpkgs] @FRidh pushed commit from @ldelelis to master « pythonPackages.pyfcm: init at 1.4.7 (#67321) »: https://git.io/JvcTR
<{^_^}> [nixpkgs] @FRidh merged pull request #65875 → mono: remove outdated workaround; pythonPackages.pythonnet: 2.3.0 -> 2.4.0 → https://git.io/fjHI9
<{^_^}> [nixpkgs] @FRidh pushed 2 commits to master: https://git.io/JvcT0
<{^_^}> [nixpkgs] @FRidh merged pull request #66350 → pythonPackages.django-anymail: init at 6.1.0 → https://git.io/fj7Lp
<{^_^}> [nixpkgs] @FRidh pushed commit from @doom3wasagoodgame to master « pythonPackages.django-anymail: init at 6.1.0 »: https://git.io/JvcTE
is_null has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @FRidh merged pull request #67339 → pythonPackages.robotframework-databaselibrary: init at 1.2.4 → https://git.io/fjNuA
<{^_^}> [nixpkgs] @FRidh pushed commit from @talkara to master « pythonPackages.robotframework-databaselibrary: init at 1.2.4 (#67339) »: https://git.io/JvcTu
<{^_^}> [nixpkgs] @FRidh merged pull request #67620 → pythonPackages.iapws: init at 1.4 → https://git.io/fjxIP
<{^_^}> [nixpkgs] @FRidh pushed commit from @dawidsowa to master « pythonPackages.iapws: init at 1.4 »: https://git.io/JvcTg
cfricke has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #67788 → pythonPackages.sfepy: init at 2019.2 → https://git.io/fjxbY
<{^_^}> [nixpkgs] @FRidh pushed commit from @wd15 to master « pythonPackages.sfepy: init at 2019.2 »: https://git.io/JvcTa
<{^_^}> [nixpkgs] @gebner merged pull request #79601 → iprover: 2018_Jul_24_11h -> 3.1 → https://git.io/JvcUO
<{^_^}> [nixpkgs] @gebner pushed 2 commits to master: https://git.io/JvcTV
cfricke has quit [Client Quit]
tertl3 has quit [Quit: Connection closed for inactivity]
Sigma has joined #nixos
<{^_^}> [nixpkgs] @FRidh closed pull request #71141 → dask: 2.2.0 -> 2.5.2, distributed: 2.4.0 -> 2.5.2, dask-ml: 0.11.0 -> 1.0.0, dask-jobqueue: 0.4.1 -> 0.7.0 → https://git.io/Je82M
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79604 → python27Packages.geopandas: 0.6.2 -> 0.6.3 → https://git.io/JvcTX
<{^_^}> [nixpkgs] @FRidh merged pull request #79604 → python27Packages.geopandas: 0.6.2 -> 0.6.3 → https://git.io/JvcTX
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.geopandas: 0.6.2 -> 0.6.3 »: https://git.io/JvcTD
u0_a121 has quit [Remote host closed the connection]
u0_a121 has joined #nixos
<FRidh2> That's enough PR's again, time for breakfast :)
opthomasprime has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
chagra_ has quit [Ping timeout: 256 seconds]
lovesegfault has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79605 → python27Packages.ijson: 2.5.1 -> 2.6.1 → https://git.io/JvckL
knupfer has joined #nixos
chagra_ has joined #nixos
<etu> <3 FRidh
<{^_^}> FRidh's karma got increased to 17
<{^_^}> [nixpkgs] @k0ral opened pull request #79606 → clipman: 1.2.0 -> c57453be9 → https://git.io/Jvckn
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79607 → python37Packages.jupyterlab: 1.2.5 -> 1.2.6 → https://git.io/Jvckc
fendor has joined #nixos
wavirc22 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @FRidh merged pull request #79607 → python37Packages.jupyterlab: 1.2.5 -> 1.2.6 → https://git.io/Jvckc
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.jupyterlab: 1.2.5 -> 1.2.6 »: https://git.io/JvckW
Sigma has quit [Ping timeout: 256 seconds]
wavirc22 has joined #nixos
Sigma has joined #nixos
<{^_^}> [nixpkgs] @chamatht opened pull request #79608 → calibre: add missing dependency → https://git.io/Jvck2
<{^_^}> [nixpkgs] @FRidh pushed 59 commits to staging-next: https://git.io/Jvckw
chagra_ has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @pbogdan opened pull request #79609 → Remove pbogdan from maintainers. → https://git.io/Jvcko
Sigma has quit [Ping timeout: 240 seconds]
ixxie has quit [Ping timeout: 260 seconds]
Maxdaman1us has joined #nixos
Maxdamantus has quit [Ping timeout: 260 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
<genesis> i get an answer of the quickbms authors "There is no plan for versioned filenames because I prefer to give
<genesis> people a link pointing ever to the most updated version." i'd like to know if there is a common location to store tarball ?
<{^_^}> [nixpkgs] @vcunat pushed 5 commits to master: https://git.io/Jvckx
<{^_^}> [nixpkgs] @vcunat merged pull request #79609 → Remove pbogdan from maintainers. → https://git.io/Jvcko
__monty__ has joined #nixos
ciil has quit [Quit: Lost terminal]
thc202 has joined #nixos
jgeerds has joined #nixos
u0_a121 has joined #nixos
nexgen has joined #nixos
opthomasprime has left #nixos [#nixos]
<{^_^}> [nixpkgs] @ciil opened pull request #79611 → atlassian-jira: 8.6.0 -> 8.7.0 → https://git.io/JvcI8
tilcreator has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79612 → python27Packages.azure-mgmt-resource: 7.0.0 -> 8.0.1 → https://git.io/JvcIz
u0_a121 has quit [Read error: Connection reset by peer]
tilcreator has joined #nixos
<{^_^}> [nixpkgs] @bjornfor merged pull request #79582 → osinfo-db: 20191125 -> 20200203 → https://git.io/Jvnhe
<{^_^}> [nixpkgs] @bjornfor pushed commit from @r-ryantm to master « osinfo-db: 20191125 -> 20200203 »: https://git.io/JvcIP
ng0_ has joined #nixos
jb55 has quit [Remote host closed the connection]
oida has quit [Remote host closed the connection]
andreas303 has quit [Read error: Connection reset by peer]
gxt has quit [Read error: Connection reset by peer]
KeiraT has quit [Read error: Connection reset by peer]
xelxebar has quit [Read error: Connection reset by peer]
cartwright has quit [Read error: Connection reset by peer]
klntsky has quit [Write error: Broken pipe]
ng0 has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @qknight merged pull request #78560 → hll2340dw brother: added driver to cups → https://git.io/JvqF1
<{^_^}> [nixpkgs] @qknight pushed to master « hll2340dw brother: added driver to cups (#78560) »: https://git.io/JvcIy
jb55 has joined #nixos
xelxebar has joined #nixos
gxt has joined #nixos
magnetophon has joined #nixos
KeiraT has joined #nixos
alex`` has quit [Ping timeout: 272 seconds]
alex`` has joined #nixos
chagra has joined #nixos
<habbah> is there an app used to generate the documentation for nixpkgs?
cartwright has joined #nixos
<habbah> I don't imagine people write the xml by hand, but maybe I'm wrong
xkapastel has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79613 → python27Packages.jieba: 0.40 -> 0.42.1 → https://git.io/JvcLU
knupfer has quit [Ping timeout: 240 seconds]
ixxie has joined #nixos
u0_a121 has joined #nixos
klntsky has joined #nixos
oida has joined #nixos
andreas303 has joined #nixos
jakob_rs has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79614 → python27Packages.kconfiglib: 13.7.0 -> 14.1.0 → https://git.io/JvcLB
<__monty__> habbah: You are wrong, yes. The main docbook proponents have an emacs mode to make it palatable.
jakob_rs has quit [Quit: leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79615 → python27Packages.django-storages: 1.8 -> 1.9.1 → https://git.io/JvcLg
<{^_^}> [nixpkgs] @7c6f434c merged pull request #79318 → ioping: 1.1 -> 1.2 → https://git.io/JvZ82
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JvcLw
nexgen has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @7c6f434c merged pull request #67376 → nixos: zsh: add more helpful documentation into generated files → https://git.io/fjNy5
<{^_^}> [nixpkgs] @7c6f434c pushed 3 commits to master: https://git.io/JvcL9
jakob_rs has joined #nixos
<jakob_rs> How do I apply patches in a different directory than sourceRoot?
<{^_^}> [nixpkgs] @7c6f434c merged pull request #79560 → octave: 5.1.0 -> 5.2.0 → https://git.io/Jvn7H
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JvcLd
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
<{^_^}> [nixpkgs] @marsam opened pull request #79616 → nix: fix build → https://git.io/Jvcte
chagra has quit [Ping timeout: 260 seconds]
jakob_rs has left #nixos [#nixos]
<{^_^}> [nixpkgs] @FRidh merged pull request #79603 → python27Packages.m3u8: 0.5.2 -> 0.5.4 → https://git.io/JvcTW
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #79617 → hpmyroom: 11.1.0.0508 -> 12.0.0.0220 → https://git.io/JvctI
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.m3u8: 0.5.2 -> 0.5.4 »: https://git.io/JvctL
<{^_^}> [nixpkgs] @FRidh merged pull request #79546 → lldpd: 1.0.4 -> 1.0.5 → https://git.io/JvnS4
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « lldpd: 1.0.4 -> 1.0.5 »: https://git.io/Jvctm
<{^_^}> [nixpkgs] @marsam merged pull request #79584 → parallel: 20191222 -> 20200122 → https://git.io/JvnhT
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvctB
andreas303 has quit [Remote host closed the connection]
u0_a121 has quit [Read error: Connection reset by peer]
andreas303 has joined #nixos
chloekek has joined #nixos
iri has joined #nixos
iri is now known as iri`
iri` is now known as iri``
<iri``> Hi - I'm just following the instructions in https://nixos.org/releases/nix/nix-2.1.3/manual/ (Chapter 16. Remote Builds) -- and it says that for `nix ping-store --store ssh://mac` to work, "then you need to ensure that the PATH of non-interactive login shells contains Nix". Unfortunately it doesn't say how to achieve this, and searching around the
<iri``> internet seems to think you can't do it without setting BASH_ENV or modifying /etc/environment, which I don't want to do. Is there another solution?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79618 → python27Packages.geopy: 1.20.0 -> 1.21.0 → https://git.io/Jvcta
<iri``> I guess to set BASH_ENV I have to tweak the server's SSH `AcceptEnv` and use my local ssh config to send that variable to load my `.profile` - I can't typically do this on some machines I want to use because I can't modify the ssh configuration.
<iri``> Likewise, I can't modify /etc/environment (and I'm not sure I would want to if I could, since it would have a global impact)
aveltras has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79619 → python27Packages.Nuitka: 0.6.6 -> 0.6.7 → https://git.io/Jvct6
<chloekek> Sometimes when I open my laptop lid, Firefox says "Unable to connect" when reloading or opening any page. I have to restart Firefox and lose all my windows and tabs. Other appliactions connect to the Internet just fine. Did anybody else run into this on NixOS?
bennofs has joined #nixos
u0_a121 has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
evelyn has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @lheckemann merged pull request #77635 → bluez-alsa: 1.4.0 -> 2.0.0 → https://git.io/JvJWd
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to master: https://git.io/Jvcth
<{^_^}> [nixpkgs] @lheckemann merged pull request #79028 → rtptools: init at 1.22 → https://git.io/Jv3Nn
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to master: https://git.io/Jvctj
<__monty__> ,locate bin rga
<{^_^}> Found in packages: ripgrep-all
<{^_^}> [nixpkgs] @lheckemann closed pull request #59858 → Fetcher improvements → https://git.io/fjOsD
<__monty__> chloekek: You can't reopen all tabs and windows from last session?
<chloekek> __monty__: Oh that seems to work, I thought it would do that automatically.
<__monty__> There may be a setting for that.
<__monty__> I know it offers to do so if you make ff crash.
<DigitalKiwi> __monty__: tell me more about the docbook
<chloekek> __monty__: Another problem I had with Firefox was it sometimes segfaulting on Discord, but I don’t recall it offering to restore the session. I cannot reproduce it anymore since I stopped running unfree JS.
m15k has joined #nixos
<__monty__> chloekek: Sounds like a feature, not a bug ; )
<m15k> Is there a string function which removes trailing spaces on each line?
<chloekek> __monty__: It’s a rather brutal form of spying protection but it does the job. :’)
<{^_^}> [nixpkgs] @FRidh merged pull request #79619 → python27Packages.Nuitka: 0.6.6 -> 0.6.7 → https://git.io/Jvct6
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.Nuitka: 0.6.6 -> 0.6.7 »: https://git.io/Jvcql
iri`` has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #79620 → chipsec: 1.4.1 -> 1.4.7 → https://git.io/Jvcqu
<{^_^}> [nixpkgs] @FRidh merged pull request #79580 → opera: 66.0.3515.36 -> 66.0.3515.72 → https://git.io/Jvnp1
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « opera: 66.0.3515.36 -> 66.0.3515.72 »: https://git.io/Jvcqg
<{^_^}> [nixpkgs] @FRidh merged pull request #79574 → kdeApplications.okteta: 0.26.2 -> 0.26.3 → https://git.io/JvnbS
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « kdeApplications.okteta: 0.26.2 -> 0.26.3 »: https://git.io/JvcqV
Thra11 has joined #nixos
<{^_^}> [nixpkgs] @aanderse merged pull request #79482 → unixODBCDrivers.msodbcsql17: 17.4.1.1 -> 17.5.1.1 → https://git.io/JvnBG
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JvcqM
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #79605 → python27Packages.ijson: 2.5.1 -> 2.6.1 → https://git.io/JvckL
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JvcqH
phirsch has quit [Ping timeout: 256 seconds]
u0_a121 has quit [Read error: Connection reset by peer]
tux has joined #nixos
tux has quit [Remote host closed the connection]
bennofs has quit [Ping timeout: 272 seconds]
chagra has joined #nixos
sondr3 has joined #nixos
Sigma has joined #nixos
u0_a121 has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
Sigma has quit [Ping timeout: 256 seconds]
domogled has joined #nixos
opthomasprime has joined #nixos
acarrico has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @JohnAZoidberg closed pull request #72918 → chipsec: 1.4.1 -> 1.4.3 → https://git.io/Jeaug
knupfer has joined #nixos
vykook has joined #nixos
m15k has quit [Ping timeout: 260 seconds]
o1lo01ol1o has joined #nixos
sondr3 has quit [Quit: WeeChat 2.7]
sondr3 has joined #nixos
<{^_^}> [nixpkgs] @aanderse merged pull request #79474 → dolphinEmuMaster: 5.0-11109 -> 5.0-11608 → https://git.io/JvnWM
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JvcYJ
knupfer has quit [Read error: Connection reset by peer]
cfricke has joined #nixos
Chiliparrot has joined #nixos
knupfer has joined #nixos
nikola_i has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #79554 → modemmanager: 1.12.2 -> 1.12.4 → https://git.io/JvnQl
<{^_^}> [nixpkgs] @flokli pushed 2 commits to staging: https://git.io/JvcYY
domogled has quit [Ping timeout: 272 seconds]
domogled has joined #nixos
domogled has quit [Ping timeout: 260 seconds]
Rusty1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79621 → python37Packages.pikepdf: 1.8.2 -> 1.10.0 → https://git.io/JvcY8
u0_a121 has joined #nixos
cfricke has quit [Ping timeout: 260 seconds]
u0_a121 has quit [Read error: Connection reset by peer]
jmeredith has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/eee784a1bb6 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @ryantm merged pull request #79479 → workcraft: 3.1.9 -> 3.2.5 → https://git.io/Jvnlo
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvcYd
orivej has quit [Ping timeout: 260 seconds]
tilpner has joined #nixos
AMZA has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79622 → python27Packages.python-dotenv: 0.10.4 -> 0.10.5 → https://git.io/JvcOf
AMZA has left #nixos [#nixos]
<genesis> fpletz : do you plan to add njs to nginx modules ?
<{^_^}> [nixpkgs] @worldofpeace merged pull request #79585 → scribusUnstable: Fix build with Poppler 0.84 → https://git.io/Jvnhk
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvcOZ
<m1cr0m4n> aanderse: The le dns-01 tests are done :)
<m1cr0m4n> Is there any way we can confirm that the acme.nix tests are actually running on Hydra? I'm very suspicious that my changes should've broke that test originally due to enforcing the email + acceptTerms
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79623 → python27Packages.rq: 1.1.0 -> 1.2.2 → https://git.io/JvcOW
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79624 → python37Packages.pydantic: 1.3 -> 1.4 → https://git.io/JvcOB
o1lo01ol1o has quit [Remote host closed the connection]
<m1cr0m4n> Anyone able to point me at the release notes file? Lots of people saying I should update it in my PR
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79625 → python27Packages.phonenumbers: 8.11.2 -> 8.11.3 → https://git.io/JvcOz
kloenk has quit [Ping timeout: 240 seconds]
opthomasprime has left #nixos [#nixos]
<genesis> about acme, i use enableACME = true; but i still get a "unknown CA"
<genesis> don't find a solution yet.
drakonis has joined #nixos
<aanderse> m1cr0m4n++
<{^_^}> m1cr0m4n's karma got increased to 1
<aanderse> m1cr0m4n: nixos/doc/manual/release-notes/
<aanderse> rl-2003.xml
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79626 → python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 → https://git.io/JvcOy
u0_a121 has joined #nixos
drakonis has quit [Quit: WeeChat 2.6]
gxt has quit [Remote host closed the connection]
gxt has joined #nixos
ddellacosta has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/41597810a1d (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<m1cr0m4n> aanderse: ty
<{^_^}> [nixpkgs] @worldofpeace merged pull request #79616 → nix: fix build → https://git.io/Jvcte
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to master: https://git.io/Jvc3I
detran has quit [Ping timeout: 256 seconds]
detran has joined #nixos
spacefrogg_ has joined #nixos
tilcreator has quit [Ping timeout: 256 seconds]
spacefrogg has quit [Ping timeout: 256 seconds]
andymandias has quit [Ping timeout: 256 seconds]
andymandias has joined #nixos
Mark_ has quit [Ping timeout: 256 seconds]
orbekk has quit [Ping timeout: 256 seconds]
tilcreator has joined #nixos
orbekk has joined #nixos
ng0 has joined #nixos
bhipple has joined #nixos
Church- has quit [Ping timeout: 256 seconds]
emacsomancer has quit [Ping timeout: 256 seconds]
emacsoma1 has joined #nixos
nikola_i has quit [Ping timeout: 256 seconds]
ng0_ has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79627 → python37Packages.pylint-django: 2.0.12 -> 2.0.13 → https://git.io/Jvc3z
<{^_^}> [nixpkgs] @FRidh merged pull request #79293 → Staging next (with glibc 2.30) → https://git.io/JvZqF
<{^_^}> [nixpkgs] @FRidh pushed 223 commits to master: https://git.io/Jvc3g
<{^_^}> [nixpkgs] @FRidh pushed 63 commits to staging-next: https://git.io/Jvc3V
<{^_^}> [nixpkgs] @FRidh opened pull request #79628 → Staging next → https://git.io/Jvc3o
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79629 → python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 → https://git.io/Jvc3i
ddellacosta has quit [Ping timeout: 240 seconds]
<gentauro> anybody know where to disable screen turning black on inactivity?
<gentauro> I don't seem to find where to do it in `/etc/nixos/configuration.nix`
<gentauro> (a bit annoying when streaming stuff)
<gentauro> :)
<{^_^}> [nixpkgs] @FRidh merged pull request #79629 → python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 → https://git.io/Jvc3i
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 »: https://git.io/Jvc3X
domogled has joined #nixos
<srk> gentauro: xset -dpms
<{^_^}> [nixpkgs] @FRidh merged pull request #79622 → python27Packages.python-dotenv: 0.10.4 -> 0.10.5 → https://git.io/JvcOf
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.python-dotenv: 0.10.4 -> 0.10.5 »: https://git.io/Jvc3y
<{^_^}> [nixpkgs] @FRidh merged pull request #79625 → python27Packages.phonenumbers: 8.11.2 -> 8.11.3 → https://git.io/JvcOz
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.phonenumbers: 8.11.2 -> 8.11.3 »: https://git.io/Jvc3S
<srk> gentauro: alternatively via xscreensaver-command -prefs
<srk> (more persistant I guess)
<gentauro> srk: i removed `xscreensaver` cos it kept telling me it's to old
<gentauro> so I enabled `services.xserver.xautolock.enable = true;` which installs `xlock`
<{^_^}> [nixpkgs] @FRidh merged pull request #79598 → python37Packages.cmd2: 0.9.23 -> 0.9.25 → https://git.io/JvcJR
<srk> there's probably an equivalent option for xorg.conf
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.cmd2: 0.9.23 -> 0.9.25 »: https://git.io/Jvc3Q
<{^_^}> [nixpkgs] @FRidh merged pull request #79583 → pcb: 4.2.1 -> 4.2.2 → https://git.io/JvnhJ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « pcb: 4.2.1 -> 4.2.2 »: https://git.io/Jvc37
<gentauro> srk: can this be set on the `/etc/nixos/configuration.nix`?
<{^_^}> [nixpkgs] @FRidh merged pull request #79618 → python27Packages.geopy: 1.20.0 -> 1.21.0 → https://git.io/Jvcta
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.geopy: 1.20.0 -> 1.21.0 »: https://git.io/Jvc35
<srk> gentauro: yes, "there's probably an equivalent option for xorg.conf" <- to xset -dpms
<{^_^}> [nixpkgs] @FRidh merged pull request #79600 → python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 → https://git.io/JvcUI
ng0 has quit [Quit: leaving]
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 »: https://git.io/Jvc3F
<gentauro> like this `services.xserver.displayManager.sessionCommands = '' xset -dpms '';`?
<{^_^}> [nixpkgs] @FRidh merged pull request #79547 → libdap: 3.20.4 -> 3.20.5 → https://git.io/JvnSX
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « libdap: 3.20.4 -> 3.20.5 »: https://git.io/Jvc3b
<{^_^}> [nixpkgs] @FRidh merged pull request #79543 → libsolv: 0.7.10 -> 0.7.11 → https://git.io/JvnyV
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « libsolv: 0.7.10 -> 0.7.11 »: https://git.io/Jvc3N
<srk> could work, can't googleit as I just killed firefox /o\
<srk> had to reclaim some mem
<{^_^}> [nixpkgs] @FRidh merged pull request #79538 → kid3: 3.8.1 -> 3.8.2 → https://git.io/Jvn1K
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « kid3: 3.8.1 -> 3.8.2 »: https://git.io/Jvc3A
ng0 has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #79448 → kcli: 1.8.2 -> 1.8.3 → https://git.io/JvnID
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « kcli: 1.8.2 -> 1.8.3 »: https://git.io/Jvc3p
<{^_^}> [nixpkgs] @FRidh merged pull request #79475 → tribler: 7.4.0-exp1 -> 7.4.1 → https://git.io/JvnWd
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « tribler: 7.4.0-exp1 -> 7.4.1 »: https://git.io/Jvc3j
<srk> gentauro: man xorg.conf
<{^_^}> [nixpkgs] @FRidh merged pull request #79357 → syncthingtray: 0.10.5 -> 0.10.6 → https://git.io/JvZrC
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « syncthingtray: 0.10.5 -> 0.10.6 »: https://git.io/Jvcse
<srk> look for DPMS or something like Option "BlankTime" "time"
<{^_^}> [nixpkgs] @FRidh merged pull request #79407 → babeltrace: 1.5.7 -> 1.5.8 → https://git.io/JvZxL
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « babeltrace: 1.5.7 -> 1.5.8 »: https://git.io/Jvcsv
<{^_^}> [nixpkgs] @FRidh merged pull request #78993 → libgpiod: 1.4.1 -> 1.4.2 → https://git.io/Jv3oh
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « libgpiod: 1.4.1 -> 1.4.2 »: https://git.io/Jvcsf
<{^_^}> [nixpkgs] @FRidh merged pull request #76304 → libtirpc: 1.1.4 -> 1.2.5 → https://git.io/JvcsU
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « libtirpc: 1.1.4 -> 1.2.5 »: https://git.io/JvcsT
<gentauro> srk: cool
<{^_^}> [nixpkgs] @FRidh closed pull request #74681 → txr: 225 -> 228 → https://git.io/Je1z1
u0_a121 has quit [Read error: Connection reset by peer]
jco has joined #nixos
<jco> Hello!
<gentauro> seems a bit `too much` to do this :S
<{^_^}> [nixpkgs] @FRidh merged pull request #79296 → Lexicon 3.3.17 and dependencies → https://git.io/JvZm1
<{^_^}> [nixpkgs] @FRidh pushed 5 commits to master: https://git.io/JvcsI
domogled has quit [Quit: domogled]
domogled has joined #nixos
<{^_^}> [nixpkgs] @FRidh closed pull request #74608 → python38Packages.spyder-kernels: 0.5.2 -> 1.0.1 → https://git.io/Je1sV
<srk> gentauro: you only need few of that lines, xset -dpms is certainly shorter tho :D
<jco> but when I lauch the app I get the error that gtk3 is not installed
Church- has joined #nixos
<gentauro> srk: `Energy Star features off` I guess that's more than just the screen ...
<jco> I added the gtk3 dependicy in the propagatedBuildInputs, so it should be available at runtime
<jco> *dependency
<srk> gentauro: that should be just DPMS / blanking
<{^_^}> [nixpkgs] @FRidh merged pull request #79627 → python37Packages.pylint-django: 2.0.12 -> 2.0.13 → https://git.io/Jvc3z
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.pylint-django: 2.0.12 -> 2.0.13 »: https://git.io/Jvcst
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
knupfer has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @FRidh merged pull request #79277 → pythonPackages.nbconflux: init at 0.7.0 → https://git.io/JvZeX
<{^_^}> [nixpkgs] @FRidh pushed commit from Farkas, Arnold to master « pythonPackages.nbconflux: init at 0.7.0 »: https://git.io/Jvcsq
<{^_^}> [nixpkgs] @FRidh merged pull request #79626 → python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 → https://git.io/JvcOy
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 »: https://git.io/JvcsY
gnidorah has joined #nixos
<sondr3> is it possible to define packages that should be available in GHC systemwide in different files? I.e. I want xmobar to be available, but can I update the `ghcWithPackages` derivation from my xmobar.nix file instead of haskell.nix?
<{^_^}> [nixpkgs] @FRidh merged pull request #79279 → pythonPackages.flower: init at 0.9.3 → https://git.io/JvZeH
<{^_^}> [nixpkgs] @FRidh pushed commit from Farkas, Arnold to master « pythonPackages.flower: init at 0.9.3 »: https://git.io/Jvcs3
<{^_^}> #78312 (by gnidorah, 2 weeks ago, open): openmw-tes3mp: fix build
ixxie has quit [Ping timeout: 272 seconds]
<simpson> ,prs
<simpson> ,pr
<{^_^}> 0. Sorry. 1. If you complain about PR being in limbo, always provide a number («I have an unmerged PR (#23924)…»), bot will print PR title and it might bring you an impulse-merge. 2. Please look up who commits similar work and ping these people (or request-review), keeping up with all the PRs is not really possible.
<simpson> gnidorah: I've been following along, and I think at this point we need to find *specific people* who can merge this.
is_null_ has quit [Ping timeout: 260 seconds]
is_null has joined #nixos
detran has quit [Ping timeout: 272 seconds]
jb55 has quit [Ping timeout: 240 seconds]
<flokli> m1cr0m4n: just reviewed your acme PR. Reach out if you want to spend some sync time on it :-)
<edef> hmm. getting a bit annoyed with how our systemd stuff works
<{^_^}> #77578 (by m1cr0man, 3 weeks ago, open): Replace simp-le with lego and support DNS-01 challenge
<flokli> edef: can you elaborate?
domogled has quit [Ping timeout: 268 seconds]
<edef> `systemd.services."serial-getty@ttyS0".enable = mkForce true` *appears* to work
<flokli> huh?
<flokli> that shouldn't be necessary
<edef> the headless profile disables it
<edef> i re-enable it with that mkForce
<edef> this appears to work, but it actually drops in a unit file that blanks out most of the normal systemd settings, including the restart setting
<edef> fairly sure we should never be generating anything but drop-ins for template units
<flokli> I'm not sure if our code properly handles upstream-provided template units at all
<edef> it fairly definitely doesn't
<edef> i'm tempted to just shovel headless.nix into disabledModules for now
<edef> (and copy-paste most of the rest of it)
<flokli> why would one want to disable these gettys in first place?
<edef> this is the headless profile, which for some reason assumes serial console is useless
<flokli> I mean, I don't see the point of this module
<edef> which is included by the Google Compute Engine profile
<{^_^}> [nixpkgs] @shazow opened pull request #79630 → dwarf-fortress-packages.dwarf-fortress_0_47_02: init → https://git.io/JvcsK
<{^_^}> [nixpkgs] @FRidh merged pull request #78312 → openmw-tes3mp: fix build → https://git.io/JvLS4
<{^_^}> [nixpkgs] @FRidh pushed commit from @gnidorah to master « openmw-tes3mp: fix build »: https://git.io/Jvcsi
<FRidh2> gnidorah: now i have this morrowind tune in my head again
<gnidorah> FRidh2: thank you :D
<{^_^}> [nixpkgs] @bhipple opened pull request #79631 → doc: consistent formatting on python manual section → https://git.io/JvcsX
<flokli> edef: I mean, we might shave a minimal bit of the closure by not having to shipping the splash image
<edef> disabling VESA at boot and disabling local ttys seems reasonable
<flokli> well, on GCP, you still can see logs sent over serial
<edef> i wish we didn't enable udisks by default, it's fairly massive and serves no purpose on anything but desktops
<edef> flokli: not just that
<edef> flokli: you can have full, interactive serial
<m1cr0m4n> flokli: Replied to your comments there
bennofs has joined #nixos
<edef> flokli: hence why i override the serial getty unit back on
<flokli> yeah
<flokli> so I don't think disabling gettys makes sense
<flokli> at least not by default in the GCP images
<flokli> especially, if re-enabling breaks it alltogether ;-)
MmeQuignon has joined #nixos
<flokli> if your machine doesn't work, authentication doesn't work, … actually being able to serial in might be a nice property
<flokli> IIRC, systemd starts gettys on all proper terminals. So if you boot a machine without ANY serials, it shouldn't try to spawn them
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79632 → python27Packages.spotipy: 2.6.1 -> 2.7.1 → https://git.io/JvcsD
<flokli> so I don't really see the point in explicitly disabling it
<{^_^}> [nixpkgs] @rycee pushed to master « jwt-cli: 2.5.1 -> 2.5.2 »: https://git.io/Jvcsx
<{^_^}> [nixpkgs] @ryantm merged pull request #79587 → palemoon: 28.8.1 -> 28.8.2.1 → https://git.io/Jvnj3
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jvcsj
u0_a121 has joined #nixos
bennofs has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
bennofs has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
KeiraT has quit [Quit: KeiraT]
KeiraT has joined #nixos
bennofs has quit [Ping timeout: 272 seconds]
Supersonic has quit [Ping timeout: 240 seconds]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
u0_a121 has joined #nixos
<edef> < flokli> especially, if re-enabling breaks it alltogether ;-)
<edef> flokli: not quite — it works *once*
<edef> flokli: it's almost more hazardous than the alternative
jco has quit [Quit: WeeChat 2.7]
<mikky> how do I propagate nixpkgs-overlays to declarative nixos containers? i.e. I have something like "nixpkgs.overlays = [ ... ]" on the host which works on the host but is not "active" in the guest container
<Miyu-saki> Anyone else use `steam-run` to run random binaries when they're too tired to use patchelf?
<Miyu-saki> Or just download Windows ones
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #79633 → uw-ttyp0: split outputs in out and otb → https://git.io/JvcG8
<flokli> m1cr0m4n: sorry, github borked my comments, and didn't put it in threads.
jb55 has joined #nixos
<flokli> seems to be due to the push that happened in between, I don't know
<flokli> or it did?
<srk> mikky: set the same nixpkgs.overlays in container config?
<mikky> srk: besides that? :) I'm looking for a way to have that overlay accessible in all the containers
<mikky> something like `defaults =` in nixops
<{^_^}> [nixpkgs] @JeffLabonte opened pull request #79634 → Upgrade brave 1.1.23 to 1.3.113 → https://git.io/JvcGB
Maxdaman1us has quit [Ping timeout: 260 seconds]
Maxdamantus has joined #nixos
<srk> mikky: move it to some file and use imports :) not sure if there's better way, maybe overriding nixpkgs before it builds the container
<mikky> srk: it actually is in a file and the [...] above is [ import ... ] but that doesn't solve my problem of having the overlays set per-container in the first place
<mikky> I'd prefer not to override nixpkgs
<mikky> but I guess per-container config will have to do for now
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79635 → python27Packages.persim: 0.1.1 -> 0.1.2 → https://git.io/JvcGg
MmeQuignon has quit [Ping timeout: 272 seconds]
cole-h has joined #nixos
u0_a121 has quit [Read error: Connection reset by peer]
nadley has quit [Remote host closed the connection]
nadley has joined #nixos
kloenk has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79636 → python27Packages.augeas: 1.0.3 -> 1.1.0 → https://git.io/JvcGX
growpotkin has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #79614 → python27Packages.kconfiglib: 13.7.0 -> 14.1.0 → https://git.io/JvcLB
<{^_^}> [nixpkgs] @teto pushed commit from @r-ryantm to master « python27Packages.kconfiglib: 13.7.0 -> 14.1.0 »: https://git.io/JvcGD
mlen has quit [Quit: WeeChat 2.6]
mlen has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #79638 → clearlyU: split outputs in out and otb → https://git.io/JvcZT
knupfer has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #79513 → [19.09] go_1_13: 1.13.1 -> 1.13.7, go_1_12: 1.12.9 -> 1.12.16 (backport) → https://git.io/JvnwB
<{^_^}> [nixpkgs] @kalbasit pushed 12 commits to release-19.09: https://git.io/JvcZC
opthomasprime has joined #nixos
opthomasprime has quit [Remote host closed the connection]
dm9 has joined #nixos
mvnetbiz_ has joined #nixos
u0_a121 has joined #nixos
<{^_^}> [nixpkgs] @risicle opened pull request #79639 → libexif: add patch for CVE-2019-9278 → https://git.io/JvcZM
kloenk has quit [Read error: Connection reset by peer]
Chiliparrot has joined #nixos
knupfer has quit [Quit: knupfer]
u0_a121 has quit [Read error: Connection reset by peer]
knupfer has joined #nixos
kloenk has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79640 → python27Packages.simplekml: 1.3.1 -> 1.3.3 → https://git.io/Jvcnv
aveltras has quit [Quit: Connection closed for inactivity]
sb0 has joined #nixos
o1lo01ol1o has joined #nixos
gustavderdrache has joined #nixos
<mudri> Remind me: where can I find the list of commits corresponding to updates of the nixos-unstable channel?
kloenk has quit [Ping timeout: 260 seconds]
o1lo01ol1o has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #79641 → creep: split outputs in out and otb → https://git.io/JvcnL
knupfer has quit [Quit: knupfer]
andi- has quit [Quit: WeeChat 2.6]
andi- has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « gitRepo: 1.13.9.3 -> 1.13.9.4 »: https://git.io/Jvcnn
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79642 → python27Packages.pycollada: 0.7 -> 0.7.1 → https://git.io/Jvcnc
kloenk has joined #nixos
samrose has joined #nixos
justanotheruser has quit [Ping timeout: 260 seconds]
turona has quit [Quit: ...]
<{^_^}> [nixpkgs] @lsix merged pull request #79615 → python27Packages.django-storages: 1.8 -> 1.9.1 → https://git.io/JvcLg
<{^_^}> [nixpkgs] @lsix pushed 2 commits to master: https://git.io/JvcnR
<{^_^}> [nixpkgs] @FRidh merged pull request #79639 → libexif: add patch for CVE-2019-9278 → https://git.io/JvcZM
<{^_^}> [nixpkgs] @FRidh pushed commit from @risicle to master « libexif: add patch for CVE-2019-9278 »: https://git.io/JvcnE
<infinisil> mudri: https://channels.nix.gsc.io/
<{^_^}> [nixpkgs] @lsix opened pull request #79643 → octaveHg: drop → https://git.io/JvcnV
justanotheruser has joined #nixos
<mudri> Thanks! :-)
<{^_^}> [nixpkgs] @FRidh merged pull request #79643 → octaveHg: drop → https://git.io/JvcnV
<{^_^}> [nixpkgs] @FRidh pushed commit from @lsix to master « octaveHg: drop »: https://git.io/Jvcnw
<qqlq> Are there any people here who have multiple encrypted zfs pools that are unlocked at boot time?
turona has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #79640 → python27Packages.simplekml: 1.3.1 -> 1.3.3 → https://git.io/Jvcnv
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.simplekml: 1.3.1 -> 1.3.3 »: https://git.io/Jvcno
<Thra11> Is there a function like `map`, but for sets?
domogled has joined #nixos
<clever> > :p lib.mapAttrs (a: a * 10) { a=1; b=2; c=3; }
<{^_^}> value is a string while an integer was expected, at (string):277:18
<clever> > :p lib.mapAttrs (key: v: v * 10) { a=1; b=2; c=3; }
<{^_^}> { a = 10; b = 20; c = 30; }
<clever> Thra11: f gets ran on every key/value pair, and the return value becomes the new value at that pair
dm9 has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79644 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 → https://git.io/JvcnP
ixxie has joined #nixos
<Thra11> clever++: Sounds like what I want, thanks
<{^_^}> clever's karma got increased to 323
o1lo01ol1o has joined #nixos
LouisDK has joined #nixos
<m1cr0m4n> flokli: I need to chat to you about these comments
o1lo01ol1o has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @risicle opened pull request #79645 → [r19.09] libexif: add patch for CVE-2019-9278 → https://git.io/JvcnS
<m1cr0m4n> So for the DNS-01 cert I just want to point out that I am using nginx to test the cert for consistency. I want to ensure the reutrned wildcard cert works for the subdomains it should when used. It is easy to do so with curl, and I don't believe checking for file existence is really enough
<m1cr0m4n> I'm not sure what you are expecting wrt serverAlises. I haven't changed any functionality there.
o1lo01ol1o has joined #nixos
<LouisDK> I've installed "ephemeral" in 20.03 and most icons are missing under Plasma desktop while they're present in Xfce. If I install an icon set like "hicolor-icon-theme" do I have to do something to make Ephemeral able to use it?
o1lo01ol1o has quit [Ping timeout: 265 seconds]
kloenk has quit [Read error: Connection reset by peer]
chagra has quit [Ping timeout: 268 seconds]
chagra has joined #nixos
<{^_^}> [nixpkgs] @pacien closed pull request #62864 → [WIP] matrix-appservice-irc: init at 0.12.0 → https://git.io/fjzMT
<ivegotasthma> hello, where can I find the hamachi daemon
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79647 → python27Packages.ua-parser: 0.8.0 -> 0.9.0 → https://git.io/Jvcct
<infinisil> ivegotasthma: Did you not find it in the nixos options?
<ivegotasthma> I need to start it so I can run it
<ivegotasthma> I don't know how to start it
endformationage has joined #nixos
<infinisil> ivegotasthma: So, did you search through the nixos options?
<ivegotasthma> I found it from the nix package
<infinisil> ivegotasthma: You can search through nixos *options* here: https://nixos.org/nixos/options.html
<chagra> add `services.logmein-hamachi.enable = true;` to configuration.nix to enable it
<infinisil> chagra: I wanted them to find the option on their own
<chagra> oh im really sorry, I should have understood
<samrose> seeking examples of nix + clojure + leiningen nix package
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #79602 → python27Packages.feedgen: 0.8.0 -> 0.9.0 → https://git.io/JvcUh
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/Jvccu
<{^_^}> [nixpkgs] @JohnAZoidberg closed pull request #68067 → libphonenumber: 8.9.9 -> 8.10.17 → https://git.io/fjhmh
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #79648 → libphonenumber: 8.10.20 -> 8.11.3 → https://git.io/Jvcc6
kloenk has joined #nixos
LouisDK has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79649 → python27Packages.uproot: 3.11.1 -> 3.11.2 → https://git.io/Jvcc1
u0_a121 has joined #nixos
waleee-cl has joined #nixos
ng0_ has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<Thra11> How do I override an attribute on a qt module in an overlay?
ng0 has quit [Ping timeout: 246 seconds]
chagra_ has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/8130f3c1c2b (from 12 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<infinisil> Thra11: Have you tried the standard .override?
<{^_^}> [nixpkgs] @JohnAZoidberg merged pull request #65842 → Update hyperv-guest.nix → https://git.io/fj9h3
<{^_^}> [nixpkgs] @JohnAZoidberg pushed 2 commits to master: https://git.io/JvccN
<Thra11> Maybe I'm asking the wrong question. I want to enable debug symbols in the module
chagra has quit [Ping timeout: 246 seconds]
<infinisil> Thra11: Usually you should be able to use `pkgs.enableDebugging pkgs.foo` to get that
chagra has joined #nixos
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<samrose> I see now with clojure, use https://clojure.org/guides/deps_and_cli
chagra_ has quit [Ping timeout: 268 seconds]
<Thra11> infinisil: I thought I'd tried that, but I must have tried it with the wrong bits. Do you know if I can add debug symbols to all the modules in qt5Full by mapping that function over it?
<infinisil> I don't know much about this, it might work
<heath> where is callCabal2Nix defined?
mDuff has joined #nixos
<heath> or is there a general callX function?
neeasade has joined #nixos
<infinisil> > builtins.unsafeGetAttrPos "callCabal2nix" haskellPackages
<neeasade> hello all -- is there a way to use ggtags to jump to header file in an emacs-shell setup
<neeasade> er, nix-shell setup
<{^_^}> { column = 5; file = "/var/lib/nixbot/nixpkgs/master/repo/pkgs/development/haskell-modules/make-package-set.nix"; line = 216; }
<infinisil> heath: ^
<infinisil> So in pkgs/development/haskell-modules/make-package-set.nix
kloenk has joined #nixos
monadplus has joined #nixos
<heath> thanks!
monadplus has quit [Client Quit]
<heath> pretty sure i saw this file at 5am, but it was 5am
<infinisil> Hehe
Thra11 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed to master « wdisplays: 2019-10-26 -> 2020-01-12 »: https://git.io/JvcCC
<{^_^}> [nixpkgs] @samueldr merged pull request #79368 → nixos/lib/make-ext4-fs: fall back to resize2fs -M if exact resize fails → https://git.io/JvZPu
<{^_^}> [nixpkgs] @samueldr pushed 2 commits to master: https://git.io/JvcCW
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<evanjs> Is the weechat service still broken on NixOS?
<evanjs> Can't quite recall what the problem was last time... i just remember it not working before
<chagra> evanjs: I was using it until the last 2 weeks, It was not broken. Was this recent?
<evanjs> chagra: ehh 19.09 like a month or two ago. Might've just been a quirk of my setup before (which has since been fixed). Let me rebuild again and check
<chagra> I just opted in doing my own setup so I can set weechat secrets with home-manager
<evanjs> The one thing I might be thinking of is the weirdness with the screen type it used (multi-user?) ohhhhhh okay
<chagra> yeah that's the one
<chagra> I remember I had to do something to make it work
<chagra> let me look at my old git commits
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #79650 → Add some Guile packages → https://git.io/JvcCz
<evanjs> btw, sondr3 did you get all the stuff figured out with nixos/xmonad/taffybar and etc?
<chagra> services.weechat.enable = true;
<chagra> programs.screen.screenrc = ''
<chagra> multiuser on
<chagra> acladd iheb
<chagra> term screen-256color
<chagra> '';
<chagra> i did this
<chagra> you had to do acladd ${user}
<evanjs> looks like I added normal_user on mine
<evanjs> My guess is that this _was_ working for me, but this was before I got hairpin NAT working on my router, so I might be conflating the two events
<evanjs> Hairpin NAT is now working, so I can finally use the same (external ip-based) config for all my weechat clients. Suppose I should enable the service again and see if anything is amiss
<chagra> If it does not work I highly recommend just using a modified version you write yourself, the nix expression for that option is very simple
<evanjs> I already have a billion in my config, anyway. Not like it could hurt. Just for secret management, though, or?
bhipple has quit [Ping timeout: 268 seconds]
gxt has quit [Remote host closed the connection]
gxt has joined #nixos
Thra11 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79652 → python27Packages.uproot-methods: 0.7.2 -> 0.7.3 → https://git.io/JvcCi
<evanjs> Also, anybody have thoughts on #73225? If it's something that should be fixed upstream, or with my system, that's fine, but I'd love to get this fixed in nixpkgs at some point
<{^_^}> https://github.com/NixOS/nixpkgs/pull/73225 (by evanjs, 12 weeks ago, open): nodePackages."@angular/cli": disable analytics
<evanjs> I wonder if anybody else is even seeing the same issue
gnidorah has quit [Quit: Connection closed for inactivity]
nrdxpmatrixorg[m has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<evanjs> would be happy to ping people but unsure who I should ping. Is there a list of nix projects and members, somewhere? e.g. borg -- grahamc[m]; Gnome -- jtojnar, worldofpeace , etc
<worldofpeace> evanjs: you're looking for nodePackages maintainers right?
<nrdxpmatrixorg[m> In case anyone missed it in the discourse, I'll leave a link to my [nixflk](https://github.com/nrdxp/nixflk) project here. If your curious about the upcoming [flakes](https://www.youtube.com/watch?v=UeBX7Ide5a0) mechanism and would like to try them out, please give it a go and offer me your comments, criticisms or contributions. Hope you find it useful!
<evanjs> worldofpeace: yes
<worldofpeace> evanjs: hmm, IIRC adisbladis could help you
<Thra11> infinisil: If I put `qt5.qtbase = self.enableDebugging super.qt5.qtbase` in my overlay, it looks like it's ok as long as only qt5.qtbase is required. However, if qt5Full is required, it fails with "error: attribute 'full' missing". Normally 'full' is an attribute of qt5.
<worldofpeace> and via git history, Mic92
<{^_^}> [nixpkgs] @worldofpeace merged pull request #79648 → libphonenumber: 8.10.20 -> 8.11.3 → https://git.io/Jvcc6
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvcCj
f0x has quit [Remote host closed the connection]
joepie91 has quit [Remote host closed the connection]
leah2 has quit [Ping timeout: 260 seconds]
leah2 has joined #nixos
<evanjs> worldofpeace: yes, Mic92 was who I asked for my last PR as he had opened the previous generic nodePackages set bump
<evanjs> worldofpeace++
<{^_^}> worldofpeace's karma got increased to 63
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
sogatori has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @JohnAZoidberg merged pull request #79384 → handbrake: 1.3.0 -> 1.3.1 → https://git.io/JvZyN
<{^_^}> [nixpkgs] @JohnAZoidberg pushed 2 commits to master: https://git.io/JvcWO
domogled has quit [Ping timeout: 272 seconds]
<evanjs> added both and will let them tell me if that's bad :D
<{^_^}> [hydra] @grahamc opened pull request #713 → Copy the flake migration from the flake branch → https://git.io/JvcWG
<evanjs> now I just need to wait for the nix-review on #77714 to finish :P
<{^_^}> https://github.com/NixOS/nixpkgs/pull/77714 (by evanjs, 3 weeks ago, open): pythonPackages.pillow: 6.2.1 -> 7.0.0
kloenk has joined #nixos
CreamyNebula has joined #nixos
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #79476 → verifast: 18.02 -> 19.12 → https://git.io/Jvnlk
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « verifast: 18.02 -> 19.12 »: https://git.io/JvcWl
tjg1 has quit [Quit: DON'T KEEP CALM AND FUCK THIS. FUCK THAT. FUCK YOU. FUCK OFF.]
o1lo01ol1o has joined #nixos
trcm has joined #nixos
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
f0xpixietown has joined #nixos
o1lo01ol1o has quit [Ping timeout: 265 seconds]
joepie91pixietow has joined #nixos
f0xpixietown has quit [Client Quit]
joepie91pixietow has quit [Client Quit]
f0x has joined #nixos
<evanjs> hey grahamc[m], do obscene quit messages count as "vulgar language" on nixos channels? :P ^
<worldofpeace> evanjs: pretty sure his primary nick is gchristensen
Guest88309 has joined #nixos
<evanjs> gchristensen -- oh. did not realize that haha
<{^_^}> [nixpkgs] @jonringer merged pull request #79632 → python27Packages.spotipy: 2.6.1 -> 2.7.1 → https://git.io/JvcsD
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.spotipy: 2.6.1 -> 2.7.1 »: https://git.io/JvcWi
chagra has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #79636 → python27Packages.augeas: 1.0.3 -> 1.1.0 → https://git.io/JvcGX
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.augeas: 1.0.3 -> 1.1.0 »: https://git.io/JvcWX
kloenk has joined #nixos
chagra has joined #nixos
<gchristensen> I've DM'd them in the past, but no reply. not sure what to do
<{^_^}> [nixpkgs] @jonringer merged pull request #79652 → python27Packages.uproot-methods: 0.7.2 -> 0.7.3 → https://git.io/JvcCi
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.uproot-methods: 0.7.2 -> 0.7.3 »: https://git.io/JvcW1
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79653 → libsForQt5.qtutilities: 6.0.3 -> 6.0.4 → https://git.io/JvcWH
<evanjs> gchristensen: ahh gotcha. wasn't sure if we had bots that kick or anything, like I've seen in the mozilla IRC. Though, there's a greater need for it there because you don't need a registered account, or something like that?
<evanjs> e.g. when I was in the #rust and etc ircs id constantly see spam messages on the main channels, and get spam pretty often from bots, right before they were automatically booted
CreamyNebula has quit [Quit: Leaving]
<nrdxpmatrixorg[m> evanjs: I can tell you that we do have bots that kick after 30 days. I just had to rejoin because of it
<evanjs> nrdxpmatrixorg[m: ahhh well no spam bots, then?
<evanjs> *anti-spam bots
elibrokeit has quit [Quit: A random quit message]
<qyliss> evanjs: there's no need for a registered account here
elibrokeit has joined #nixos
<qyliss> mozilla just weren't interested in implementing spam protection (or in maintaining their irc server at all), afaik
<{^_^}> [hydra] @grahamc opened pull request #714 → Jobset id pgsql part 2 → https://git.io/Jvcle
nrdxpmatrixorg[m is now known as nrdxp[m]
<nrdxp[m]> evanjs: not sure about anit-spam bots myself
<evanjs> qyliss: ah alright. I was thinking of spam-protection vs reacting to spam bots as the same thing. Yeah, nixos-chat-ish topic at this point, but that clears up some of my questions about the nixos irc, at least!
<nrdxp[m]> anti*
<{^_^}> [nixpkgs] @jonringer opened pull request #79654 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 → https://git.io/JvclT
<cole-h> I am trying to build an overlay, but it is failing and the logs are inside the build environment. Is it possible to get into a build environment even if it fails?
<qyliss> cole-h: you can try to use breakpointHook, although I've never got it to work
<qyliss> actually, what you probably want is just nix-build -K
<cole-h> qyliss++: Yep, that works. Thanks!
<{^_^}> qyliss's karma got increased to 31
<evanjs> Just a note: if you do end up using `nix build` instead of `nix-build` you will need to type out `--keep-failed`, instead.
<{^_^}> [nixpkgs] @jonringer merged pull request #79624 → python37Packages.pydantic: 1.3 -> 1.4 → https://git.io/JvcOB
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.pydantic: 1.3 -> 1.4 »: https://git.io/Jvclq
<{^_^}> [nixpkgs] @jonringer merged pull request #79635 → python27Packages.persim: 0.1.1 -> 0.1.2 → https://git.io/JvcGg
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.persim: 0.1.1 -> 0.1.2 »: https://git.io/JvclY
o1lo01ol1o has joined #nixos
kleisli has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @worldofpeace opened pull request #79656 → release-combined: readde keymap tests → https://git.io/JvclZ
<{^_^}> [nixpkgs] @jonringer merged pull request #79621 → python37Packages.pikepdf: 1.8.2 -> 1.10.0 → https://git.io/JvcY8
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.pikepdf: 1.8.2 -> 1.10.0 »: https://git.io/JvclC
<{^_^}> [nixpkgs] @jonringer merged pull request #79623 → python27Packages.rq: 1.1.0 -> 1.2.2 → https://git.io/JvcOW
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.rq: 1.1.0 -> 1.2.2 »: https://git.io/JvclW
<{^_^}> [nixpkgs] @jonringer closed pull request #79644 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 → https://git.io/JvcnP
<{^_^}> [nixpkgs] @jonringer merged pull request #79654 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 → https://git.io/JvclT
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/Jvcll
<{^_^}> [nixpkgs] @risicle opened pull request #79657 → [r19.09] pythonPackages.feedgen: 0.7.0 -> 0.9.0, addressing CVE-2020-5227 → https://git.io/JvclB
fenedor has joined #nixos
lovesegfault has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @jonringer merged pull request #79642 → python27Packages.pycollada: 0.7 -> 0.7.1 → https://git.io/Jvcnc
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.pycollada: 0.7 -> 0.7.1 »: https://git.io/Jvcla
sondr3 has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #78453 → nixos/grub: make memtest work with EFI → https://git.io/Jvqs7
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvclV
CreamyNebula has joined #nixos
fendor has quit [Ping timeout: 260 seconds]
Guest88309 is now known as joepie91
joepie91 is now known as Guest8170
Thra11 has quit [Quit: WeeChat 2.7]
kleisli has joined #nixos
ng0 has joined #nixos
gustavderdrache has left #nixos [#nixos]
Guest8170 is now known as joepie91
joepie91 has joined #nixos
joepie91 has quit [Changing host]
CreamyNebula has left #nixos ["Leaving"]
ng0_ has quit [Ping timeout: 240 seconds]
cosimone has joined #nixos
thc202 has quit [Ping timeout: 256 seconds]
leotaku has quit [*.net *.split]
fling has quit [*.net *.split]
goodwill has quit [*.net *.split]
Izorkin has quit [*.net *.split]
ambroiseur has quit [*.net *.split]
tpanum- has quit [*.net *.split]
mmlb has quit [*.net *.split]
mir100 has quit [*.net *.split]
energizer has quit [*.net *.split]
luigy has quit [*.net *.split]
xqsl has quit [*.net *.split]
wolfshappen has quit [*.net *.split]
arianvp has quit [*.net *.split]
nckx has quit [*.net *.split]
evhan has quit [*.net *.split]
skrzyp has quit [*.net *.split]
jboy has quit [*.net *.split]
dsg has quit [*.net *.split]
Czen has quit [*.net *.split]
jD91mZM2 has quit [*.net *.split]
hyper_ch has quit [*.net *.split]
mniip has quit [*.net *.split]
DerGuteMoritz has quit [*.net *.split]
simukis_ has quit [*.net *.split]
coderobe has quit [*.net *.split]
spacekookie has quit [*.net *.split]
umachan has quit [*.net *.split]
helpusobi has quit [*.net *.split]
jerryaldrichiii has quit [*.net *.split]
hark has quit [*.net *.split]
pie_[bnc] has quit [*.net *.split]
habbah has quit [*.net *.split]
Profpatsch has quit [*.net *.split]
amosbird has quit [*.net *.split]
silver_hook has quit [*.net *.split]
wrl has quit [*.net *.split]
naivesheep has quit [*.net *.split]
Mrmaxmeier has quit [*.net *.split]
otulp has quit [*.net *.split]
ptrcmd has quit [*.net *.split]
aszlig has quit [*.net *.split]
octe has quit [*.net *.split]
dirkx_ has quit [*.net *.split]
fionera has quit [*.net *.split]
cruxeternus has quit [*.net *.split]
glines has quit [*.net *.split]
mgdm has quit [*.net *.split]
sveitser has quit [*.net *.split]
penguwin has quit [*.net *.split]
steell has quit [*.net *.split]
MarcWeber has quit [*.net *.split]
samueldr has quit [*.net *.split]
voidcontext has quit [*.net *.split]
betawaffle has quit [*.net *.split]
v88m has quit [Remote host closed the connection]
luigy has joined #nixos
Profpatsch has joined #nixos
energizer has joined #nixos
tpanum- has joined #nixos
goodwill has joined #nixos
mmlb has joined #nixos
Izorkin has joined #nixos
wolfshappen has joined #nixos
ambroiseur has joined #nixos
xqsl has joined #nixos
leotaku has joined #nixos
mgdm has joined #nixos
voidcontext has joined #nixos
cruxeternus has joined #nixos
sveitser has joined #nixos
hark has joined #nixos
MarcWeber has joined #nixos
habbah has joined #nixos
jD91mZM2 has joined #nixos
octe has joined #nixos
evhan has joined #nixos
arianvp has joined #nixos
silver_hook has joined #nixos
glines has joined #nixos
DerGuteMoritz has joined #nixos
jerryaldrichiii has joined #nixos
Mrmaxmeier has joined #nixos
wrl has joined #nixos
steell has joined #nixos
simukis_ has joined #nixos
dirkx_ has joined #nixos
skrzyp has joined #nixos
dsg has joined #nixos
Czen has joined #nixos
jboy has joined #nixos
penguwin has joined #nixos
mniip has joined #nixos
spacekookie has joined #nixos
amosbird has joined #nixos
umachan has joined #nixos
ptrcmd has joined #nixos
hyper_ch has joined #nixos
aszlig has joined #nixos
fionera has joined #nixos
naivesheep has joined #nixos
pie_[bnc] has joined #nixos
helpusobi has joined #nixos
nckx has joined #nixos
samueldr has joined #nixos
otulp has joined #nixos
betawaffle has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #79658 → qownnotes: 19.12.15 -> 20.2.2 → https://git.io/Jvcld
coderobe has joined #nixos
Thra11 has joined #nixos
habbah has quit [Max SendQ exceeded]
silver_hook has quit [Max SendQ exceeded]
energizer has quit [Max SendQ exceeded]
leotaku has quit [Max SendQ exceeded]
samueldr has quit [Excess Flood]
mir100 has joined #nixos
shibboleth has quit [Quit: shibboleth]
FRidh2 has quit [Quit: Konversation terminated!]
fling has joined #nixos
silver_hook has joined #nixos
djahandarie has quit [*.net *.split]
Intensity has quit [*.net *.split]
leotaku has joined #nixos
djahandarie has joined #nixos
Intensity has joined #nixos
neeasade has quit [Ping timeout: 272 seconds]
f18d7dc7 has quit [*.net *.split]
f18d7dc7 has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace opened pull request #79659 → testing: fix runInMachineWithX/runInMachine → https://git.io/Jvc8J
energizer has joined #nixos
emacsoma1 has quit [Read error: Connection reset by peer]
leotaku has quit [*.net *.split]
coderobe has quit [*.net *.split]
test53453535[m] has quit [*.net *.split]
jmeredith has quit [*.net *.split]
sputny[m] has quit [*.net *.split]
denbrahe[m] has quit [*.net *.split]
ongy[m] has quit [*.net *.split]
alexarice[m] has quit [*.net *.split]
leons has quit [*.net *.split]
nilsirl[m] has quit [*.net *.split]
worldofpeace has quit [*.net *.split]
roberth has quit [*.net *.split]
_rvl has quit [*.net *.split]
witchof0x20 has quit [*.net *.split]
w3emperor has quit [*.net *.split]
ardumont has quit [*.net *.split]
romanofski has quit [*.net *.split]
danguita has quit [*.net *.split]
victorbjelkholm_ has quit [*.net *.split]
heatm1s3r has quit [*.net *.split]
jeregrine has quit [*.net *.split]
ocharles has quit [*.net *.split]
mkaito has quit [*.net *.split]
LnL has quit [*.net *.split]
eddyb[legacy] has quit [*.net *.split]
valwal has quit [*.net *.split]
tg has quit [*.net *.split]
joshmeredith has quit [*.net *.split]
lally has quit [*.net *.split]
AluisioASG has quit [*.net *.split]
davidtwco has quit [*.net *.split]
Miyu-saki has quit [*.net *.split]
m4ts has quit [*.net *.split]
evck has quit [*.net *.split]
tnks has quit [*.net *.split]
parseval has quit [*.net *.split]
shad has quit [*.net *.split]
nisstyre has quit [*.net *.split]
jmarin217 has quit [*.net *.split]
digitalgrease has quit [*.net *.split]
jol has quit [*.net *.split]
higherorder has quit [*.net *.split]
darkf has quit [*.net *.split]
ProofTechnique has quit [*.net *.split]
e has quit [*.net *.split]
xacktm has quit [*.net *.split]
davean has quit [*.net *.split]
amanjeev has quit [*.net *.split]
klys has quit [*.net *.split]
yourfate has quit [*.net *.split]
krasnij has quit [*.net *.split]
sauyon has quit [*.net *.split]
lecethimon has quit [*.net *.split]
sshow has quit [*.net *.split]
dredozubov has quit [*.net *.split]
mk_modrzew has quit [*.net *.split]
Ashy has quit [*.net *.split]
benny has quit [*.net *.split]
joepie91 has quit [*.net *.split]
eol[m] has quit [*.net *.split]
pinion[m] has quit [*.net *.split]
Leira[m] has quit [*.net *.split]
aleph9[m] has quit [*.net *.split]
val2229[m] has quit [*.net *.split]
dot-product[m] has quit [*.net *.split]
prusnak[m] has quit [*.net *.split]
tomberek[m] has quit [*.net *.split]
Keith[m] has quit [*.net *.split]
boturl4r[m] has quit [*.net *.split]
simbergm has quit [*.net *.split]
hagelslag[m] has quit [*.net *.split]
snupples[m] has quit [*.net *.split]
Irenes[m] has quit [*.net *.split]
xa0[m] has quit [*.net *.split]
ksixty1 has quit [*.net *.split]
contrun[m] has quit [*.net *.split]
Minijackson[m] has quit [*.net *.split]
frhun has quit [*.net *.split]
mica[m] has quit [*.net *.split]
hiroshi[m] has quit [*.net *.split]
david-sawatzke[m has quit [*.net *.split]
veleiro has quit [*.net *.split]
wnklmnn[m] has quit [*.net *.split]
MilkManzJourDadd has quit [*.net *.split]
drgbr has quit [*.net *.split]
li_matrix has quit [*.net *.split]
MarkOtaris has quit [*.net *.split]
ashkitten has quit [*.net *.split]
Shell has quit [*.net *.split]
johs has quit [*.net *.split]
gausby_ has quit [*.net *.split]
johanot has quit [*.net *.split]
lirzhv has quit [*.net *.split]
pkral has quit [*.net *.split]
manveru has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
Dagger has quit [*.net *.split]
lightbulbjim has quit [*.net *.split]
dozn has quit [*.net *.split]
rembo10 has quit [*.net *.split]
malSet has quit [*.net *.split]
{^_^} has quit [*.net *.split]
kyren has quit [*.net *.split]
KennosiS has quit [*.net *.split]
fpletz has quit [*.net *.split]
GlennS has quit [*.net *.split]
PyroLagus has quit [*.net *.split]
flokli has quit [*.net *.split]
betaboon has quit [*.net *.split]
f0x2 has quit [*.net *.split]
siel has quit [*.net *.split]
inkOne__ has quit [*.net *.split]
aranea has quit [*.net *.split]
sigwinch28 has quit [*.net *.split]
smj has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
djanatyn_ has quit [*.net *.split]
nrdxp[m] has quit [*.net *.split]
abbe has quit [*.net *.split]
mdash has quit [*.net *.split]
kennykwey[m] has quit [*.net *.split]
teuffil[m] has quit [*.net *.split]
jonreeve[m] has quit [*.net *.split]
joelwallis1[m] has quit [*.net *.split]
tek[m] has quit [*.net *.split]
wedens[m] has quit [*.net *.split]
bohan[m] has quit [*.net *.split]
acowley[m] has quit [*.net *.split]
grin[m] has quit [*.net *.split]
atopuzov[m] has quit [*.net *.split]
yoho[m]1 has quit [*.net *.split]
chvp has quit [*.net *.split]
nolan_d has quit [*.net *.split]
Noughtmare[m] has quit [*.net *.split]
phittacus has quit [*.net *.split]
seb314[m] has quit [*.net *.split]
abbec has quit [*.net *.split]
flacks_ has quit [*.net *.split]
danielrf[m] has quit [*.net *.split]
florianjacob has quit [*.net *.split]
cocreature has quit [*.net *.split]
habbah has joined #nixos
leotaku has joined #nixos
florianjacob has joined #nixos
joelwallis1[m] has joined #nixos
jonreeve[m] has joined #nixos
kennykwey[m] has joined #nixos
MarkOtaris has joined #nixos
simbergm has joined #nixos
teuffil[m] has joined #nixos
danielrf[m] has joined #nixos
abbec has joined #nixos
heatm1s3r has joined #nixos
nolan_d has joined #nixos
MilkManzJourDadd has joined #nixos
inkOne__ has joined #nixos
roberth has joined #nixos
pinion[m] has joined #nixos
johanot has joined #nixos
Miyu-saki has joined #nixos
Ashy has joined #nixos
chvp has joined #nixos
seb314[m] has joined #nixos
betaboon has joined #nixos
prusnak[m] has joined #nixos
ocharles has joined #nixos
sigwinch28 has joined #nixos
drgbr has joined #nixos
eddyb[legacy] has joined #nixos
mkaito has joined #nixos
jeregrine has joined #nixos
ProofTechnique has joined #nixos
xacktm has joined #nixos
tnks has joined #nixos
m4ts has joined #nixos
e has joined #nixos
tomberek[m] has joined #nixos
victorbjelkholm_ has joined #nixos
higherorder has joined #nixos
fpletz has joined #nixos
aranea has joined #nixos
ardumont has joined #nixos
snupples[m] has joined #nixos
dot-product[m] has joined #nixos
lally has joined #nixos
KennosiS has joined #nixos
david-sawatzke[m has joined #nixos
veleiro has joined #nixos
jol has joined #nixos
steveeJ has joined #nixos
lirzhv has joined #nixos
digitalgrease has joined #nixos
wedens[m] has joined #nixos
tek[m] has joined #nixos
alexarice[m] has joined #nixos
yoho[m]1 has joined #nixos
ongy[m] has joined #nixos
acowley[m] has joined #nixos
davean has joined #nixos
xa0[m] has joined #nixos
aleph9[m] has joined #nixos
siel has joined #nixos
LnL has joined #nixos
joepie91 has joined #nixos
hagelslag[m] has joined #nixos
heinrich5991 has joined #nixos
li_matrix has joined #nixos
Dagger has joined #nixos
PyroLagus has joined #nixos
manveru has joined #nixos
w3emperor has joined #nixos
hiroshi[m] has joined #nixos
coderobe has joined #nixos
pkral has joined #nixos
yourfate has joined #nixos
shad has joined #nixos
lightbulbjim has joined #nixos
smj has joined #nixos
atopuzov[m] has joined #nixos
flacks_ has joined #nixos
Irenes[m] has joined #nixos
f0x2 has joined #nixos
witchof0x20 has joined #nixos
jmeredith has joined #nixos
joshmeredith has joined #nixos
flokli has joined #nixos
worldofpeace has joined #nixos
malSet has joined #nixos
lecethimon has joined #nixos
Leira[m] has joined #nixos
AluisioASG has joined #nixos
nrdxp[m] has joined #nixos
mk_modrzew has joined #nixos
boturl4r[m] has joined #nixos
Keith[m] has joined #nixos
mica[m] has joined #nixos
GlennS has joined #nixos
romanofski has joined #nixos
sshow has joined #nixos
_rvl has joined #nixos
hexagoxel has joined #nixos
wnklmnn[m] has joined #nixos
johs has joined #nixos
dozn has joined #nixos
klys has joined #nixos
parseval has joined #nixos
ksixty1 has joined #nixos
evck has joined #nixos
rembo10 has joined #nixos
sauyon has joined #nixos
Shell has joined #nixos
grin[m] has joined #nixos
amanjeev has joined #nixos
darkf has joined #nixos
Noughtmare[m] has joined #nixos
tg has joined #nixos
kyren has joined #nixos
{^_^} has joined #nixos
krasnij has joined #nixos
benny has joined #nixos
ashkitten has joined #nixos
bohan[m] has joined #nixos
Minijackson[m] has joined #nixos
cocreature has joined #nixos
dredozubov has joined #nixos
davidtwco has joined #nixos
gausby_ has joined #nixos
eol[m] has joined #nixos
abbe has joined #nixos
mdash has joined #nixos
sputny[m] has joined #nixos
djanatyn_ has joined #nixos
val2229[m] has joined #nixos
denbrahe[m] has joined #nixos
jmarin217 has joined #nixos
valwal has joined #nixos
frhun has joined #nixos
danguita has joined #nixos
nisstyre has joined #nixos
phittacus has joined #nixos
test53453535[m] has joined #nixos
leons has joined #nixos
nilsirl[m] has joined #nixos
v88m has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
nst^ has quit [Max SendQ exceeded]
nisstyre has quit [Max SendQ exceeded]
w3emperor has quit [Max SendQ exceeded]
MilkManzJourDadd has quit [Max SendQ exceeded]
v88m has quit [Read error: Connection reset by peer]
nisstyre has joined #nixos
mir100 has quit [*.net *.split]
elibrokeit has quit [*.net *.split]
o1lo01ol1o has quit [*.net *.split]
fenedor has quit [*.net *.split]
f0x has quit [*.net *.split]
chagra has quit [*.net *.split]
leah2 has quit [*.net *.split]
mDuff has quit [*.net *.split]
waleee-cl has quit [*.net *.split]
bvdw has quit [*.net *.split]
turona has quit [*.net *.split]
mvnetbiz_ has quit [*.net *.split]
sb0 has quit [*.net *.split]
andi- has quit [*.net *.split]
Supersonic has quit [*.net *.split]
cole-h has quit [*.net *.split]
nadley has quit [*.net *.split]
spacefrogg_ has quit [*.net *.split]
tilcreator has quit [*.net *.split]
jgeerds has quit [*.net *.split]
magnetophon has quit [*.net *.split]
alex`` has quit [*.net *.split]
zupo has quit [*.net *.split]
jjakob has quit [*.net *.split]
callahad870 has quit [*.net *.split]
h0m1 has quit [*.net *.split]
jluttine has quit [*.net *.split]
Scriptkiddi has quit [*.net *.split]
aw has quit [*.net *.split]
felixfoertsch has quit [*.net *.split]
lejonet has quit [*.net *.split]
fresheyeball has quit [*.net *.split]
mac10688 has quit [*.net *.split]
vesper11 has quit [*.net *.split]
tokudan has quit [*.net *.split]
shabius has quit [*.net *.split]
zaeph has quit [*.net *.split]
LysergicDreams has quit [*.net *.split]
ehmry has quit [*.net *.split]
fre has quit [*.net *.split]
WilliButz has quit [*.net *.split]
gerschtli has quit [*.net *.split]
Dave[m]5 has quit [*.net *.split]
boogiewoogie[m] has quit [*.net *.split]
smollcato has quit [*.net *.split]
alan[m]1 has quit [*.net *.split]
l_inus[m] has quit [*.net *.split]
the_pumpkin_man[ has quit [*.net *.split]
Nyanloutre[m] has quit [*.net *.split]
imj[m] has quit [*.net *.split]
vuko has quit [*.net *.split]
mzan has quit [*.net *.split]
fuzen has quit [*.net *.split]
mumuluxi has quit [*.net *.split]
immae has quit [*.net *.split]
ddima has quit [*.net *.split]
sevanspowell has quit [*.net *.split]
blackriversoftwa has quit [*.net *.split]
teehemkay has quit [*.net *.split]
techtangents has quit [*.net *.split]
rsoeldner has quit [*.net *.split]
CRTified has quit [*.net *.split]
rotaerk has quit [*.net *.split]
Fulgen has quit [*.net *.split]
genesis has quit [*.net *.split]
misuzu has quit [*.net *.split]
deni has quit [*.net *.split]
snajpa has quit [*.net *.split]
afics has quit [*.net *.split]
hexo_ has quit [*.net *.split]
craige has quit [*.net *.split]
Adluc has quit [*.net *.split]
fpob has quit [*.net *.split]
dminuoso has quit [*.net *.split]
srk has quit [*.net *.split]
mrus has quit [*.net *.split]
moredhel has quit [*.net *.split]
rprospero has quit [*.net *.split]
hyperfekt has quit [*.net *.split]
Rovanion has quit [*.net *.split]
flacks_ has quit [Max SendQ exceeded]
shibboleth has joined #nixos
samueldr has joined #nixos
<{^_^}> [nixpkgs] @veprbl pushed commit from @Abdillah to release-19.09 « librepcb: Fix platform plugin xcb not found »: https://git.io/Jvc8k
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
victorbjelkholm_ has quit [Ping timeout: 247 seconds]
darkf has quit [Ping timeout: 247 seconds]
eddyb[legacy] has quit [Ping timeout: 247 seconds]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
Rovanion has joined #nixos
hyperfekt has joined #nixos
moredhel has joined #nixos
rprospero has joined #nixos
mrus has joined #nixos
dminuoso has joined #nixos
srk has joined #nixos
nst^ has joined #nixos
bvdw has joined #nixos
mDuff has joined #nixos
waleee-cl has joined #nixos
leah2 has joined #nixos
turona has joined #nixos
magnetophon has joined #nixos
shabius has joined #nixos
nadley has joined #nixos
spacefrogg_ has joined #nixos
jgeerds has joined #nixos
vesper11 has joined #nixos
Scriptkiddi has joined #nixos
aw has joined #nixos
h0m1 has joined #nixos
emacsoma1 has joined #nixos
mac10688 has joined #nixos
fenedor has joined #nixos
mvnetbiz_ has joined #nixos
gerschtli has joined #nixos
Supersonic has joined #nixos
alex`` has joined #nixos
cole-h has joined #nixos
zaeph has joined #nixos
chagra has joined #nixos
WilliButz has joined #nixos
jjakob has joined #nixos
fre has joined #nixos
alan[m]1 has joined #nixos
ehmry has joined #nixos
felixfoertsch has joined #nixos
boogiewoogie[m] has joined #nixos
o1lo01ol1o has joined #nixos
andi- has joined #nixos
tokudan has joined #nixos
jluttine has joined #nixos
fresheyeball has joined #nixos
f0x has joined #nixos
LysergicDreams has joined #nixos
lejonet has joined #nixos
elibrokeit has joined #nixos
callahad870 has joined #nixos
sb0 has joined #nixos
tilcreator has joined #nixos
l_inus[m] has joined #nixos
mumuluxi has joined #nixos
teehemkay has joined #nixos
immae has joined #nixos
fuzen has joined #nixos
ddima has joined #nixos
blackriversoftwa has joined #nixos
sevanspowell has joined #nixos
mzan has joined #nixos
the_pumpkin_man[ has joined #nixos
vuko has joined #nixos
techtangents has joined #nixos
rsoeldner has joined #nixos
CRTified has joined #nixos
Nyanloutre[m] has joined #nixos
rotaerk has joined #nixos
craige has joined #nixos
genesis has joined #nixos
imj[m] has joined #nixos
misuzu has joined #nixos
fpob has joined #nixos
Fulgen has joined #nixos
Dave[m]5 has joined #nixos
hexo_ has joined #nixos
Adluc has joined #nixos
snajpa has joined #nixos
deni has joined #nixos
afics has joined #nixos
hoek has quit [Ping timeout: 252 seconds]
mir100 has joined #nixos
danguita has quit [Ping timeout: 242 seconds]
heatm1s3r has quit [Ping timeout: 242 seconds]
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
vandenoever has joined #nixos
tsrt^ has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
nilsirl[m] has quit [Ping timeout: 246 seconds]
steveeJ has quit [Ping timeout: 246 seconds]
ProofTechnique has quit [Ping timeout: 246 seconds]
higherorder has quit [Ping timeout: 246 seconds]
neonfuz2 has quit [Ping timeout: 240 seconds]
colemickens has quit [Ping timeout: 240 seconds]
domenkozar[m] has quit [Ping timeout: 240 seconds]
morgib[m] has quit [*.net *.split]
Logan[m]1 has quit [*.net *.split]
xavierzwirtz[m] has quit [*.net *.split]
quidel[m] has quit [*.net *.split]
dyon[m] has quit [*.net *.split]
qqlq has quit [*.net *.split]
mkg20001 has quit [*.net *.split]
marijan[m] has quit [*.net *.split]
slabity has quit [*.net *.split]
ZerataX has quit [*.net *.split]
rycee has quit [*.net *.split]
gsals[m] has quit [*.net *.split]
Guest86989 has quit [*.net *.split]
musicmatze has quit [*.net *.split]
jtojnar has quit [*.net *.split]
acowley has quit [*.net *.split]
peanutbutter144 has quit [*.net *.split]
drewr has quit [*.net *.split]
lstanley has quit [*.net *.split]
jophish has quit [*.net *.split]
bitonic has quit [*.net *.split]
kapil_ has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
kriztw has quit [*.net *.split]
xantoz has quit [*.net *.split]
scott has quit [*.net *.split]
chrisaw has quit [*.net *.split]
tv has quit [*.net *.split]
Tritlo has quit [*.net *.split]
ctp has quit [*.net *.split]
sgraf has quit [*.net *.split]
_cyril_ has quit [*.net *.split]
cbarrett has quit [*.net *.split]
pepesza has quit [*.net *.split]
ericnoan has quit [*.net *.split]
Arahael has quit [*.net *.split]
boegel has quit [*.net *.split]
jaeckel has quit [*.net *.split]
agb has quit [*.net *.split]
Baughn has quit [*.net *.split]
rauno has quit [*.net *.split]
alanz has quit [*.net *.split]
philipcristiano has quit [*.net *.split]
vdemeester has quit [*.net *.split]
aristid has quit [*.net *.split]
delan has quit [*.net *.split]
etrepum has quit [*.net *.split]
tabasko has quit [*.net *.split]
pittma has quit [*.net *.split]
teozkr has quit [*.net *.split]
raboof has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
SyrupThinker has quit [*.net *.split]
geemili has quit [Ping timeout: 245 seconds]
nrdxp[m] has quit [Ping timeout: 240 seconds]
grin[m] has quit [Ping timeout: 240 seconds]
tsrt^ has joined #nixos
nolan_d has quit [Ping timeout: 240 seconds]
florianjacob has quit [Ping timeout: 240 seconds]
prusnak[m] has quit [Ping timeout: 248 seconds]
boturl4r[m] has quit [Ping timeout: 270 seconds]
simbergm has quit [Ping timeout: 270 seconds]
snupples[m] has quit [Ping timeout: 270 seconds]
hiroshi[m] has quit [Ping timeout: 248 seconds]
david-sawatzke[m has quit [Ping timeout: 248 seconds]
MarkOtaris has quit [Ping timeout: 248 seconds]
manveru has quit [Ping timeout: 270 seconds]
sebass[m] has quit [Ping timeout: 252 seconds]
jschievink has quit [Ping timeout: 252 seconds]
killercup[m] has quit [Ping timeout: 252 seconds]
emily has quit [Ping timeout: 252 seconds]
siraben has quit [Ping timeout: 252 seconds]
pepesza has joined #nixos
denbrahe[m] has quit [Ping timeout: 246 seconds]
alexarice[m] has quit [Ping timeout: 246 seconds]
ongy[m] has quit [Ping timeout: 246 seconds]
leons has quit [Ping timeout: 246 seconds]
delan has joined #nixos
roberth has quit [Ping timeout: 246 seconds]
parseval has quit [Ping timeout: 246 seconds]
davidtwco has quit [Ping timeout: 246 seconds]
rauno has joined #nixos
agb has joined #nixos
andi- has quit [Max SendQ exceeded]
l_inus[m] has quit [Max SendQ exceeded]
delan has joined #nixos
delan has quit [Changing host]
teozkr has joined #nixos
chatmaster5000[m has quit [Ping timeout: 245 seconds]
mudrii[m] has quit [Ping timeout: 245 seconds]
GerdFlaig[m] has quit [Ping timeout: 245 seconds]
alienpirate5 has quit [Ping timeout: 245 seconds]
chris| has quit [Ping timeout: 245 seconds]
kaychaks[m] has quit [Ping timeout: 245 seconds]
keithy[m] has quit [Ping timeout: 245 seconds]
ilya-fedin has quit [Ping timeout: 245 seconds]
thequux[m] has quit [Ping timeout: 245 seconds]
MerlinGttlinger[ has quit [Ping timeout: 245 seconds]
averell has quit [*.net *.split]
ok2` has quit [*.net *.split]
_cyril_ has joined #nixos
ctp has joined #nixos
abbradar[m] has quit [Ping timeout: 256 seconds]
EuAndreh[m] has quit [Ping timeout: 256 seconds]
cbarrett has joined #nixos
philipcristiano has joined #nixos
vdemeester has joined #nixos
sgraf has joined #nixos
Jarva[m] has quit [Ping timeout: 258 seconds]
rihardsk[m] has quit [Ping timeout: 258 seconds]
quiet_laika[m] has quit [Ping timeout: 258 seconds]
tokudan[m] has quit [Ping timeout: 258 seconds]
Gaz[m]1 has quit [Ping timeout: 258 seconds]
notice81cabbage[ has quit [Ping timeout: 258 seconds]
puzzlewolf has quit [Ping timeout: 258 seconds]
philipp[m] has quit [Ping timeout: 258 seconds]
spacekitteh[m] has quit [Ping timeout: 258 seconds]
wak-work has quit [Ping timeout: 258 seconds]
rnhmjoj has quit [Ping timeout: 258 seconds]
mupf[m] has quit [Ping timeout: 240 seconds]
sputny[m] has quit [Ping timeout: 246 seconds]
test53453535[m] has quit [Ping timeout: 246 seconds]
ocharles has quit [Ping timeout: 246 seconds]
etrepum has joined #nixos
pentadyne[m] has quit [Ping timeout: 240 seconds]
blitzclone_ has quit [Ping timeout: 258 seconds]
webdavis has quit [Ping timeout: 240 seconds]
Ox4A6F has quit [Ping timeout: 258 seconds]
wangoe[m] has quit [Ping timeout: 240 seconds]
ok2` has joined #nixos
scott has joined #nixos
alanz has joined #nixos
teuffil[m] has quit [Ping timeout: 240 seconds]
tek[m] has quit [Ping timeout: 240 seconds]
wedens[m] has quit [Ping timeout: 240 seconds]
joelwallis1[m] has quit [Ping timeout: 240 seconds]
jonreeve[m] has quit [Ping timeout: 240 seconds]
kennykwey[m] has quit [Ping timeout: 240 seconds]
bohan[m] has quit [Ping timeout: 240 seconds]
acowley[m] has quit [Ping timeout: 240 seconds]
aristid has joined #nixos
atopuzov[m] has quit [Ping timeout: 240 seconds]
yoho[m]1 has quit [Ping timeout: 240 seconds]
chvp has quit [Ping timeout: 240 seconds]
seb314[m] has quit [Ping timeout: 240 seconds]
phittacus has quit [Ping timeout: 240 seconds]
Noughtmare[m] has quit [Ping timeout: 240 seconds]
danielrf[m] has quit [Ping timeout: 240 seconds]
abbec has quit [Ping timeout: 240 seconds]
tyrion-mx has quit [Ping timeout: 252 seconds]
grahamc[m] has quit [Ping timeout: 252 seconds]
sreybastien[m] has quit [Ping timeout: 252 seconds]
Pasha[m] has quit [Ping timeout: 252 seconds]
ragge[m] has quit [Ping timeout: 252 seconds]
petersjt014[m] has quit [Ping timeout: 252 seconds]
index-0[m] has quit [Ping timeout: 252 seconds]
gustavderdrache[ has quit [Ping timeout: 252 seconds]
vaibhavsagar has quit [Ping timeout: 252 seconds]
aterius has quit [Ping timeout: 252 seconds]
hpfr[m] has quit [Ping timeout: 252 seconds]
pinage404[m] has quit [Ping timeout: 252 seconds]
shizonic has quit [Ping timeout: 252 seconds]
chrisaw has joined #nixos
thoughtpolice has joined #nixos
jophish has joined #nixos
scott has joined #nixos
scott has quit [Changing host]
scott has joined #nixos
scott has quit [Changing host]
Tritlo has joined #nixos
vdemeester has joined #nixos
vdemeester has quit [Changing host]
pittma has joined #nixos
val2229[m] has quit [Ping timeout: 248 seconds]
tomberek[m] has quit [Ping timeout: 248 seconds]
Keith[m] has quit [Ping timeout: 248 seconds]
dot-product[m] has quit [Ping timeout: 248 seconds]
aleph9[m] has quit [Ping timeout: 248 seconds]
eol[m] has quit [Ping timeout: 248 seconds]
pinion[m] has quit [Ping timeout: 248 seconds]
Leira[m] has quit [Ping timeout: 248 seconds]
hagelslag[m] has quit [Ping timeout: 248 seconds]
xa0[m] has quit [Ping timeout: 248 seconds]
Irenes[m] has quit [Ping timeout: 248 seconds]
ksixty1 has quit [Ping timeout: 248 seconds]
Minijackson[m] has quit [Ping timeout: 248 seconds]
mica[m] has quit [Ping timeout: 248 seconds]
frhun has quit [Ping timeout: 248 seconds]
wnklmnn[m] has quit [Ping timeout: 248 seconds]
veleiro has quit [Ping timeout: 248 seconds]
johs has quit [Ping timeout: 248 seconds]
li_matrix has quit [Ping timeout: 248 seconds]
raboof has joined #nixos
raboof has joined #nixos
raboof has quit [Changing host]
thoughtpolice has joined #nixos
thoughtpolice has quit [Changing host]
jamiemagee has quit [Ping timeout: 245 seconds]
Notkea[m] has quit [Ping timeout: 245 seconds]
dtz has quit [Ping timeout: 245 seconds]
xantoz has joined #nixos
worldofpeace has quit [Ping timeout: 246 seconds]
tobia_[m] has quit [Ping timeout: 252 seconds]
tbenst[m] has quit [Ping timeout: 252 seconds]
maralorn[m] has quit [Ping timeout: 252 seconds]
babariviere[m] has quit [Ping timeout: 252 seconds]
fabiomen10[m] has quit [Ping timeout: 252 seconds]
NoblesseOblige24 has quit [Ping timeout: 252 seconds]
DanP[m] has quit [Ping timeout: 252 seconds]
jonge[m] has quit [Ping timeout: 252 seconds]
mt[m] has quit [Ping timeout: 252 seconds]
teej has quit [Ping timeout: 256 seconds]
Baughn has joined #nixos
SyrupThinker has joined #nixos
averell has joined #nixos
ericnoan has joined #nixos
psiperator[m] has quit [Ping timeout: 260 seconds]
hr[m] has quit [Ping timeout: 260 seconds]
gotofail[m] has quit [Ping timeout: 260 seconds]
haruko[m] has quit [Ping timeout: 260 seconds]
devis350[m] has quit [Ping timeout: 260 seconds]
lucasmarcos[m] has quit [Ping timeout: 260 seconds]
bricewge has quit [Ping timeout: 260 seconds]
ma27[m] has quit [Ping timeout: 260 seconds]
arcnmx has quit [Ping timeout: 260 seconds]
Aleksejs has joined #nixos
Arahael has joined #nixos
jophish is now known as Guest1826
drewr has joined #nixos
d10n-work has quit [Ping timeout: 268 seconds]
boogiewoogie[m] has quit [Ping timeout: 277 seconds]
alan[m]1 has quit [Ping timeout: 277 seconds]
Dave[m]5 has quit [Ping timeout: 277 seconds]
Nyanloutre[m] has quit [Ping timeout: 277 seconds]
the_pumpkin_man[ has quit [Ping timeout: 277 seconds]
imj[m] has quit [Ping timeout: 277 seconds]
bitonic has joined #nixos
davidtwco has joined #nixos
parseval has joined #nixos
heatm1s3r has joined #nixos
fling has quit [*.net *.split]
samueldr has quit [*.net *.split]
Thra11 has quit [*.net *.split]
trcm has quit [*.net *.split]
endformationage has quit [*.net *.split]
growpotkin has quit [*.net *.split]
orbekk has quit [*.net *.split]
chloekek has quit [*.net *.split]
wavirc22 has quit [*.net *.split]
shafox has quit [*.net *.split]
Mateon1 has quit [*.net *.split]
adamtkh has quit [*.net *.split]
efriend has quit [*.net *.split]
reivilibre has quit [*.net *.split]
alunduil has quit [*.net *.split]
MasseR has quit [*.net *.split]
ajmcmiddlin has quit [*.net *.split]
CMCDragonkai has quit [*.net *.split]
Cale has quit [*.net *.split]
kraem has quit [*.net *.split]
ravndal has quit [*.net *.split]
lohfu has quit [*.net *.split]
bridge[evilred] has quit [*.net *.split]
ToxicFrog has quit [*.net *.split]
GrimSleepless has quit [*.net *.split]
c_wraith has quit [*.net *.split]
alp has quit [*.net *.split]
evax has quit [*.net *.split]
edwtjo has quit [*.net *.split]
puffnfresh_ has quit [*.net *.split]
sepi``` has quit [*.net *.split]
lc has quit [*.net *.split]
timmw has quit [*.net *.split]
judson_ has quit [*.net *.split]
blibberblob has quit [*.net *.split]
nixy37 has quit [*.net *.split]
gspia has quit [*.net *.split]
wild_buffalo has quit [*.net *.split]
obadz has quit [*.net *.split]
yuken has quit [*.net *.split]
cyris212 has quit [*.net *.split]
eyJhb has quit [*.net *.split]
vk3wtf has quit [*.net *.split]
davidcl has quit [*.net *.split]
br_ has quit [*.net *.split]
jackdk has quit [*.net *.split]
dbe has quit [*.net *.split]
awaz has quit [*.net *.split]
naominitel has quit [*.net *.split]
drewc has quit [*.net *.split]
lvmond has quit [*.net *.split]
rixed has quit [*.net *.split]
lockshaw has quit [*.net *.split]
bsima has quit [*.net *.split]
drozdziak1 has quit [*.net *.split]
lpsmith_ has quit [*.net *.split]
monokrome has quit [*.net *.split]
skatista has quit [*.net *.split]
hodapp has quit [*.net *.split]
j4m3s__ has quit [*.net *.split]
heath has quit [*.net *.split]
DigitalKiwi has quit [*.net *.split]
superbaloo has quit [*.net *.split]
Athas has quit [*.net *.split]
Niall has quit [*.net *.split]
acertain has quit [*.net *.split]
phI||Ip has quit [*.net *.split]
mightybyte has quit [*.net *.split]
ok2` has quit [*.net *.split]
ericnoan has quit [*.net *.split]
Guest1826 has quit [*.net *.split]
emacsoma1 has quit [*.net *.split]
leah2 has quit [*.net *.split]
f0x has quit [*.net *.split]
chagra has quit [*.net *.split]
elibrokeit has quit [*.net *.split]
o1lo01ol1o has quit [*.net *.split]
fenedor has quit [*.net *.split]
waleee-cl has quit [*.net *.split]
bvdw has quit [*.net *.split]
mDuff has quit [*.net *.split]
turona has quit [*.net *.split]
mvnetbiz_ has quit [*.net *.split]
sb0 has quit [*.net *.split]
Supersonic has quit [*.net *.split]
cole-h has quit [*.net *.split]
nadley has quit [*.net *.split]
spacefrogg_ has quit [*.net *.split]
tilcreator has quit [*.net *.split]
jgeerds has quit [*.net *.split]
magnetophon has quit [*.net *.split]
alex`` has quit [*.net *.split]
callahad870 has quit [*.net *.split]
jjakob has quit [*.net *.split]
jluttine has quit [*.net *.split]
Scriptkiddi has quit [*.net *.split]
aw has quit [*.net *.split]
felixfoertsch has quit [*.net *.split]
fresheyeball has quit [*.net *.split]
h0m1 has quit [*.net *.split]
lejonet has quit [*.net *.split]
mac10688 has quit [*.net *.split]
vesper11 has quit [*.net *.split]
zaeph has quit [*.net *.split]
shabius has quit [*.net *.split]
tokudan has quit [*.net *.split]
LysergicDreams has quit [*.net *.split]
ehmry has quit [*.net *.split]
fre has quit [*.net *.split]
WilliButz has quit [*.net *.split]
vuko has quit [*.net *.split]
gerschtli has quit [*.net *.split]
mumuluxi has quit [*.net *.split]
mzan has quit [*.net *.split]
fuzen has quit [*.net *.split]
immae has quit [*.net *.split]
ddima has quit [*.net *.split]
techtangents has quit [*.net *.split]
sevanspowell has quit [*.net *.split]
blackriversoftwa has quit [*.net *.split]
teehemkay has quit [*.net *.split]
rsoeldner has quit [*.net *.split]
CRTified has quit [*.net *.split]
rotaerk has quit [*.net *.split]
Fulgen has quit [*.net *.split]
genesis has quit [*.net *.split]
misuzu has quit [*.net *.split]
hexo_ has quit [*.net *.split]
snajpa has quit [*.net *.split]
Adluc has quit [*.net *.split]
deni has quit [*.net *.split]
afics has quit [*.net *.split]
craige has quit [*.net *.split]
fpob has quit [*.net *.split]
averell has quit [*.net *.split]
dminuoso has quit [*.net *.split]
srk has quit [*.net *.split]
mrus has quit [*.net *.split]
moredhel has quit [*.net *.split]
rprospero has quit [*.net *.split]
hyperfekt has quit [*.net *.split]
Rovanion has quit [*.net *.split]
parseval has quit [*.net *.split]
_cyril_ has quit [*.net *.split]
Tritlo has quit [*.net *.split]
aristid has quit [*.net *.split]
cbarrett has quit [*.net *.split]
leotaku has quit [*.net *.split]
nst^ has quit [*.net *.split]
coderobe has quit [*.net *.split]
jmeredith has quit [*.net *.split]
witchof0x20 has quit [*.net *.split]
_rvl has quit [*.net *.split]
ardumont has quit [*.net *.split]
romanofski has quit [*.net *.split]
valwal has quit [*.net *.split]
LnL has quit [*.net *.split]
mkaito has quit [*.net *.split]
jeregrine has quit [*.net *.split]
AluisioASG has quit [*.net *.split]
joshmeredith has quit [*.net *.split]
lally has quit [*.net *.split]
tg has quit [*.net *.split]
m4ts has quit [*.net *.split]
Miyu-saki has quit [*.net *.split]
shad has quit [*.net *.split]
evck has quit [*.net *.split]
tnks has quit [*.net *.split]
digitalgrease has quit [*.net *.split]
jmarin217 has quit [*.net *.split]
jol has quit [*.net *.split]
e has quit [*.net *.split]
xacktm has quit [*.net *.split]
davean has quit [*.net *.split]
amanjeev has quit [*.net *.split]
klys has quit [*.net *.split]
yourfate has quit [*.net *.split]
krasnij has quit [*.net *.split]
sauyon has quit [*.net *.split]
lecethimon has quit [*.net *.split]
sshow has quit [*.net *.split]
dredozubov has quit [*.net *.split]
mk_modrzew has quit [*.net *.split]
Ashy has quit [*.net *.split]
benny has quit [*.net *.split]
davidtwco has quit [*.net *.split]
heatm1s3r has quit [*.net *.split]
etrepum has quit [*.net *.split]
sgraf has quit [*.net *.split]
pittma has quit [*.net *.split]
raboof has quit [*.net *.split]
chrisaw has quit [*.net *.split]
ctp has quit [*.net *.split]
tsrt^ has quit [*.net *.split]
joepie91 has quit [*.net *.split]
drgbr has quit [*.net *.split]
ashkitten has quit [*.net *.split]
gausby_ has quit [*.net *.split]
Shell has quit [*.net *.split]
johanot has quit [*.net *.split]
lirzhv has quit [*.net *.split]
pkral has quit [*.net *.split]
Dagger has quit [*.net *.split]
dozn has quit [*.net *.split]
rembo10 has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
lightbulbjim has quit [*.net *.split]
malSet has quit [*.net *.split]
{^_^} has quit [*.net *.split]
kyren has quit [*.net *.split]
KennosiS has quit [*.net *.split]
fpletz has quit [*.net *.split]
GlennS has quit [*.net *.split]
PyroLagus has quit [*.net *.split]
flokli has quit [*.net *.split]
betaboon has quit [*.net *.split]
siel has quit [*.net *.split]
inkOne__ has quit [*.net *.split]
aranea has quit [*.net *.split]
sigwinch28 has quit [*.net *.split]
f0x2 has quit [*.net *.split]
abbe has quit [*.net *.split]
mdash has quit [*.net *.split]
smj has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
djanatyn_ has quit [*.net *.split]
f18d7dc7 has quit [*.net *.split]
cocreature has quit [*.net *.split]
Intensity has quit [*.net *.split]
djahandarie has quit [*.net *.split]
goodwill has quit [*.net *.split]
Izorkin has quit [*.net *.split]
mmlb has quit [*.net *.split]
ambroiseur has quit [*.net *.split]
tpanum- has quit [*.net *.split]
arianvp has quit [*.net *.split]
wolfshappen has quit [*.net *.split]
xqsl has quit [*.net *.split]
luigy has quit [*.net *.split]
evhan has quit [*.net *.split]
nckx has quit [*.net *.split]
skrzyp has quit [*.net *.split]
jboy has quit [*.net *.split]
dsg has quit [*.net *.split]
DerGuteMoritz has quit [*.net *.split]
helpusobi has quit [*.net *.split]
spacekookie has quit [*.net *.split]
mniip has quit [*.net *.split]
umachan has quit [*.net *.split]
simukis_ has quit [*.net *.split]
Czen has quit [*.net *.split]
jD91mZM2 has quit [*.net *.split]
hyper_ch has quit [*.net *.split]
jerryaldrichiii has quit [*.net *.split]
hark has quit [*.net *.split]
pie_[bnc] has quit [*.net *.split]
Profpatsch has quit [*.net *.split]
Mrmaxmeier has quit [*.net *.split]
wrl has quit [*.net *.split]
amosbird has quit [*.net *.split]
ptrcmd has quit [*.net *.split]
naivesheep has quit [*.net *.split]
aszlig has quit [*.net *.split]
otulp has quit [*.net *.split]
dirkx_ has quit [*.net *.split]
fionera has quit [*.net *.split]
octe has quit [*.net *.split]
mgdm has quit [*.net *.split]
cruxeternus has quit [*.net *.split]
glines has quit [*.net *.split]
steell has quit [*.net *.split]
MarcWeber has quit [*.net *.split]
sveitser has quit [*.net *.split]
penguwin has quit [*.net *.split]
voidcontext has quit [*.net *.split]
betawaffle has quit [*.net *.split]
Hunterkll has quit [*.net *.split]
das_j has quit [*.net *.split]
zarel has quit [*.net *.split]
amir has quit [*.net *.split]
M2easy2do[m] has quit [*.net *.split]
softinio[m] has quit [*.net *.split]
emmanuelrosa[m] has quit [*.net *.split]
p-h[m] has quit [*.net *.split]
tlater[m] has quit [*.net *.split]
luc65r[m] has quit [*.net *.split]
WillW has quit [*.net *.split]
PlayfulCuriosity has quit [*.net *.split]
slby[m] has quit [*.net *.split]
dpc has quit [*.net *.split]
layus[m] has quit [*.net *.split]
DenisLehmann[m] has quit [*.net *.split]
bennofs[m] has quit [*.net *.split]
haslersn has quit [*.net *.split]
sylvie[m] has quit [*.net *.split]
goibhniu has quit [*.net *.split]
schmittlauch[m] has quit [*.net *.split]
Dandellion has quit [*.net *.split]
deepchange[m] has quit [*.net *.split]
Ericson2314 has quit [*.net *.split]
cyberwolf[m] has quit [*.net *.split]
pheoxy has quit [*.net *.split]
cptchaos83 has quit [*.net *.split]
hax404 has quit [*.net *.split]
kahiru has quit [*.net *.split]
eddyb has quit [*.net *.split]
Arahael has quit [*.net *.split]
xantoz has quit [*.net *.split]
mir100 has quit [*.net *.split]
pepesza has quit [*.net *.split]
Church- has quit [*.net *.split]
tilpner has quit [*.net *.split]
andymandias has quit [*.net *.split]
__monty__ has quit [*.net *.split]
epl692 has quit [*.net *.split]
alexbakker has quit [*.net *.split]
palo has quit [*.net *.split]
johnnyfive has quit [*.net *.split]
janneke has quit [*.net *.split]
Lears has quit [*.net *.split]
mounty has quit [*.net *.split]
captn3m0 has quit [*.net *.split]
niksnut has quit [*.net *.split]
evanjs has quit [*.net *.split]
Blessjah has quit [*.net *.split]
wucke13 has quit [*.net *.split]
qubasa has quit [*.net *.split]
kcalvinalvin has quit [*.net *.split]
petar has quit [*.net *.split]
adamCS has quit [*.net *.split]
exarkun has quit [*.net *.split]
lukego has quit [*.net *.split]
rizary has quit [*.net *.split]
fnords has quit [*.net *.split]
eyenx has quit [*.net *.split]
minicom has quit [*.net *.split]
Gohla has quit [*.net *.split]
greymalkin has quit [*.net *.split]
nh2 has quit [*.net *.split]
mutantmell has quit [*.net *.split]
mkaito_ has quit [*.net *.split]
myme has quit [*.net *.split]
ZeDestructor has quit [*.net *.split]
MightyJoe has quit [*.net *.split]
andersk_ has quit [*.net *.split]
AmandaC has quit [*.net *.split]
SyrupThinker has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
bitonic has quit [*.net *.split]
philipcristiano has quit [*.net *.split]
alanz has quit [*.net *.split]
delan has quit [*.net *.split]
rauno has quit [*.net *.split]
agb has quit [*.net *.split]
teozkr has quit [*.net *.split]
energizer has quit [*.net *.split]
nisstyre has quit [*.net *.split]
kloenk has quit [*.net *.split]
cosimone has quit [*.net *.split]
Rusty1 has quit [*.net *.split]
Emantor has quit [*.net *.split]
lord| has quit [*.net *.split]
akaWolf has quit [*.net *.split]
chiefgoat has quit [*.net *.split]
dingenskirchen has quit [*.net *.split]
siiky has quit [*.net *.split]
isHavvyGhosting has quit [*.net *.split]
pikajude has quit [*.net *.split]
ajs124 has quit [*.net *.split]
realrokka has quit [*.net *.split]
ericsagnes has quit [*.net *.split]
plutes has quit [*.net *.split]
ydlr has quit [*.net *.split]
abrar has quit [*.net *.split]
megfault has quit [*.net *.split]
dustinm has quit [*.net *.split]
gcoakes[m] has quit [*.net *.split]
wildtrees[m] has quit [*.net *.split]
timokau[m] has quit [*.net *.split]
wjjunyor[m] has quit [*.net *.split]
pingveno[m] has quit [*.net *.split]
eoli3n has quit [*.net *.split]
bobvanderlinden_ has quit [*.net *.split]
Smith[m] has quit [*.net *.split]
nikivi has quit [*.net *.split]
st3r4g[m] has quit [*.net *.split]
cornu has quit [*.net *.split]
Valodim[m] has quit [*.net *.split]
thefloweringash has quit [*.net *.split]
rendeko[m] has quit [*.net *.split]
fgaz has quit [*.net *.split]
lorimer has quit [*.net *.split]
medvid_ has quit [*.net *.split]
greizgh has quit [*.net *.split]
FRidh has quit [*.net *.split]
markus1189 has quit [*.net *.split]
inkbottle has quit [*.net *.split]
shibboleth has quit [*.net *.split]
Guest97094 has quit [*.net *.split]
KeiraT has quit [*.net *.split]
jb55 has quit [*.net *.split]
gxt has quit [*.net *.split]
klntsky has quit [*.net *.split]
oida has quit [*.net *.split]
andreas303 has quit [*.net *.split]
cartwright has quit [*.net *.split]
phreedom has quit [*.net *.split]
xelxebar has quit [*.net *.split]
mlen has quit [*.net *.split]
Jackneill has quit [*.net *.split]
Heirlung has quit [*.net *.split]
choward has quit [*.net *.split]
nixy has quit [*.net *.split]
qyliss has quit [*.net *.split]
crusader1 has quit [*.net *.split]
thonkpod has quit [*.net *.split]
kwork has quit [*.net *.split]
Kritnich has quit [*.net *.split]
aminechikhaoui has quit [*.net *.split]
notgne2 has quit [*.net *.split]
puck has quit [*.net *.split]
qz has quit [*.net *.split]
Guest17523 has quit [*.net *.split]
jtcs has quit [*.net *.split]
makefu has quit [*.net *.split]
nahamu has quit [*.net *.split]
ekleog has quit [*.net *.split]
Raito_Bezarius has quit [*.net *.split]
danderson has quit [*.net *.split]
Khetzal has quit [*.net *.split]
barrucadu has quit [*.net *.split]
statusfailed has quit [*.net *.split]
m1cr0m4n has quit [*.net *.split]
yvan-sraka has quit [*.net *.split]
clever has quit [*.net *.split]
plp_ has quit [*.net *.split]
bastii has quit [*.net *.split]
nurelin has quit [*.net *.split]
shiver has quit [*.net *.split]
swapgs has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
cYmen has quit [*.net *.split]
jtobin has quit [*.net *.split]
SOO7 has quit [*.net *.split]
swistak35 has quit [*.net *.split]
stew has quit [*.net *.split]
lurkless has quit [*.net *.split]
migy has quit [*.net *.split]
fl0_id has quit [*.net *.split]
kaychaks has quit [*.net *.split]
reanimus has quit [*.net *.split]
edcragg has quit [*.net *.split]
page has quit [*.net *.split]
Olgierd has quit [*.net *.split]
nbp has quit [*.net *.split]
the-kenny has quit [*.net *.split]
kisonecat has quit [*.net *.split]
niten has quit [*.net *.split]
asymmetric has quit [*.net *.split]
ryantm has quit [*.net *.split]
jperras has quit [*.net *.split]
buffet has quit [*.net *.split]
benmachine has quit [*.net *.split]
ben has quit [*.net *.split]
travelion7 has quit [*.net *.split]
grumble has quit [*.net *.split]
bdju has quit [*.net *.split]
CodeWarrior has quit [*.net *.split]
AstroBadger has quit [*.net *.split]
Twey has quit [*.net *.split]
adisbladis has quit [*.net *.split]
Phlogistique has quit [*.net *.split]
zfnmxt has quit [*.net *.split]
duckonomy has quit [*.net *.split]
trfl has quit [*.net *.split]
Baughn has quit [*.net *.split]
shapr has quit [*.net *.split]
fraun has quit [*.net *.split]
kleisli has quit [*.net *.split]
ng0 has quit [*.net *.split]
ixxie has quit [*.net *.split]
dontobey has quit [*.net *.split]
azdle has quit [*.net *.split]
Ralith_ has quit [*.net *.split]
NoctisLabs has quit [*.net *.split]
lassulus has quit [*.net *.split]
grw has quit [*.net *.split]
delroth has quit [*.net *.split]
CcxWrk has quit [*.net *.split]
meck has quit [*.net *.split]
infty has quit [*.net *.split]
zertox has quit [*.net *.split]
fre2 has quit [*.net *.split]
chin-tastic has quit [*.net *.split]
multun has quit [*.net *.split]
Unode has quit [*.net *.split]
otti0815 has quit [*.net *.split]
devalot has quit [*.net *.split]
infinisil has quit [*.net *.split]
pareidolia_ has quit [*.net *.split]
leothrix has quit [*.net *.split]
cransom has quit [*.net *.split]
p01ar_ has quit [*.net *.split]
Acou_Bass has quit [*.net *.split]
M-Gregoire49 has quit [*.net *.split]
iMatejC has quit [*.net *.split]
cyphase has quit [*.net *.split]
gyroninja has quit [*.net *.split]
kaliumxyz has quit [*.net *.split]
anderslundstedt has quit [*.net *.split]
fiddlerwoaroof has quit [*.net *.split]
XenGi has quit [*.net *.split]
jeaye has quit [*.net *.split]
bukkitgerman has quit [*.net *.split]
seanparsons has quit [*.net *.split]
emilsp has quit [*.net *.split]
glasserc has quit [*.net *.split]
sigtrm has quit [*.net *.split]
juhoh has quit [*.net *.split]
szicari has quit [*.net *.split]
shyim has quit [*.net *.split]
dongcarl has quit [*.net *.split]
unacceptable has quit [*.net *.split]
trulsa has quit [*.net *.split]
smove has quit [*.net *.split]
risson has quit [*.net *.split]
martyet-o has quit [*.net *.split]
johnny101 has quit [*.net *.split]
gordon has quit [*.net *.split]
dkibi has quit [*.net *.split]
Enzime has quit [*.net *.split]
pemeunier has quit [*.net *.split]
monsieurp has quit [*.net *.split]
maurer has quit [*.net *.split]
n1x_ has quit [*.net *.split]
pingiun has quit [*.net *.split]
xensky has quit [*.net *.split]
FireFly has quit [*.net *.split]
enteee has quit [*.net *.split]
raoul has quit [*.net *.split]
jeschli has quit [*.net *.split]
pbogdan has quit [*.net *.split]
ArdaXi_ has quit [*.net *.split]
yorick has quit [*.net *.split]
dominikh has quit [*.net *.split]
Philonous has quit [*.net *.split]
litschi has quit [*.net *.split]
HedgeMage has quit [*.net *.split]
dweller has quit [*.net *.split]
charukiewicz has quit [*.net *.split]
gambpang has quit [*.net *.split]
drainful has quit [*.net *.split]
_e has quit [*.net *.split]
silver_hook has quit [*.net *.split]
habbah has quit [*.net *.split]
u0_a121 has quit [*.net *.split]
vandenoever has quit [*.net *.split]
is_null has quit [*.net *.split]
Maxdamantus has quit [*.net *.split]
samrose has quit [*.net *.split]
justanotheruser has quit [*.net *.split]
gentauro has quit [*.net *.split]
buckley310 has quit [*.net *.split]
evils has quit [*.net *.split]
ivan has quit [*.net *.split]
dooms_ has quit [*.net *.split]
zemm has quit [*.net *.split]
ikwildrpepper has quit [*.net *.split]
Diogo has quit [*.net *.split]
benedikt93 has quit [*.net *.split]
duairc has quit [*.net *.split]
amfl has quit [*.net *.split]
lukash|away has quit [*.net *.split]
ksixty has quit [*.net *.split]
endocrimes has quit [*.net *.split]
marcusr has quit [*.net *.split]
troydm has quit [*.net *.split]
oleks has quit [*.net *.split]
packer has quit [*.net *.split]
bgamari has quit [*.net *.split]
lewo has quit [*.net *.split]
jonge has quit [*.net *.split]
duckfullstop has quit [*.net *.split]
tarnacious has quit [*.net *.split]
ent has quit [*.net *.split]
mupf has quit [*.net *.split]
pjan has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
boolman has quit [*.net *.split]
commander has quit [*.net *.split]
inf has quit [*.net *.split]
linuus has quit [*.net *.split]
xensky_ has quit [*.net *.split]
kgz has quit [*.net *.split]
ggp0647` has quit [*.net *.split]
aleph- has quit [*.net *.split]
nore has quit [*.net *.split]
Yaniel has quit [*.net *.split]
liori has quit [*.net *.split]
georges has quit [*.net *.split]
mg- has quit [*.net *.split]
Serus has quit [*.net *.split]
tarruda has quit [*.net *.split]
ivegotasthma has quit [*.net *.split]
toppler has quit [*.net *.split]
codezero has quit [*.net *.split]
switchy has quit [*.net *.split]
andromeda-galaxy has quit [*.net *.split]
epta has quit [*.net *.split]
drewr has quit [*.net *.split]
lux1 has quit [*.net *.split]
thommey has quit [*.net *.split]
dsx has quit [*.net *.split]
wolke has quit [*.net *.split]
torque has quit [*.net *.split]
JohnAZoidberg has quit [*.net *.split]
aria has quit [*.net *.split]
hamishmack has quit [*.net *.split]
nand0p_ has quit [*.net *.split]
jchw has quit [*.net *.split]
orcus has quit [*.net *.split]
feepo has quit [*.net *.split]
d1rewolf has quit [*.net *.split]
CustosLimen has quit [*.net *.split]
englishm has quit [*.net *.split]
michaelpj has quit [*.net *.split]
marcinkuzminski has quit [*.net *.split]
joedevivo has quit [*.net *.split]
c00w has quit [*.net *.split]
doublex__ has quit [*.net *.split]
jfhbrook has quit [*.net *.split]
midchildan has quit [*.net *.split]
dukedave has quit [*.net *.split]
mauli has quit [*.net *.split]
jared-w has quit [*.net *.split]
MinceR has quit [*.net *.split]
zimbatm has quit [*.net *.split]
carter has quit [*.net *.split]
bgupta has quit [*.net *.split]
pingveno has quit [*.net *.split]
wildsebastian has quit [*.net *.split]
emilazy has quit [*.net *.split]
Hedgework has quit [*.net *.split]
uwap has quit [*.net *.split]
angerman has quit [*.net *.split]
srhb has quit [*.net *.split]
Shados has quit [*.net *.split]
Taneb has quit [*.net *.split]
incognito9999 has quit [*.net *.split]
ldlework has quit [*.net *.split]
sphalerite has quit [*.net *.split]
glowpelt has quit [*.net *.split]
disasm has quit [*.net *.split]
Kim has quit [*.net *.split]
rot13 has quit [*.net *.split]
nwspk has quit [*.net *.split]
Ankhers has quit [*.net *.split]
kini has quit [*.net *.split]
etu has quit [*.net *.split]
marcinja has quit [*.net *.split]
awygle has quit [*.net *.split]
shlevy has quit [*.net *.split]
__red__ has quit [*.net *.split]
develCuy has quit [*.net *.split]
esclear has quit [*.net *.split]
drvirgilio has quit [*.net *.split]
coot has quit [*.net *.split]
nlofaro has quit [*.net *.split]
chessai has quit [*.net *.split]
noonien has quit [*.net *.split]
kitemikaze has quit [*.net *.split]
tazjin has quit [*.net *.split]
oharvey has quit [*.net *.split]
NemesisD has quit [*.net *.split]
hexa- has quit [*.net *.split]
q3k has quit [*.net *.split]
nkaretnikov has quit [*.net *.split]
azazel has quit [*.net *.split]
fadenb has quit [*.net *.split]
pointfree has quit [*.net *.split]
taktoa[c] has quit [*.net *.split]
woffs has quit [*.net *.split]
W1lkins has quit [*.net *.split]
pbb_ has quit [*.net *.split]
komasa has quit [*.net *.split]
nek0 has quit [*.net *.split]
boeg has quit [*.net *.split]
gchristensen has quit [*.net *.split]
TallerGhostWalt_ has quit [*.net *.split]
Luker has quit [*.net *.split]
nikola has quit [*.net *.split]
braingain has quit [*.net *.split]
mankyKitty has quit [*.net *.split]
newhoggy has quit [*.net *.split]
jbetz has quit [*.net *.split]
NekomimiScience has quit [*.net *.split]
nimblepoultry has quit [*.net *.split]
mog has quit [*.net *.split]
mikky has quit [*.net *.split]
`slikts has quit [*.net *.split]
swflint has quit [*.net *.split]
morr has quit [*.net *.split]
dani- has quit [*.net *.split]
antoszka has quit [*.net *.split]
softinio has quit [*.net *.split]
LeshaInc has quit [*.net *.split]
fooker has quit [*.net *.split]
liff has quit [*.net *.split]
njd has quit [*.net *.split]
ajp has quit [*.net *.split]
statusbot has quit [*.net *.split]
catern has quit [*.net *.split]
ornxka has quit [*.net *.split]
dev3 has quit [*.net *.split]
ShaRose has quit [*.net *.split]
primeos has quit [*.net *.split]
eon` has quit [*.net *.split]
mrSpec has quit [*.net *.split]
daGrevis has quit [*.net *.split]
kumikumi has quit [*.net *.split]
KONTOL has quit [*.net *.split]
tghume has quit [*.net *.split]
Orbstheorem has quit [*.net *.split]
erhandsome has quit [*.net *.split]
Swant has quit [*.net *.split]
fyuuri has quit [*.net *.split]
electrocat has quit [*.net *.split]
wirew0rm has quit [*.net *.split]
endgame has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
mstruebing has quit [*.net *.split]
hl has quit [*.net *.split]
dmj` has quit [Max SendQ exceeded]
r0bby has quit [Max SendQ exceeded]
andi- has joined #nixos
heatm1s3r has joined #nixos
parseval has joined #nixos
bitonic has joined #nixos
pittma has joined #nixos
raboof has joined #nixos
Arahael has joined #nixos
ericnoan has joined #nixos
SyrupThinker has joined #nixos
davidtwco has joined #nixos
Baughn has joined #nixos
aristid has joined #nixos
Aleksejs has joined #nixos
Tritlo has joined #nixos
drewr has joined #nixos
averell has joined #nixos
alanz has joined #nixos
xantoz has joined #nixos
scott has joined #nixos
Guest1826 has joined #nixos
thoughtpolice has joined #nixos
chrisaw has joined #nixos
vdemeester has joined #nixos
sgraf has joined #nixos
etrepum has joined #nixos
philipcristiano has joined #nixos
cbarrett has joined #nixos
ok2` has joined #nixos
_cyril_ has joined #nixos
teozkr has joined #nixos
rauno has joined #nixos
agb has joined #nixos
delan has joined #nixos
pepesza has joined #nixos
vandenoever has joined #nixos
mir100 has joined #nixos
tsrt^ has joined #nixos
Adluc has joined #nixos
ctp has joined #nixos
gerschtli has joined #nixos
cole-h has joined #nixos
mumuluxi has joined #nixos
fuzen has joined #nixos
f18d7dc7 has joined #nixos
digitalgrease has joined #nixos
andreas303 has joined #nixos
shibboleth has joined #nixos
rsoeldner has joined #nixos
jmarin217 has joined #nixos
nckx has joined #nixos
Shell has joined #nixos
octe has joined #nixos
_rvl has joined #nixos
tg has joined #nixos
Church- has joined #nixos
cyberwolf[m] has joined #nixos
plutes has joined #nixos
das_j has joined #nixos
pheoxy has joined #nixos
Hunterkll has joined #nixos
inkbottle has joined #nixos
Dandellion has joined #nixos
haslersn has joined #nixos
infty has joined #nixos
qyliss has joined #nixos
kwork has joined #nixos
jchw has joined #nixos
Swant has joined #nixos
shlevy has joined #nixos
rot13 has joined #nixos
smove has joined #nixos
ryantm has joined #nixos
asymmetric has joined #nixos
taktoa[c] has joined #nixos
pingveno has joined #nixos
SOO7 has joined #nixos
bob_twinkles has joined #nixos
qz has joined #nixos
epta has joined #nixos
nurelin has joined #nixos
pemeunier has joined #nixos
d1rewolf has joined #nixos
NekomimiScience has joined #nixos
meck has joined #nixos
kitemikaze has joined #nixos
Orbstheorem has joined #nixos
mniip_ has joined #nixos
boegel has joined #nixos
ProofTechnique has joined #nixos
qyliss has quit [*.net *.split]
kwork has quit [*.net *.split]
qz has quit [*.net *.split]
nurelin has quit [*.net *.split]
bob_twinkles has quit [*.net *.split]
SOO7 has quit [*.net *.split]
asymmetric has quit [*.net *.split]
ryantm has quit [*.net *.split]
Baughn has quit [*.net *.split]
meck has quit [*.net *.split]
infty has quit [*.net *.split]
smove has quit [*.net *.split]
pemeunier has quit [*.net *.split]
tv has joined #nixos
tsrt^ has quit [Max SendQ exceeded]
samueldr has joined #nixos
shafox has joined #nixos
GrimSleepless has joined #nixos
wavirc22 has joined #nixos
chloekek has joined #nixos
Thra11 has joined #nixos
trcm has joined #nixos
orbekk has joined #nixos
fling has joined #nixos
endformationage has joined #nixos
Mateon1 has joined #nixos
growpotkin has joined #nixos
obadz has joined #nixos
bridge[evilred] has joined #nixos
reivilibre has joined #nixos
Athas has joined #nixos
gspia has joined #nixos
adamtkh has joined #nixos
lohfu has joined #nixos
cyris212 has joined #nixos
awaz has joined #nixos
alp has joined #nixos
ravndal has joined #nixos
CMCDragonkai has joined #nixos
sepi``` has joined #nixos
judson_ has joined #nixos
ToxicFrog has joined #nixos
ajmcmiddlin has joined #nixos
davidcl has joined #nixos
br_ has joined #nixos
evax has joined #nixos
vk3wtf has joined #nixos
nixy37 has joined #nixos
puffnfresh_ has joined #nixos
kraem has joined #nixos
wild_buffalo has joined #nixos
c_wraith has joined #nixos
yuken has joined #nixos
blibberblob has joined #nixos
Cale has joined #nixos
eyJhb has joined #nixos
drewc has joined #nixos
efriend has joined #nixos
alunduil has joined #nixos
edwtjo has joined #nixos
lc has joined #nixos
dbe has joined #nixos
timmw has joined #nixos
MasseR has joined #nixos
bsima has joined #nixos
lvmond has joined #nixos
naominitel has joined #nixos
lockshaw has joined #nixos
rixed has joined #nixos
jackdk has joined #nixos
skatista has joined #nixos
hodapp has joined #nixos
monokrome has joined #nixos
lpsmith_ has joined #nixos
drozdziak1 has joined #nixos
DigitalKiwi has joined #nixos
superbaloo has joined #nixos
Niall has joined #nixos
j4m3s__ has joined #nixos
heath has joined #nixos
mightybyte has joined #nixos
acertain has joined #nixos
phI||Ip has joined #nixos
monokrome has quit [Max SendQ exceeded]
samueldr has quit [Excess Flood]
hodapp has quit [Max SendQ exceeded]
lohfu has quit [Max SendQ exceeded]
manveru has joined #nixos
ProofTechnique has joined #nixos
ProofTechnique has quit [Changing host]
manveru has joined #nixos
manveru has quit [Changing host]
peanutbutter144 has joined #nixos
mlen has joined #nixos
nixy has joined #nixos
qyliss has joined #nixos
crusader1 has joined #nixos
kwork has joined #nixos
thonkpod has joined #nixos
jtcs has joined #nixos
benmachine has joined #nixos
Jackneill has joined #nixos
notgne2 has joined #nixos
choward has joined #nixos
aminechikhaoui has joined #nixos
nahamu has joined #nixos
Kritnich has joined #nixos
makefu has joined #nixos
Guest17523 has joined #nixos
puck has joined #nixos
Heirlung has joined #nixos
Khetzal has joined #nixos
statusfailed has joined #nixos
danderson has joined #nixos
barrucadu has joined #nixos
ekleog has joined #nixos
Raito_Bezarius has joined #nixos
qz has joined #nixos
stew has joined #nixos
Squarism has joined #nixos
niten has joined #nixos
plp_ has joined #nixos
edef has joined #nixos
bastii has joined #nixos
ben has joined #nixos
edcragg has joined #nixos
nbp has joined #nixos
clever has joined #nixos
Phlogistique has joined #nixos
migy has joined #nixos
ryantm has joined #nixos
grumble has joined #nixos
CodeWarrior has joined #nixos
reanimus has joined #nixos
the-kenny has joined #nixos
page has joined #nixos
fl0_id has joined #nixos
lurkless has joined #nixos
SOO7 has joined #nixos
m1cr0m4n has joined #nixos
jtobin has joined #nixos
kisonecat has joined #nixos
asymmetric has joined #nixos
Olgierd has joined #nixos
swapgs has joined #nixos
bob_twinkles has joined #nixos
Twey has joined #nixos
shiver has joined #nixos
buffet has joined #nixos
travelion7 has joined #nixos
nurelin has joined #nixos
yvan-sraka has joined #nixos
cYmen has joined #nixos
swistak35 has joined #nixos
trfl has joined #nixos
jperras has joined #nixos
bdju has joined #nixos
kaychaks has joined #nixos
duckonomy has joined #nixos
shapr has joined #nixos
fraun has joined #nixos
adisbladis has joined #nixos
AstroBadger has joined #nixos
zfnmxt has joined #nixos
lurkless has quit [Max SendQ exceeded]
vandenoever has quit [*.net *.split]
acowley has joined #nixos
epta has quit [*.net *.split]
tsrt^ has joined #nixos
d1rewolf has quit [Ping timeout: 245 seconds]
lurkless has joined #nixos
hodapp has joined #nixos
lohfu1 has joined #nixos
danguita has joined #nixos
elvishjerricco has quit [Ping timeout: 260 seconds]
makefu has quit [Quit: WeeChat 2.6]
makefu has joined #nixos
luigy has joined #nixos
aanderse has quit [Ping timeout: 260 seconds]
hoek has joined #nixos
samueldr has joined #nixos
haslersn has quit [Ping timeout: 256 seconds]
cyberwolf[m] has quit [Ping timeout: 256 seconds]
Dandellion has quit [Ping timeout: 256 seconds]
pheoxy has quit [Ping timeout: 256 seconds]
kriztw has joined #nixos
samrose has joined #nixos
Maxdamantus has joined #nixos
is_null has joined #nixos
justanotheruser has joined #nixos
buckley310 has joined #nixos
silver_hook has joined #nixos
ivan has joined #nixos
amfl has joined #nixos
tarnacious has joined #nixos
packer has joined #nixos
gentauro has joined #nixos
ikwildrpepper has joined #nixos
linuus has joined #nixos
u0_a121 has joined #nixos
evils has joined #nixos
liori has joined #nixos
inf has joined #nixos
troydm has joined #nixos
habbah has joined #nixos
andromeda-galaxy has joined #nixos
benedikt93 has joined #nixos
codezero has joined #nixos
mg- has joined #nixos
switchy has joined #nixos
ivegotasthma has joined #nixos
marcusr has joined #nixos
pjan has joined #nixos
jonge has joined #nixos
bgamari has joined #nixos
kgz has joined #nixos
laerling has joined #nixos
mupf has joined #nixos
lux1 has joined #nixos
dooms_ has joined #nixos
georges has joined #nixos
boolman has joined #nixos
lewo has joined #nixos
zemm has joined #nixos
epta has joined #nixos
ggp0647` has joined #nixos
aleph- has joined #nixos
endocrimes has joined #nixos
lopsided98 has joined #nixos
oleks has joined #nixos
lukash|away has joined #nixos
xensky_ has joined #nixos
duairc has joined #nixos
nore has joined #nixos
toppler has joined #nixos
Yaniel has joined #nixos
vandenoever has joined #nixos
ent has joined #nixos
Diogo has joined #nixos
ksixty has joined #nixos
commander has joined #nixos
tarruda has joined #nixos
Serus has joined #nixos
duckfullstop has joined #nixos
thommey has joined #nixos
mpickering has quit [Ping timeout: 260 seconds]
Peter_Storm has quit [Ping timeout: 260 seconds]
diamondman has quit [Ping timeout: 260 seconds]
peel has quit [Ping timeout: 260 seconds]
tabasko has joined #nixos
ocharles has joined #nixos
kitemikaze has quit [*.net *.split]
taktoa[c] has quit [*.net *.split]
NekomimiScience has quit [*.net *.split]
Orbstheorem has quit [*.net *.split]
Swant has quit [*.net *.split]
darkf has joined #nixos
kleisli has joined #nixos
ng0 has joined #nixos
Baughn has joined #nixos
grw has joined #nixos
zertox has joined #nixos
delroth has joined #nixos
NoctisLabs has joined #nixos
lassulus has joined #nixos
fre2 has joined #nixos
glasserc has joined #nixos
martyet-o has joined #nixos
ixxie has joined #nixos
kaliumxyz has joined #nixos
gordon has joined #nixos
shyim has joined #nixos
szicari has joined #nixos
gyroninja has joined #nixos
trulsa has joined #nixos
meck has joined #nixos
unacceptable has joined #nixos
enteee has joined #nixos
pemeunier has joined #nixos
monsieurp has joined #nixos
CcxWrk has joined #nixos
Enzime has joined #nixos
Acou_Bass has joined #nixos
maurer has joined #nixos
infinisil has joined #nixos
dkibi has joined #nixos
azdle has joined #nixos
devalot has joined #nixos
seanparsons has joined #nixos
multun has joined #nixos
iMatejC has joined #nixos
leothrix has joined #nixos
sigtrm has joined #nixos
Ralith_ has joined #nixos
M-Gregoire49 has joined #nixos
chin-tastic has joined #nixos
dominikh has joined #nixos
fiddlerwoaroof has joined #nixos
anderslundstedt has joined #nixos
otti0815 has joined #nixos
XenGi has joined #nixos
cransom has joined #nixos
johnny101 has joined #nixos
bukkitgerman has joined #nixos
cyphase has joined #nixos
infty has joined #nixos
Unode has joined #nixos
p01ar_ has joined #nixos
juhoh has joined #nixos
pareidolia_ has joined #nixos
emilsp has joined #nixos
dongcarl has joined #nixos
jeaye has joined #nixos
risson has joined #nixos
smove has joined #nixos
dontobey has joined #nixos
n1x_ has joined #nixos
pingiun has joined #nixos
raoul has joined #nixos
xensky has joined #nixos
FireFly has joined #nixos
yorick has joined #nixos
Philonous has joined #nixos
jeschli has joined #nixos
pbogdan has joined #nixos
litschi has joined #nixos
_e has joined #nixos
HedgeMage has joined #nixos
ArdaXi_ has joined #nixos
gambpang has joined #nixos
dweller has joined #nixos
charukiewicz has joined #nixos
drainful has joined #nixos
tabasko has quit [*.net *.split]
drewr has quit [*.net *.split]
andi- has quit [*.net *.split]
jchw has quit [*.net *.split]
pingveno has quit [*.net *.split]
rot13 has quit [*.net *.split]
shlevy has quit [*.net *.split]
pasukon has quit [Ping timeout: 260 seconds]
mitsuhiko has quit [Ping timeout: 260 seconds]
georgyo has quit [Ping timeout: 260 seconds]
bitonic has quit [Ping timeout: 240 seconds]
tazjin has joined #nixos
oharvey has joined #nixos
NemesisD has joined #nixos
q3k has joined #nixos
fadenb has joined #nixos
morr has joined #nixos
W1lkins has joined #nixos
coot has joined #nixos
mog has joined #nixos
nek0 has joined #nixos
NekomimiScience has joined #nixos
nikola has joined #nixos
liff has joined #nixos
nkaretnikov has joined #nixos
taktoa[c] has joined #nixos
chessai has joined #nixos
braingain has joined #nixos
hexa- has joined #nixos
pbb_ has joined #nixos
swflint has joined #nixos
dani- has joined #nixos
electrocat has joined #nixos
komasa has joined #nixos
fooker has joined #nixos
woffs has joined #nixos
nimblepoultry has joined #nixos
azazel has joined #nixos
Luker has joined #nixos
newhoggy has joined #nixos
kitemikaze has joined #nixos
gchristensen has joined #nixos
antoszka has joined #nixos
nlofaro has joined #nixos
jbetz has joined #nixos
mikky has joined #nixos
mankyKitty has joined #nixos
pointfree has joined #nixos
`slikts has joined #nixos
TallerGhostWalt_ has joined #nixos
erhandsome has joined #nixos
KONTOL has joined #nixos
statusbot has joined #nixos
catern has joined #nixos
softinio has joined #nixos
LeshaInc has joined #nixos
ajp has joined #nixos
njd has joined #nixos
dev3 has joined #nixos
ShaRose has joined #nixos
ornxka has joined #nixos
primeos has joined #nixos
eon` has joined #nixos
daGrevis has joined #nixos
tghume has joined #nixos
mrSpec has joined #nixos
kumikumi has joined #nixos
Orbstheorem has joined #nixos
mstruebing has joined #nixos
fyuuri has joined #nixos
wirew0rm has joined #nixos
endgame has joined #nixos
Asmadeus has joined #nixos
Swant has joined #nixos
hl has joined #nixos
cross has quit [Max SendQ exceeded]
eddyb[legacy] has joined #nixos
monokrome has joined #nixos
andi- has joined #nixos
tabasko has joined #nixos
jchw has joined #nixos
hamishmack has joined #nixos
torque has joined #nixos
wolke has joined #nixos
meatcar has joined #nixos
aria has joined #nixos
midchildan has joined #nixos
ldlework has joined #nixos
MinceR has joined #nixos
pingveno has joined #nixos
bgupta has joined #nixos
dukedave has joined #nixos
uwap has joined #nixos
disasm has joined #nixos
jared-w has joined #nixos
joedevivo has joined #nixos
angerman has joined #nixos
incognito9999 has joined #nixos
orcus has joined #nixos
Taneb has joined #nixos
carter has joined #nixos
srhb has joined #nixos
marcinkuzminski has joined #nixos
rot13 has joined #nixos
emilazy has joined #nixos
wildsebastian has joined #nixos
michaelpj has joined #nixos
Shados has joined #nixos
Kim has joined #nixos
c00w has joined #nixos
glowpelt has joined #nixos
nand0p_ has joined #nixos
dsx has joined #nixos
drewr has joined #nixos
JohnAZoidberg has joined #nixos
Ankhers has joined #nixos
sphalerite has joined #nixos
mauli has joined #nixos
doublex__ has joined #nixos
Hedgework has joined #nixos
englishm has joined #nixos
zimbatm has joined #nixos
marcinja has joined #nixos
kini has joined #nixos
awygle has joined #nixos
etu has joined #nixos
shlevy has joined #nixos
nwspk has joined #nixos
develCuy has joined #nixos
esclear has joined #nixos
__red__ has joined #nixos
drvirgilio has joined #nixos
shibboleth has quit [*.net *.split]
andreas303 has quit [*.net *.split]
ajmcmiddlin has quit [Ping timeout: 268 seconds]
alunduil has quit [Ping timeout: 268 seconds]
englishm has quit [Max SendQ exceeded]
kini has quit [Max SendQ exceeded]
andi- has quit [Max SendQ exceeded]
sphalerite has quit [Max SendQ exceeded]
victorbjelkholm_ has joined #nixos
zertox has quit [Ping timeout: 265 seconds]
mstruebing has quit [Max SendQ exceeded]
hexa- has quit [Max SendQ exceeded]
adamse has quit [Ping timeout: 260 seconds]
sethetter_ has quit [Ping timeout: 260 seconds]
mudri has quit [Ping timeout: 260 seconds]
nst^ has joined #nixos
Peter_Storm has joined #nixos
tazjin has quit [Ping timeout: 252 seconds]
nlofaro has quit [Ping timeout: 252 seconds]
linuus has quit [Max SendQ exceeded]
justanotheruser has quit [Max SendQ exceeded]
Serus has quit [Max SendQ exceeded]
peel has joined #nixos
rodarmor has quit [Ping timeout: 260 seconds]
coot has quit [Ping timeout: 252 seconds]
mstruebing has joined #nixos
page has quit [Ping timeout: 260 seconds]
waleee-cl has joined #nixos
Peter_Storm has joined #nixos
Peter_Storm has quit [Changing host]
peel has joined #nixos
peel has quit [Changing host]
waleee-cl has joined #nixos
waleee-cl has quit [Changing host]
<{^_^}> [nixpkgs] @worldofpeace opened pull request #79660 → aws-sdk-cpp: build shared libraries → https://git.io/Jvc8O
lstanley has joined #nixos
hexa- has joined #nixos
cross has joined #nixos
kalbasit has quit [Ping timeout: 260 seconds]
higherorder has joined #nixos
justanotheruser has joined #nixos
kini has joined #nixos
teej has joined #nixos
sphalerite has joined #nixos
chessai has quit [Ping timeout: 240 seconds]
angerman has quit [Ping timeout: 242 seconds]
kapil_ has joined #nixos
sethetter_ has joined #nixos
nand0p_ has quit [Ping timeout: 245 seconds]
srhb has quit [Ping timeout: 245 seconds]
andi- has joined #nixos
NemesisD has quit [Ping timeout: 252 seconds]
jlpeters has quit [Ping timeout: 260 seconds]
aria has quit [Ping timeout: 245 seconds]
pingveno has quit [Ping timeout: 245 seconds]
emilazy has quit [Ping timeout: 245 seconds]
nh2 has joined #nixos
georgyo has joined #nixos
kitemikaze has quit [Ping timeout: 252 seconds]
pointfree has quit [Ping timeout: 252 seconds]
dani- has quit [Ping timeout: 252 seconds]
jaeckel has joined #nixos
emilazy has joined #nixos
habbah has quit [Ping timeout: 258 seconds]
oleks has quit [Ping timeout: 258 seconds]
hoek has quit [Ping timeout: 248 seconds]
mvnetbiz_ has joined #nixos
mankyKitty has quit [Ping timeout: 252 seconds]
newhoggy has quit [Ping timeout: 252 seconds]
nkaretnikov has quit [Ping timeout: 252 seconds]
feepo has joined #nixos
carter has quit [Ping timeout: 245 seconds]
jared-w has quit [Ping timeout: 245 seconds]
jfhbrook has joined #nixos
bitonic has joined #nixos
steveeJ has joined #nixos
jlpeters has joined #nixos
teehemkay has joined #nixos
jared-w has joined #nixos
bgupta has quit [Ping timeout: 245 seconds]
mankyKitty has joined #nixos
cbarrett has quit [Ping timeout: 246 seconds]
mpickering has joined #nixos
noonien has joined #nixos
angerman has joined #nixos
aria has joined #nixos
ajmcmiddlin has joined #nixos
srhb has joined #nixos
linuus has joined #nixos
habbah has joined #nixos
nand0p_ has joined #nixos
r0bby has joined #nixos
r0bby has quit [Excess Flood]
dani- has joined #nixos
mitsuhiko has joined #nixos
dmj` has joined #nixos
zertox has joined #nixos
oleks has joined #nixos
chessai has joined #nixos
newhoggy has joined #nixos
CustosLimen has joined #nixos
boeg has joined #nixos
bgupta has joined #nixos
pasukon has joined #nixos
d10n-work has joined #nixos
KeiraT has joined #nixos
jb55 has joined #nixos
gxt has joined #nixos
xelxebar has joined #nixos
phreedom has joined #nixos
klntsky has joined #nixos
oida has joined #nixos
dukedave has quit [Ping timeout: 245 seconds]
adamse has joined #nixos
kitemikaze has joined #nixos
johs has joined #nixos
r0bby has joined #nixos
gxt has quit [*.net *.split]
KeiraT has quit [*.net *.split]
jb55 has quit [*.net *.split]
klntsky has quit [*.net *.split]
oida has quit [*.net *.split]
xelxebar has quit [*.net *.split]
phreedom has quit [*.net *.split]
alunduil has joined #nixos
pingveno has joined #nixos
pointfree has joined #nixos
dmj` has quit [Excess Flood]
englishm has joined #nixos
carter has joined #nixos
nkaretnikov has joined #nixos
kapil_ has quit [Excess Flood]
w3emperor has joined #nixos
dukedave has joined #nixos
rizary has joined #nixos
dahirsch has joined #nixos
hoek has joined #nixos
cbarrett has joined #nixos
coot has joined #nixos
mudri has joined #nixos
carter has quit [Excess Flood]
<dahirsch> hello, how is the grub efi image generated? i have to insmod a custom module but can't find where to insert the statement into any config. thanks!
dmj` has joined #nixos
cbarrett has quit [Excess Flood]
kapil_ has joined #nixos
kapil_ has quit [Excess Flood]
<{^_^}> [nixpkgs] @Ma27 pushed to master « gcc-snapshot: remove »: https://git.io/Jvc88
cbarrett has joined #nixos
diamondman has joined #nixos
carter has joined #nixos
d1rewolf has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #79613 → python27Packages.jieba: 0.40 -> 0.42.1 → https://git.io/JvcLU
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.jieba: 0.40 -> 0.42.1 »: https://git.io/Jvc80
nlofaro has joined #nixos
tazjin has joined #nixos
NemesisD has joined #nixos
oida has joined #nixos
KeiraT has joined #nixos
jb55 has joined #nixos
gxt has joined #nixos
phreedom has joined #nixos
xelxebar has joined #nixos
klntsky has joined #nixos
kapil_ has joined #nixos
kalbasit has joined #nixos
alex` has joined #nixos
elvishjerricco has joined #nixos
page has joined #nixos
kalbasit has quit [Changing host]
kalbasit has joined #nixos
lstanley has quit [Excess Flood]
alex` is now known as Guest65381
rodarmor has joined #nixos
Guest65381 is now known as alex``
d1rewolf has quit [Excess Flood]
rodarmor has quit [Changing host]
rodarmor has joined #nixos
lstanley has joined #nixos
d1rewolf has joined #nixos
lstanley has quit [Excess Flood]
lstanley has joined #nixos
andreas303 has joined #nixos
rizary has quit [Excess Flood]
rizary has joined #nixos
Serus has joined #nixos
d10n-work has quit [Excess Flood]
chloekek has quit [Ping timeout: 268 seconds]
rizary has quit [Excess Flood]
hoek has quit [Excess Flood]
d10n-work has joined #nixos
rizary has joined #nixos
hoek has joined #nixos
cartwright has joined #nixos
cartwright has quit [*.net *.split]
andreas303 has quit [*.net *.split]
gxt has quit [*.net *.split]
KeiraT has quit [*.net *.split]
jb55 has quit [*.net *.split]
klntsky has quit [*.net *.split]
oida has quit [*.net *.split]
xelxebar has quit [*.net *.split]
phreedom has quit [*.net *.split]
<cole-h> What is the best way to both/go 3
<cole-h> Oops
<cole-h> I meant to ask: what is the best way to use both override and overrideAttrs together? Just `let` bind one and use the other in the `in` block?
hoek has quit [Excess Flood]
d10n-work has quit [Excess Flood]
<infinisil> cole-h: Chaining works too (foo.override ...).overrideAttrs
<infinisil> There's no best way for this, just preferences :)
<cole-h> infinisil++: Ah, I forgot the parens which is why that didn't work originally. Thanks!
<{^_^}> infinisil's karma got increased to 207
d10n-work has joined #nixos
<infinisil> :D
hoek has joined #nixos
phreedom has joined #nixos
klntsky has joined #nixos
oida has joined #nixos
jb55 has joined #nixos
cartwright has joined #nixos
xelxebar has joined #nixos
ixxie has quit [Ping timeout: 265 seconds]
andreas303 has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #79485 → grocy: init at 2.6.0 → https://git.io/JvnRw
<{^_^}> [nixpkgs] @Ma27 pushed 3 commits to master: https://git.io/Jvc8d
KeiraT has joined #nixos
risson has quit [Quit: pouet]
gxt has joined #nixos
karetsu has joined #nixos
jluttine has joined #nixos
<{^_^}> [nixpkgs] @luc65r opened pull request #79661 → cemu: init at 1.3 → https://git.io/Jvc4m
<{^_^}> [nixpkgs] @risicle opened pull request #79662 → pythonPackages.pysaml2: 4.9.0 -> 5.0.0, addressing CVE-2020-5390 → https://git.io/Jvc4s
<{^_^}> [nixpkgs] @globin merged pull request #79611 → atlassian-jira: 8.6.0 -> 8.7.0 → https://git.io/JvcI8
<{^_^}> [nixpkgs] @globin pushed 2 commits to master: https://git.io/Jvc4c
<cole-h> If I move an overlay to .nix.bak, does that effectively disable the overlay?
<clever> cole-h: try adding a syntax error like an extra ; to it, and see if it notices or not
<cole-h> The answer is yes, moving it does disable it :P
<cole-h> When you finally fix your fontconfig issues after making an overlay for it only to find out the overlay wasn't necessary and a fonts.conf file you didn't even know you had was mucking everything up
<cole-h> Sigh
detran has joined #nixos
ddellacosta has joined #nixos
kloenk has joined #nixos
o1lo01ol1o has joined #nixos
<CRTified> What is the current state of secret management? I know that nixops can provide pass-integration but do not want to use it for my setup, but are there other (near-standard) ways as a result from e.g. issue #24288 or rfc-0059?
<{^_^}> https://github.com/NixOS/nixpkgs/issues/24288 (by basvandijk, 2 years ago, open): Provide options for storing secrets outside the Nix store
<dminuoso> CRTified: deployment.keys
<dminuoso> CRTified: That's the best you can do right now.
<dminuoso> Depending on what nix package you use, it might require patching derivations, because there's many packages that dont work with this.
u0_a121 has quit [Read error: Connection reset by peer]
neeasade has joined #nixos
kloenk has quit [Ping timeout: 272 seconds]
u0_a121 has joined #nixos
<CRTified> But that's just for nixops, correct? My line of thought was to e.g. just write an activationScript that generates defined secrets if they do not exist (which leads to using a file option described in #24288) , but I just wanted to make sure that I do not miss anything.
<{^_^}> https://github.com/NixOS/nixpkgs/issues/24288 (by basvandijk, 2 years ago, open): Provide options for storing secrets outside the Nix store
vandenoever has quit [Read error: Connection reset by peer]
vandenoever has joined #nixos
vandenoever has joined #nixos
vandenoever has quit [Changing host]
<dminuoso> CRTified: Well if you dont want the secrets in your nix store, you have to create them outside of nix.
<dminuoso> CRTified: At that point, your nix packages need to allow for filepaths.
<CRTified> Yes, that's why I'm referencing that issue
<dminuoso> CRTified: What do you hope to do in an activationScript exactly?
<CRTified> basically 1) pull some randomness from /dev/urandom 2) if necessary, fill a template with it (to make it work in places where it is expected in a specific format) 3) set owner/permissions as desired
<clever> CRTified: i would do that from the prestart of whatever systemd service needs the secret
Yaniel has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #79115 → firefoxPackages.*: remove unsupported packages, clean up derivation → https://git.io/JvszR
<{^_^}> [nixpkgs] @worldofpeace pushed 8 commits to master: https://git.io/JvcBs
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #78710 → ninja: 1.9.0 -> 1.10.0 → https://git.io/JvYY8
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @tobim to staging « ninja: 1.9.0 -> 1.10.0 »: https://git.io/JvcBG
<CRTified> clever, any reason for that? I don't really see a difference between the two approaches (besides the point in time where the secret is generated)
<clever> CRTified: activation scripts are run in series, during very early boot, while systemd services can run in parallel
<vandenoever> can anyone point to a straightforware setup for httpd + lets-encrypt for nixos?
dahirsch has quit [Quit: Leaving]
<CRTified> Is PreStart executed as the user from the unit file?
<clever> CRTified: by default, ues
<CRTified> Okay. I'll try to get something working :)
<CRTified> Thanks for your inpuit
<{^_^}> [nixpkgs] @primeos opened pull request #79663 → brightnessctl: Add systemd support → https://git.io/JvcBW
kloenk has joined #nixos
leotaku has joined #nixos
tilcreator has joined #nixos
kvda has joined #nixos
kloenk has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
u0_a121 has quit [Read error: Connection reset by peer]
orivej has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #79297 → firefox: resolve relative nativeMessagingHosts links → https://git.io/JvZmd
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvcBd
<{^_^}> [nixpkgs] @flokli merged pull request #79645 → [r19.09] libexif: add patch for CVE-2019-9278 → https://git.io/JvcnS
<{^_^}> [nixpkgs] @flokli pushed 2 commits to release-19.09: https://git.io/JvcBj
<{^_^}> [nixpkgs] @flokli merged pull request #79657 → [r19.09] pythonPackages.feedgen: 0.7.0 -> 0.9.0, addressing CVE-2020-5227 → https://git.io/JvclB
<{^_^}> [nixpkgs] @flokli pushed 2 commits to release-19.09: https://git.io/JvcRU
kloenk has joined #nixos
lordcirth has joined #nixos
jb55 has quit [Ping timeout: 240 seconds]
jb55 has joined #nixos
Thra11 has quit [Quit: WeeChat 2.7]
neeasade has quit [Remote host closed the connection]
v88m has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #79664 → dina: generate otb files with fontforge → https://git.io/JvcRG
<{^_^}> [nixpkgs] @emilazy opened pull request #79665 → babelstone-han: 12.1.7 -> 13.0.3 → https://git.io/JvcRZ
ng0_ has joined #nixos
kloenk has quit [Read error: Connection reset by peer]
Izorkin_ has joined #nixos
ng0 has quit [Ping timeout: 265 seconds]
Izorkin_ is now known as Izorkin
<{^_^}> [nix] @neilmayhew opened pull request #3349 → Allow PS1 to be customized in nix-shell → https://git.io/JvcRR
LysergicDreams has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #79575 → fzf: fix patch for vim plugin; enable tests; avoid direct $src layout dependency → https://git.io/JvnNU
<{^_^}> [nixpkgs] @kalbasit pushed commit from @bhipple to master « fzf: fix patch for vim plugin; enable tests; avoid direct $src… (#79575) »: https://git.io/JvcRE
Sigma has joined #nixos
u0_a121 has joined #nixos
LysergicDreams has quit [Ping timeout: 265 seconds]
LysergicDreams has joined #nixos
<infinisil> Reminder that today is 20.03 branchoff/featurefreeze day! https://discourse.nixos.org/t/nixos-20-03-feature-freeze/5655
<infinisil> Well, 2020-02-10, maybe it's not yet in your timezone
fuzen has quit [Quit: The Lounge - https://thelounge.chat]
fuzen has joined #nixos
jb55 has quit [Ping timeout: 240 seconds]
kloenk has joined #nixos
<lordcirth> Yeah, still 18:55 here :P That's cool though!
kleisli_ has joined #nixos
bukkitgerman8 has joined #nixos
dongcarl8 has joined #nixos
CcxWrk_ has joined #nixos
CcxWrk_ is now known as CcxWrk
CcxWrk has quit [Killed (adams.freenode.net (Nickname regained by services))]
Piece_Maker has joined #nixos
XeN has joined #nixos
sigtrm_ has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #79666 → envypn-font: split outputs in out and otb → https://git.io/JvcRH
M-Gregoire495 has joined #nixos
trulsa_ has joined #nixos
kloenk has quit [Client Quit]
xensky__ has joined #nixos