00:00
<
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?
00:01
<
ajs124 >
elux: you can if config.networking.hostName == a then b else c
00:02
<
elux >
nice, thx i will check out the post
00:02
<
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`
00:03
<
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
00:04
<
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
00:04
cosimone has quit [Ping timeout: 256 seconds]
00:04
<
sondr3 >
yeah, I used to do that but felt like it could be more nix-y
00:05
orivej has quit [Ping timeout: 240 seconds]
00:06
<
elux >
if i could just see some sample, "if machine == "desktop" then some.setting = 1;" this would be nice
00:07
<
sondr3 >
you could do `if config.networking.hostname == 'machinename' then`
00:07
<
elux >
something is wrong with my syntax
00:09
u0_a121 has quit [Read error: Connection reset by peer]
00:13
u0_a121 has joined #nixos
00:17
<
elux >
this works though: `networking.firewall.enable = lib.mkIf (config.networking.hostName == "pak") false;`
00:17
u0_a121 has quit [Read error: Connection reset by peer]
00:17
<
elux >
just as a simple example..
00:20
<
sondr3 >
elux: do you have a specific example on how you'd want to do it? That looks about how I'd do it
00:22
<
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" { ........... };
00:26
Ralith_ has quit [Ping timeout: 256 seconds]
00:27
johnnyfive has quit [Ping timeout: 268 seconds]
00:28
Ralith_ has joined #nixos
00:28
<
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
00:29
<
sondr3 >
and then in my configuration.nix I'd just do `mine.gaming.enable = true;` and get that configuration
00:30
<
danderson >
ooh, nixos gaming config.
00:31
turona_ has quit [Ping timeout: 272 seconds]
00:31
<
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)
00:31
bhipple has quit [Ping timeout: 256 seconds]
00:32
<
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
00:32
<
sondr3 >
but Rocket League (RIP) worked with my PS4 controller without having to do anything
00:32
<
elux >
sondr3: cool, i will try this. where is config.mine.gaming defined tho? and how is it picked up
00:32
<
sondr3 >
ditty for EU4, Dota2, CSGO, GolfIt etc
00:32
<
danderson >
I mostly only play native stuff as well, I have a windows dual-boot for the rest
00:33
<
danderson >
sondr3: are you running nixos on a laptop? Works okay?
00:33
turona has joined #nixos
00:33
fresheyeball has joined #nixos
00:33
<
sondr3 >
danderson: yeah, ran it previously on my old MBP 2012 Retina and now on a Dell Latitude 5401, no issues whatsoever
00:34
<
sondr3 >
elux: and it is just magically picked up when you import that file
00:34
<
fresheyeball >
anyone know how to use mcelog on nixos?
00:35
<
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...
00:35
<
danderson >
I wonder how much space I can steal from Windows for a test drive...
00:35
<
fresheyeball >
I enabled it in my options, but can't see, to get any output
00:36
<
sondr3 >
danderson: steal all of it >:D
00:36
<
danderson >
sondr3: but but gaming
00:36
<
danderson >
also firmware updates, this Dell XPS is a bit garbage and fwupd can't update most of the chipsets from linux :(
00:36
<
fresheyeball >
mcelog: Cannot open `/dev/mcelog': No such file or directory
00:36
<
fresheyeball >
with `sudo mcelog`
00:36
<
danderson >
speaking of which, I should reboot and do some firmware updates, there's bugfixes for thunderbolt crapping itself! So excited.
00:36
<
sondr3 >
danderson: really? My Dell works flawlessly with fwupd
00:37
<
danderson >
sondr3: I got linux secure boot working, and Arch doesn't ship a signed fwupd EFI binary
00:37
<
danderson >
so it refuses to update, because its updater program wouldn't be allowed to run
00:37
<
sondr3 >
danderson: ah, I disabled that crap :P
00:37
<
danderson >
a screwup of my own creation :)
00:37
<
danderson >
eh, secure boot is a neat idea. If
*I* control the keys. Which I do :P
00:38
<
danderson >
it just breaks a bunch of Arch's assumptions, because it assumes nobody could be dumb enough to try using it
00:39
<
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
00:39
<
danderson >
speaking of which: is there any precedent for having something that pauses for human input in activation scripts?
00:40
<
danderson >
to make secure boot work, I would have to pause and request signing with my security key while installing a new kernel image
00:40
u0_a121 has joined #nixos
00:40
<
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
00:41
<
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.
00:42
<
danderson >
With secure boot, that's not possible. The kernel and initrd are signed, and the BIOS refuses to boot unsigned things
00:42
<
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
00:42
<
danderson >
so if the passphrase prompt appears, I'm certain that it's running a kernel+initrd that I signed
00:42
<
sondr3 >
but cool, sounds like something I'd do if it was easy and straight forward
00:42
<
sondr3 >
but I spent five hours trying to get btrfs + LUKS + LVM to work well
00:43
<
danderson >
so the main threat model for secure boot is 2 things: make it harder for malware to become persistent, and "evil maid" attacks
00:43
<
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
00:43
<
danderson >
with secure boot, worst thing the malware can do is stay inside windows, and a reinstall will clean it out
00:44
<
sondr3 >
it sounds like a great idea, what's the catch? :P
00:44
<
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
00:45
<
danderson >
so many catches :D
00:45
<
danderson >
mostly, it's kinda hard to set up on linux.
00:46
<
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.
00:46
<
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
00:47
codygman has quit [Ping timeout: 260 seconds]
00:47
<
danderson >
I use `shim` just because it means I can still dual-boot windows.
00:47
<
danderson >
after that, it's just a question of signing all the things, and setting the bootloader up so that it does signature verification
00:47
<
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" :(
00:48
<
sondr3 >
from what you've explained I'd still disable it lol
00:48
<
sondr3 >
danderson++
00:48
<
{^_^} >
danderson's karma got increased to 2
00:48
drakonis has quit [Quit: WeeChat 2.6]
00:48
<
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"
00:49
<
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 :)
00:50
<
sondr3 >
I don't really have any useful input, but thanks a bunch for the explanation/rambling :D
00:51
mbrgm_ has joined #nixos
00:51
mbrgm_ is now known as mbrgm
00:51
mbrgm has quit [Ping timeout: 240 seconds]
00:56
u0_a121 has quit [Read error: Connection reset by peer]
01:00
<
nh2 >
solved my include problem as well, I hadn't set the llvm `release_version` to the one zapcc uses
01:05
sigmundv has joined #nixos
01:06
bhipple has joined #nixos
01:07
ng0 has joined #nixos
01:09
jluttine has quit [Ping timeout: 272 seconds]
01:10
ng0_ has quit [Ping timeout: 256 seconds]
01:15
bvdw has quit [Read error: Connection reset by peer]
01:15
johnnyfive has joined #nixos
01:15
bvdw has joined #nixos
01:16
u0_a121 has joined #nixos
01:18
<
fresheyeball >
gchristensen: do you know how to use mcelog on nixos?
01:18
karetsu has quit [Quit: WeeChat 2.6]
01:18
<
fresheyeball >
I think you are the maintainer
01:19
<
elux >
im getting, error: syntax error, unexpected ';', expecting $end, at /home/peter/.dotfiles/nixpkgs/autorandr.nix:88:2
01:19
<
elux >
just trying to do some basic conditional config
01:20
<
sondr3 >
elux: you normally don't end .nix files with a semi-colon, have you tried wrapping everything in {}?
01:23
<
{^_^} >
[nixpkgs] @mkg20001 opened pull request #79579 → twinkle: patch manual link since old domain got re-used →
https://git.io/Jvnx4
01:23
buckley310 has joined #nixos
01:25
<
elux >
wrapping in {} doesnt seem to work..
01:27
<
{^_^} >
[nixpkgs] @cdepillabout merged pull request #79561 → haskellPackages.hledger-flow: do not build static →
https://git.io/Jvn7d
01:30
<
{^_^} >
[nixpkgs] @cdepillabout merged pull request #79556 → haskellPackages.http-streams: mark not broken →
https://git.io/Jvn7C
01:32
u0_a121 has quit [Read error: Connection reset by peer]
01:35
<
elux >
i figured it out..
01:35
dansho has quit [Quit: Leaving]
01:37
jluttine has joined #nixos
01:38
wildtrees has quit [Quit: Leaving]
01:39
<
elux >
thanks sondr3, that pointer helped me figure out another way
01:40
u0_a121 has joined #nixos
01:42
butterthebuddha has joined #nixos
01:44
<
sondr3 >
elux: sweet, what was the solution?
01:44
<
elux >
looks like this now, i just did the conditional on the specific setting
01:45
xkapastel has quit [Quit: Connection closed for inactivity]
01:45
<
elux >
i also added a little magic file, machine.nix which has just a single string either "desktop" or "laptop"
01:45
<
elux >
and i import this whenever i do some conditional stuff
01:45
<
elux >
prob a better way to do it.. but, meh
01:45
<
cole-h >
How would I run a package and bypass the overlay I have installed for it?
01:48
<
cole-h >
`NIX_PATH="nixpkgs-overlays=/var/empty:$NIX_PATH" nix-shell -p <package>` worked
01:48
ng0_ has joined #nixos
01:49
<
clever >
cole-h: nix-build '<nixpkgs>' -A package --arg overlays '[]'
01:49
xkapastel has joined #nixos
01:49
Maxdaman1us has joined #nixos
01:50
Maxdamantus has quit [Ping timeout: 256 seconds]
01:50
<
cole-h >
That works too, thanks!
01:50
sondr3 has quit [Quit: WeeChat 2.7]
01:50
<
{^_^} >
clever's karma got increased to 322
01:50
<
cole-h >
Some might even say that was... clever
01:50
acarrico has joined #nixos
01:51
ng0 has quit [Ping timeout: 260 seconds]
01:54
<
elux >
does nix support conditional variables... ? like........... `let blah = "hi" mkIf (something == "yes"); ?
01:55
<
clever >
elux: `mkIf` is part of the module framework, it takes part of a nixos module
01:56
<
clever >
elux: and its primarily to deal with infinite recursion
01:56
<
gchristensen >
> blah = if true then "hi" else "bye";
01:56
<
{^_^} >
error: syntax error, unexpected ';', at (string):43:38
01:57
<
gchristensen >
> let blah = if true then "hi" else "bye"; in blah
01:57
jluttine has quit [Ping timeout: 256 seconds]
01:57
Rusty1 has quit [Remote host closed the connection]
01:57
<
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
01:57
<
elux >
nice that works
01:57
<
elux >
thanks gchristensen
01:58
<
clever >
elux: also, you dont want to make your config conditional on hostname, you want to do it the other way around
01:58
<
clever >
elux: make a hostname.nix file, that sets all of the conditional stuff, and the hostname
01:58
<
elux >
clever: yea, true that makes sense. but im still super nix language amateur
01:59
<
elux >
the declarative style for that would be great, but so many things i intutitively expect nix to work, doesnt
01:59
<
elux >
so im just adding lame conditionals in different places
02:00
cosimone has joined #nixos
02:00
<
{^_^} >
#78501 (by bhipple, 1 week ago, open): fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir
02:00
phirsch has joined #nixos
02:01
<
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)
02:09
elux has quit [Quit: Lost terminal]
02:11
h0m1 has quit [Ping timeout: 256 seconds]
02:13
h0m1 has joined #nixos
02:14
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
02:16
u0_a121 has quit [Read error: Connection reset by peer]
02:17
elux has joined #nixos
02:20
<
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; };
02:21
<
clever >
> lib.optional true 42
02:21
<
clever >
> lib.optional false 42
02:21
<
clever >
elux: and then use ++ to append that to another list
02:21
<
samueldr >
> lib.optionals true [ "for" "multiple" "entries" ]
02:21
<
{^_^} >
[ "for" "multiple" "entries" ]
02:22
<
elux >
i tried.. `startup = [ { ..some stuff } ] optional (machine == "laptop") ++ [ { command = "blueman-applet"; notification = false; } ] ;`
02:23
<
elux >
not quite there
02:23
<
cole-h >
It's `++ optional (cond) [ stuff ];` I believe
02:23
<
clever >
elux: the ++ is on the wrong side
02:23
<
clever >
startup = [ { ..some stuff } ] ++ optional (machine == "laptop") { command = "blueman-applet"; notification = false; };
02:25
<
elux >
thanks, that helped and worked!
02:25
<
elux >
i switchd it to ++ optionals (etc..
02:25
<
elux >
so i could pass an array with more options
02:25
<
clever >
elux: its also much simpler if you use a laptop.nix, that sets that set of options
02:26
<
elux >
clever: any git repos out there with that as an example?
02:27
<
elux >
this is what ive done which works
02:27
<
elux >
(thanks to your help)
02:27
<
clever >
elux: each machine has a different starting file, that sets stuff for just that machine, and then puts more common stuff into imports
02:27
<
clever >
vim.nix is a special case, where every machine should have vim, but i want to customize it further
02:27
<
clever >
so i define a custom vim.fat option
02:27
<
clever >
and then i can just set it to true/false in other places
02:28
<
{^_^} >
[nixpkgs] @worldofpeace merged pull request #79300 → nixos/services.xserver: Fix legacy options for default wm without dm →
https://git.io/JvZ3Z
02:29
<
elux >
nice. that is a great config to learn from
02:30
jluttine has joined #nixos
02:33
<
genesis >
some advice for an easy httpd mocking tool ? i tried to run Mockoon unsussecfully
02:34
<
genesis >
( i try to mock netflix server to run netflix's playstation2 for fun)
02:34
cartwright has quit [Ping timeout: 240 seconds]
02:37
cartwright has joined #nixos
02:39
drakonis has joined #nixos
02:41
Hunterkll has quit [Remote host closed the connection]
02:41
Hunterkll has joined #nixos
02:43
WinchellsM has quit [Quit: Lost terminal]
02:47
butterthebuddha has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
02:52
<
{^_^} >
[nixpkgs] @bhipple opened pull request #79581 → fetchzip, fetchgit: cleanup handling of optional features and whitespace →
https://git.io/Jvnpy
02:53
<
DigitalKiwi >
nh2: i'm mad at you
02:53
iyzsong has joined #nixos
02:53
<
nh2 >
DigitalKiwi: how comes?
02:53
<
DigitalKiwi >
5b78ca49f2ed6224945db7421160b7696e1987f1
02:54
<
DigitalKiwi >
breaks scribusUnstable :<
02:54
jluttine has quit [Ping timeout: 240 seconds]
02:54
<
DigitalKiwi >
i'm trying to figure out what to do to make fix it and PR but uh it's complicated :(
02:54
epl692 has quit [Ping timeout: 260 seconds]
02:54
<
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
02:54
<
DigitalKiwi >
am not really mad every time poppler has updated scribus has broken
02:55
<
DigitalKiwi >
worldofpeace found most of that much faster than i would have :)
02:56
gustavderdrache has quit [Quit: Leaving.]
02:56
<
DigitalKiwi >
i confirmed that it built on the git commit before and that that git commit made it fail
02:57
<
worldofpeace >
DigitalKiwi: you should do `nix-shell -A scribusUnstable; unpackPhase` and find scribus-1.5.5/scribus/plugins/import/pdf/slaoutput.cpp 1232:16
02:57
<
{^_^} >
#77186 (by r-ryantm, 4 weeks ago, merged): poppler: 0.83.0 -> 0.84.0
02:59
jluttine has joined #nixos
02:59
<
DigitalKiwi >
worldofpeace: ok i did that and confirmed it's the one highlighted on github
02:59
butterthebuddha has joined #nixos
02:59
<
worldofpeace >
DigitalKiwi: which line?
03:00
<
DigitalKiwi >
is 1202
03:00
<
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
03:00
<
worldofpeace >
nh2: wondering the same
03:01
<
DigitalKiwi >
that's the file after unpackPhase
03:02
<
worldofpeace >
DigitalKiwi: I don't see the POPPLER_ENCODED_VERSION
03:02
<
worldofpeace >
got it
03:03
<
worldofpeace >
no wonder I was like, hmm that code should work
03:03
<
DigitalKiwi >
am still confused
03:04
cosimone has quit [Quit: Quit.]
03:04
<
worldofpeace >
DigitalKiwi: re the line difference
03:04
<
worldofpeace >
DigitalKiwi: just apply that patch
03:04
<
DigitalKiwi >
so just update it?
03:05
<
worldofpeace >
it looks like should apply perfectly
03:05
detran has quit [Ping timeout: 256 seconds]
03:05
<
DigitalKiwi >
just make that a file and add it to patchPhase?
03:06
<
worldofpeace >
example in nixpkgs
03:06
<
worldofpeace >
* examples are
03:06
<
worldofpeace >
* fetchpatch
03:11
<
DigitalKiwi >
oh there are already 2 there lmao
03:15
<
DigitalKiwi >
ok building
03:16
<
nh2 >
DigitalKiwi: what's your github handle?
03:16
<
DigitalKiwi >
i'll have a PR soon
03:21
waleee-cl has quit [Quit: Connection closed for inactivity]
03:21
ajs124 has quit [Remote host closed the connection]
03:21
das_j has quit [Remote host closed the connection]
03:21
Scriptkiddi has quit [Remote host closed the connection]
03:22
Scriptkiddi has joined #nixos
03:22
das_j has joined #nixos
03:22
ajs124 has joined #nixos
03:23
m15k has joined #nixos
03:24
u0_a121 has joined #nixos
03:24
epl692 has joined #nixos
03:27
u0_a121 has quit [Read error: Connection reset by peer]
03:31
u0_a121 has joined #nixos
03:33
<
DigitalKiwi >
nh2: yay it built
03:33
<
nh2 >
DigitalKiwi: nice
03:33
<
nh2 >
sorry for the breakage!
03:34
<
DigitalKiwi >
it's ok i'm used to it
03:34
<
DigitalKiwi >
and it gets my PR count up so i get social credit!
03:38
wavirc22 has joined #nixos
03:42
spacefrogg has quit [Quit: Gone.]
03:42
aw has quit [Quit: Quitting.]
03:43
aw has joined #nixos
03:43
spacefrogg has joined #nixos
03:44
felixfoertsch has joined #nixos
03:44
kleisli has quit [Ping timeout: 240 seconds]
03:45
felixfoertsch23 has quit [Ping timeout: 256 seconds]
03:45
ng0 has joined #nixos
03:46
m15k has quit [Remote host closed the connection]
03:47
u0_a121 has quit [Ping timeout: 256 seconds]
03:48
ng0_ has quit [Ping timeout: 240 seconds]
03:48
<
{^_^} >
[nixpkgs] @Kiwi opened pull request #79585 → scribusUnstable: Fix build with Poppler 0.84 →
https://git.io/Jvnhk
03:49
Maxdaman1us is now known as Maxdamantus
03:49
<
DigitalKiwi >
nh2: ^
03:58
epl692 has quit [Ping timeout: 256 seconds]
04:05
xkapastel has quit [Quit: Connection closed for inactivity]
04:11
chagra has joined #nixos
04:14
chagra_ has quit [Ping timeout: 240 seconds]
04:20
epl692 has joined #nixos
04:32
sigmundv has quit [Ping timeout: 265 seconds]
04:33
<
genesis >
try to setup nginx with Cipher Suite: TLS_DHE_RSA_WITH_AES_256_CBC_SHA (0x0039)
04:33
<
genesis >
i wonder if i have to rebuild openssl with weak ciphers option.
04:37
detran has joined #nixos
04:38
Supersonic112 has joined #nixos
04:38
Supersonic has quit [Disconnected by services]
04:38
Supersonic112 is now known as Supersonic
04:43
elux has quit [Quit: leaving]
04:47
<
thefloweringash >
bhipple++ thank you for #79108 !
04:47
<
{^_^} >
bhipple's karma got increased to 1
04:51
<
bhipple >
thefloweringash: you're welcome!
04:52
ng0_ has joined #nixos
04:55
ng0 has quit [Ping timeout: 260 seconds]
04:56
<
DigitalKiwi >
nh2 worldofpeace i wonder why we do all of those patches instead of updating to a newer version in their github?
04:56
wavirc22 has quit [Read error: Connection reset by peer]
04:57
<
nh2 >
DigitalKiwi: you mean why not upgrade to a master commit of the upstream project?
04:57
<
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
04:58
<
DigitalKiwi >
but also we don't get new fixes either :(
04:59
nikola_i has quit [Ping timeout: 240 seconds]
04:59
<
nh2 >
DigitalKiwi: nixpkgs master already updates extremely quickly though; often as soon as a new release is made by the upstream project
04:59
xkapastel has joined #nixos
05:00
<
nh2 >
DigitalKiwi: usually upstream maintainers do not intend people to use non-release versions productively
05:00
<
DigitalKiwi >
oh, right
05:00
<
nh2 >
DigitalKiwi: keep in mind that many projects still don't have CI; some test only when they make releases, manually
05:01
<
DigitalKiwi >
oh i forgot to add me to maintainers
05:02
<
DigitalKiwi >
the more the better amirite
05:03
<
DigitalKiwi >
should i do that and add the comment you wanted
05:04
wavirc22 has joined #nixos
05:04
<
{^_^} >
#78312 (by gnidorah, 2 weeks ago, open): openmw-tes3mp: fix build
05:05
<
DigitalKiwi >
i didn't run nixpkgs-fmt on it either which i normally do arrrgh
05:12
kandinski has quit [Remote host closed the connection]
05:15
alexbakker has quit [Quit: Dikke doei]
05:15
nexgen has joined #nixos
05:21
alexbakker has joined #nixos
05:23
<
DigitalKiwi >
nh2 ok i did a bunch of changes i hope they're ok
05:24
<
DigitalKiwi >
nh2: if not; glad to fix
05:24
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @r-ryantm to master « frescobaldi: 3.1 -> 3.1.1 (#79430) »:
https://git.io/JvceI
05:26
nikola_i has joined #nixos
05:27
bhipple has quit [Ping timeout: 260 seconds]
05:28
<
{^_^} >
[nixpkgs] @veprbl merged pull request #79301 → librepcb: Fix platform plugin xcb not found →
https://git.io/JvZ3H
05:29
Palmform has joined #nixos
05:29
bhipple has joined #nixos
05:30
v88m has joined #nixos
05:37
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79589 → python27Packages.apprise: 0.8.3 -> 0.8.4 →
https://git.io/Jvcen
05:38
domogled has quit [Ping timeout: 256 seconds]
05:39
Maxdaman1us has joined #nixos
05:40
Maxdamantus has quit [Ping timeout: 240 seconds]
05:42
jjakob has quit [Quit: No Ping reply in 180 seconds.]
05:44
jjakob has joined #nixos
05:48
<
wedens[m] >
any tips on debugging hard lockups? sysrq doesn't work, no logs at the moment of a lockup.
05:50
o1lo01ol1o has joined #nixos
05:51
bhipple has quit [Ping timeout: 268 seconds]
05:51
jjakob has quit [Quit: No Ping reply in 180 seconds.]
05:51
Palmform has quit [Remote host closed the connection]
05:52
bhipple has joined #nixos
05:54
o1lo01ol1o has quit [Ping timeout: 256 seconds]
05:55
Emantor has joined #nixos
06:05
xelxebar has joined #nixos
06:06
xelxebar_ has quit [Ping timeout: 240 seconds]
06:06
ng0 has joined #nixos
06:07
buckley310 has joined #nixos
06:07
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @Luz to master « librepcb: 0.1.2 -> 0.1.3 (#74786) »:
https://git.io/Jvce6
06:08
jjakob has joined #nixos
06:08
buckley310 has quit [Client Quit]
06:10
ng0_ has quit [Ping timeout: 268 seconds]
06:11
Sigma has quit [Ping timeout: 240 seconds]
06:11
buckley310 has joined #nixos
06:12
GrimSleepless has joined #nixos
06:12
<
colemickens >
!channels
06:12
<
colemickens >
,channels
06:12
<
{^_^} >
Largest Nix-related channels: #nixos, #nixos-dev, #nix-darwin, #nixos-chat, #nixos-aarch64, #nixos-wiki, #nixos-borg, #nixos-security, #nix-core
06:14
smatting has joined #nixos
06:21
bhipple has quit [Remote host closed the connection]
06:28
palo1 has joined #nixos
06:28
nikola_i has quit [Ping timeout: 256 seconds]
06:30
orivej has joined #nixos
06:31
palo has quit [Ping timeout: 272 seconds]
06:31
palo1 is now known as palo
06:34
<
{^_^} >
[nixpkgs] @thefloweringash opened pull request #79593 → wafHook: allow overriding phases →
https://git.io/Jvcvp
06:40
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @pasqui23 to master « qnotero: 1.0.0 -> 2.1.1 (#74560) »:
https://git.io/Jvcfk
06:42
smatting has quit [Ping timeout: 240 seconds]
06:44
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @Beskhue to master « rstudio: use qt5's mkDerivation (#74381) »:
https://git.io/Jvcfq
06:45
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79594 → python27Packages.awkward: 0.12.19 -> 0.12.20 →
https://git.io/Jvcfm
06:48
ddellacosta has quit [Ping timeout: 268 seconds]
06:51
drakonis has quit [Ping timeout: 272 seconds]
06:51
u0_a121 has joined #nixos
06:54
u0_a121 has quit [Read error: Connection reset by peer]
06:56
u0_a121 has joined #nixos
06:58
u0_a121 has quit [Read error: Connection reset by peer]
07:00
u0_a121 has joined #nixos
07:02
<
{^_^} >
[nixpkgs] @veprbl closed pull request #72824 → openarena: Update link from oa_ded to openarena-server →
https://git.io/Je2QO
07:03
callahad870 has joined #nixos
07:04
dingenskirchen has quit [Quit: dingenskirchen]
07:04
dingenskirchen has joined #nixos
07:09
o1lo01ol1o has joined #nixos
07:09
u0_a121 has quit [Read error: Connection reset by peer]
07:10
u0_a121 has joined #nixos
07:12
u0_a121 has quit [Read error: Connection reset by peer]
07:12
pikajude has joined #nixos
07:15
<
pikajude >
is kvm_amd supposed to show up in lsmod?
07:20
u0_a121 has joined #nixos
07:20
cole-h has quit [Ping timeout: 260 seconds]
07:22
Maxdaman1us is now known as Maxdamantus
07:23
<
pikajude >
(the answer is yes, btw)
07:23
<
pikajude >
(i didn't turn on SVM in bios settings)
07:23
<
pikajude >
boy do i feel foolish
07:23
<
li_matrix >
got the public key from nixpkgs source
07:26
<
li_matrix >
oops, used the wrong key
07:27
lord| has joined #nixos
07:27
<
li_matrix >
lol, it worked
07:29
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79595 → postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 →
https://git.io/JvcfF
07:30
Sigma has joined #nixos
07:35
logzet has joined #nixos
07:39
u0_a121 has quit [Read error: Connection reset by peer]
07:39
zupo has joined #nixos
07:41
o1lo01ol1o has quit [Remote host closed the connection]
07:42
u0_a121 has joined #nixos
07:43
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @PanAeon to master « conkeror: pin to firefox-esr-52 (#72090) »:
https://git.io/JvcJe
07:45
u0_a121 has quit [Read error: Connection reset by peer]
07:48
<
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?
07:51
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79596 → python27Packages.azure-mgmt-policyinsights: 0.3.1 -> 0.4.0 →
https://git.io/JvcJI
07:56
FRidh2 has joined #nixos
07:59
jjakob has quit [Remote host closed the connection]
08:00
<
{^_^} >
[nixpkgs] @Frostman opened pull request #79597 → go: remove not any more used patch files →
https://git.io/JvcJY
08:01
jjakob has joined #nixos
08:03
Heirlung- has joined #nixos
08:03
u0_a121 has joined #nixos
08:04
Heirlung has quit [Ping timeout: 268 seconds]
08:05
Heirlung- is now known as Heirlung
08:05
Sigma has quit [Ping timeout: 240 seconds]
08:09
chagra_ has joined #nixos
08:12
u0_a121 has quit [Read error: Connection reset by peer]
08:13
chagra has quit [Ping timeout: 260 seconds]
08:16
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79598 → python37Packages.cmd2: 0.9.23 -> 0.9.25 →
https://git.io/JvcJR
08:24
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @thefloweringash to staging « ffmpeg: fix vdpauSupport=false »:
https://git.io/JvcJ1
08:25
abcdef3248348384 has joined #nixos
08:25
jakob_rs has joined #nixos
08:26
<
jakob_rs >
Is it better to use the sha256 or hash arguments to fetchFromGithub?
08:27
<
etu >
sha256 is the most commonly used attribute name for hashes
08:27
<
jakob_rs >
etu: Which one should I prefer?
08:28
u0_a121 has joined #nixos
08:28
<
etu >
jakob_rs: Go with sha256
08:28
<
etu >
,tofu jakob_rs
08:28
<
{^_^} >
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
08:28
<
etu >
That may help you as well :)
08:28
<
jakob_rs >
I just use lib.fakeSha256
08:32
akaWolf has quit [Read error: Connection reset by peer]
08:35
u0_a121 has quit [Read error: Connection reset by peer]
08:35
akaWolf has joined #nixos
08:36
gnidorah has quit [Quit: Connection closed for inactivity]
08:40
<
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?
08:40
<
abcdef3248348384 >
I need to know that to debug it more I think
08:41
Maxdamantus has quit [Quit: Lost terminal]
08:41
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79594 → python27Packages.awkward: 0.12.19 -> 0.12.20 →
https://git.io/Jvcfm
08:41
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.awkward: 0.12.19 -> 0.12.20 »:
https://git.io/JvcJA
08:42
<
{^_^} >
[nixos-hardware] @Mic92 opened pull request #143 → xps/15-7590: don't enable unfree firmware by default →
https://git.io/JvcJp
08:42
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79599 → python37Packages.breathe: 4.14.0 -> 4.14.1 →
https://git.io/JvcJj
08:44
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79599 → python37Packages.breathe: 4.14.0 -> 4.14.1 →
https://git.io/JvcJj
08:44
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.breathe: 4.14.0 -> 4.14.1 »:
https://git.io/JvcUf
08:44
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.apprise: 0.8.3 -> 0.8.4 »:
https://git.io/JvcUU
08:45
<
{^_^} >
rycee/home-manager#1022 (by codygman, 2 hours ago, open): nixpkgs.config.allowUnfree not applied to imports
08:45
Maxdamantus has joined #nixos
08:45
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79600 → python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 →
https://git.io/JvcUI
08:47
<
{^_^} >
[nixos-hardware] @Mic92 merged pull request #142 → Add Dell XPS 15-7590 suggested options →
https://git.io/JvnmM
08:48
u0_a121 has joined #nixos
08:48
<
{^_^} >
[nixpkgs] @FRidh merged pull request #78930 → intel-compute-runtime: 19.44.14658 -> 20.02.15268 →
https://git.io/JvOF7
08:48
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to staging « intel-compute-runtime: 19.44.14658 -> 20.02.15268 »:
https://git.io/JvcU3
08:48
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « rapid-photo-downloader: 0.9.17 -> 0.9.18 »:
https://git.io/JvcUs
08:49
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « ibus-engines.m17n: 1.4.1 -> 1.4.2 »:
https://git.io/JvcUn
08:49
chiefgoat has quit [Remote host closed the connection]
08:50
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « aws-checksums: 0.1.3 -> 0.1.5 »:
https://git.io/JvcUC
08:51
kleisli has joined #nixos
08:52
ixxie has joined #nixos
08:53
<
{^_^} >
[nixpkgs] @FRidh merged pull request #77118 → ibus-engines.typing-booster-unwrapped: 2.7.4 -> 2.7.5 →
https://git.io/JejKR
08:53
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « ibus-engines.typing-booster-unwrapped: 2.7.4 -> 2.7.5 »:
https://git.io/JvcU0
08:54
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « frostwire-bin: 6.7.4 -> 6.8.3 »:
https://git.io/JvcUE
08:54
chiefgoat has joined #nixos
08:55
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « librealsense: 2.29.0 -> 2.31.0 »:
https://git.io/JvcUa
08:57
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « abcmidi: 2019.11.11 -> 2019.12.09 »:
https://git.io/JvcU6
08:58
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @Frostman to master « go: remove not any more used patch files (#79597) »:
https://git.io/JvcUM
08:59
sogatori has joined #nixos
09:00
dingenskirchen has quit [Remote host closed the connection]
09:00
dingenskirchen has joined #nixos
09:02
<
{^_^} >
[nixpkgs] @FRidh closed pull request #51839 → python: add geographiclib and update geopy →
https://git.io/fpHHz
09:04
kloenk has joined #nixos
09:04
kloenk has quit [Client Quit]
09:05
<
{^_^} >
[nixpkgs] @FRidh closed pull request #54234 → pythonPackages: sphinxcontrib-wavedrom: init at 2.0.0, wavedrom: init at 0.1 →
https://git.io/fh47e
09:05
<
{^_^} >
[nixpkgs] @FRidh closed pull request #54907 → python3Packages.just-start: init at 2018-10-25 →
https://git.io/fh1zU
09:05
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79602 → python27Packages.feedgen: 0.8.0 -> 0.9.0 →
https://git.io/JvcUh
09:06
abcdef3248348384 has quit [Ping timeout: 260 seconds]
09:07
kloenk has joined #nixos
09:09
<
{^_^} >
[nixpkgs] @FRidh closed pull request #55027 → WIP: social-auth-app-django: init at 3.1.0 →
https://git.io/fhy7T
09:09
<
{^_^} >
[nixpkgs] @FRidh closed pull request #55032 → pythonPackages.django-proxy: init at 1.1.0 →
https://git.io/fhy79
09:11
<
{^_^} >
[nixpkgs] @zimbatm pushed commit from @marsam to master « broot: 0.12.2 -> 0.13.1 (#79565) »:
https://git.io/JvcTL
09:12
<
{^_^} >
[nixpkgs] @FRidh closed pull request #55408 → pythonPackages.assimulo: init at 3.0 [WIP] [Help needed] →
https://git.io/fhHJE
09:12
jakob_rs has quit [Ping timeout: 240 seconds]
09:13
<
{^_^} >
[nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « metabase: 0.34.1 -> 0.34.2 »:
https://git.io/JvcTY
09:15
<
{^_^} >
[nixpkgs] @thoughtpolice merged pull request #79595 → postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 →
https://git.io/JvcfF
09:15
<
{^_^} >
[nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 »:
https://git.io/JvcTZ
09:18
<
{^_^} >
[nixpkgs] @FRidh merged pull request #63514 → pythonPackages.z3c_checkversions: init at 1.1 →
https://git.io/fjVcd
09:18
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @talkara to master « pythonPackages.z3c_checkversions: init at 1.1 »:
https://git.io/JvcTc
09:20
o1lo01ol1o has joined #nixos
09:21
nexgen has quit [Remote host closed the connection]
09:24
is_null_ has joined #nixos
09:25
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @ldelelis to master « pythonPackages.pyfcm: init at 1.4.7 (#67321) »:
https://git.io/JvcTR
09:26
<
{^_^} >
[nixpkgs] @FRidh merged pull request #65875 → mono: remove outdated workaround; pythonPackages.pythonnet: 2.3.0 -> 2.4.0 →
https://git.io/fjHI9
09:26
<
{^_^} >
[nixpkgs] @FRidh merged pull request #66350 → pythonPackages.django-anymail: init at 6.1.0 →
https://git.io/fj7Lp
09:26
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @doom3wasagoodgame to master « pythonPackages.django-anymail: init at 6.1.0 »:
https://git.io/JvcTE
09:27
is_null has quit [Ping timeout: 260 seconds]
09:27
<
{^_^} >
[nixpkgs] @FRidh merged pull request #67339 → pythonPackages.robotframework-databaselibrary: init at 1.2.4 →
https://git.io/fjNuA
09:27
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @talkara to master « pythonPackages.robotframework-databaselibrary: init at 1.2.4 (#67339) »:
https://git.io/JvcTu
09:28
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @dawidsowa to master « pythonPackages.iapws: init at 1.4 »:
https://git.io/JvcTg
09:30
cfricke has joined #nixos
09:30
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @wd15 to master « pythonPackages.sfepy: init at 2019.2 »:
https://git.io/JvcTa
09:32
cfricke has quit [Client Quit]
09:33
tertl3 has quit [Quit: Connection closed for inactivity]
09:35
Sigma has joined #nixos
09:36
<
{^_^} >
[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
09:37
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79604 → python27Packages.geopandas: 0.6.2 -> 0.6.3 →
https://git.io/JvcTX
09:38
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79604 → python27Packages.geopandas: 0.6.2 -> 0.6.3 →
https://git.io/JvcTX
09:38
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.geopandas: 0.6.2 -> 0.6.3 »:
https://git.io/JvcTD
09:41
u0_a121 has quit [Remote host closed the connection]
09:41
u0_a121 has joined #nixos
09:41
<
FRidh2 >
That's enough PR's again, time for breakfast :)
09:42
opthomasprime has joined #nixos
09:44
u0_a121 has quit [Read error: Connection reset by peer]
09:45
chagra_ has quit [Ping timeout: 256 seconds]
09:50
lovesegfault has quit [Ping timeout: 268 seconds]
09:51
knupfer has joined #nixos
09:56
chagra_ has joined #nixos
09:56
<
{^_^} >
FRidh's karma got increased to 17
09:57
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79607 → python37Packages.jupyterlab: 1.2.5 -> 1.2.6 →
https://git.io/Jvckc
09:58
fendor has joined #nixos
09:59
wavirc22 has quit [Read error: Connection reset by peer]
09:59
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79607 → python37Packages.jupyterlab: 1.2.5 -> 1.2.6 →
https://git.io/Jvckc
09:59
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.jupyterlab: 1.2.5 -> 1.2.6 »:
https://git.io/JvckW
10:00
Sigma has quit [Ping timeout: 256 seconds]
10:00
wavirc22 has joined #nixos
10:03
Sigma has joined #nixos
10:05
chagra_ has quit [Quit: WeeChat 2.6]
10:07
Sigma has quit [Ping timeout: 240 seconds]
10:07
ixxie has quit [Ping timeout: 260 seconds]
10:10
Maxdaman1us has joined #nixos
10:10
Maxdamantus has quit [Ping timeout: 260 seconds]
10:10
o1lo01ol1o has quit [Remote host closed the connection]
10:11
<
genesis >
i get an answer of the quickbms authors "There is no plan for versioned filenames because I prefer to give
10:11
<
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 ?
10:23
__monty__ has joined #nixos
10:26
ciil has quit [Quit: Lost terminal]
10:30
thc202 has joined #nixos
10:40
jgeerds has joined #nixos
10:42
u0_a121 has joined #nixos
10:42
nexgen has joined #nixos
10:46
opthomasprime has left #nixos [#nixos]
10:49
tilcreator has quit [Ping timeout: 256 seconds]
10:52
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79612 → python27Packages.azure-mgmt-resource: 7.0.0 -> 8.0.1 →
https://git.io/JvcIz
10:55
u0_a121 has quit [Read error: Connection reset by peer]
11:04
tilcreator has joined #nixos
11:10
<
{^_^} >
[nixpkgs] @bjornfor pushed commit from @r-ryantm to master « osinfo-db: 20191125 -> 20200203 »:
https://git.io/JvcIP
11:11
ng0_ has joined #nixos
11:13
jb55 has quit [Remote host closed the connection]
11:13
oida has quit [Remote host closed the connection]
11:13
andreas303 has quit [Read error: Connection reset by peer]
11:13
gxt has quit [Read error: Connection reset by peer]
11:13
KeiraT has quit [Read error: Connection reset by peer]
11:13
xelxebar has quit [Read error: Connection reset by peer]
11:13
cartwright has quit [Read error: Connection reset by peer]
11:13
klntsky has quit [Write error: Broken pipe]
11:14
ng0 has quit [Ping timeout: 268 seconds]
11:15
jb55 has joined #nixos
11:15
xelxebar has joined #nixos
11:15
gxt has joined #nixos
11:16
magnetophon has joined #nixos
11:19
KeiraT has joined #nixos
11:22
alex`` has quit [Ping timeout: 272 seconds]
11:23
alex`` has joined #nixos
11:23
chagra has joined #nixos
11:23
<
habbah >
is there an app used to generate the documentation for nixpkgs?
11:24
cartwright has joined #nixos
11:24
<
habbah >
I don't imagine people write the xml by hand, but maybe I'm wrong
11:25
xkapastel has quit [Quit: Connection closed for inactivity]
11:30
knupfer has quit [Ping timeout: 240 seconds]
11:34
ixxie has joined #nixos
11:37
u0_a121 has joined #nixos
11:37
klntsky has joined #nixos
11:38
oida has joined #nixos
11:39
andreas303 has joined #nixos
11:45
jakob_rs has joined #nixos
11:48
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79614 → python27Packages.kconfiglib: 13.7.0 -> 14.1.0 →
https://git.io/JvcLB
11:49
<
__monty__ >
habbah: You are wrong, yes. The main docbook proponents have an emacs mode to make it palatable.
11:50
jakob_rs has quit [Quit: leaving]
11:51
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79615 → python27Packages.django-storages: 1.8 -> 1.9.1 →
https://git.io/JvcLg
11:56
nexgen has quit [Quit: Leaving]
11:58
<
{^_^} >
[nixpkgs] @7c6f434c merged pull request #67376 → nixos: zsh: add more helpful documentation into generated files →
https://git.io/fjNy5
11:58
jakob_rs has joined #nixos
11:59
<
jakob_rs >
How do I apply patches in a different directory than sourceRoot?
12:10
chagra has quit [Ping timeout: 260 seconds]
12:12
jakob_rs has left #nixos [#nixos]
12:12
<
{^_^} >
[nixpkgs] @JohnAZoidberg opened pull request #79617 → hpmyroom: 11.1.0.0508 -> 12.0.0.0220 →
https://git.io/JvctI
12:12
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.m3u8: 0.5.2 -> 0.5.4 »:
https://git.io/JvctL
12:16
andreas303 has quit [Remote host closed the connection]
12:18
u0_a121 has quit [Read error: Connection reset by peer]
12:19
andreas303 has joined #nixos
12:21
chloekek has joined #nixos
12:23
iri has joined #nixos
12:23
iri is now known as iri`
12:23
iri` is now known as iri``
12:25
<
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
12:25
<
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?
12:26
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79618 → python27Packages.geopy: 1.20.0 -> 1.21.0 →
https://git.io/Jvcta
12:26
<
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.
12:27
<
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)
12:28
aveltras has joined #nixos
12:29
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79619 → python27Packages.Nuitka: 0.6.6 -> 0.6.7 →
https://git.io/Jvct6
12:29
<
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?
12:30
bennofs has joined #nixos
12:33
u0_a121 has joined #nixos
12:41
u0_a121 has quit [Read error: Connection reset by peer]
12:42
evelyn has quit [Quit: WeeChat 2.3]
12:43
<
__monty__ >
,locate bin rga
12:43
<
{^_^} >
Found in packages: ripgrep-all
12:44
<
__monty__ >
chloekek: You can't reopen all tabs and windows from last session?
12:45
<
chloekek >
__monty__: Oh that seems to work, I thought it would do that automatically.
12:45
<
__monty__ >
There may be a setting for that.
12:45
<
__monty__ >
I know it offers to do so if you make ff crash.
12:46
<
DigitalKiwi >
__monty__: tell me more about the docbook
12:47
<
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.
12:48
m15k has joined #nixos
12:50
<
__monty__ >
chloekek: Sounds like a feature, not a bug ; )
12:50
<
m15k >
Is there a string function which removes trailing spaces on each line?
12:50
<
chloekek >
__monty__: It’s a rather brutal form of spying protection but it does the job. :’)
12:51
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.Nuitka: 0.6.6 -> 0.6.7 »:
https://git.io/Jvcql
12:56
iri`` has quit [Ping timeout: 260 seconds]
12:58
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « opera: 66.0.3515.36 -> 66.0.3515.72 »:
https://git.io/Jvcqg
12:59
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « kdeApplications.okteta: 0.26.2 -> 0.26.3 »:
https://git.io/JvcqV
13:00
Thra11 has joined #nixos
13:01
<
{^_^} >
[nixpkgs] @aanderse merged pull request #79482 → unixODBCDrivers.msodbcsql17: 17.4.1.1 -> 17.5.1.1 →
https://git.io/JvnBG
13:02
u0_a121 has joined #nixos
13:04
phirsch has quit [Ping timeout: 256 seconds]
13:06
u0_a121 has quit [Read error: Connection reset by peer]
13:06
tux has joined #nixos
13:06
tux has quit [Remote host closed the connection]
13:08
bennofs has quit [Ping timeout: 272 seconds]
13:11
chagra has joined #nixos
13:13
sondr3 has joined #nixos
13:14
Sigma has joined #nixos
13:15
u0_a121 has joined #nixos
13:15
bvdw has quit [Read error: Connection reset by peer]
13:15
bvdw has joined #nixos
13:18
u0_a121 has quit [Read error: Connection reset by peer]
13:37
Sigma has quit [Ping timeout: 256 seconds]
13:41
domogled has joined #nixos
13:42
opthomasprime has joined #nixos
13:43
acarrico has quit [Ping timeout: 260 seconds]
13:48
knupfer has joined #nixos
13:51
vykook has joined #nixos
13:56
m15k has quit [Ping timeout: 260 seconds]
13:56
o1lo01ol1o has joined #nixos
13:58
sondr3 has quit [Quit: WeeChat 2.7]
14:03
sondr3 has joined #nixos
14:05
<
{^_^} >
[nixpkgs] @aanderse merged pull request #79474 → dolphinEmuMaster: 5.0-11109 -> 5.0-11608 →
https://git.io/JvnWM
14:05
knupfer has quit [Read error: Connection reset by peer]
14:05
cfricke has joined #nixos
14:05
Chiliparrot has joined #nixos
14:05
knupfer has joined #nixos
14:09
nikola_i has joined #nixos
14:11
domogled has quit [Ping timeout: 272 seconds]
14:12
domogled has joined #nixos
14:18
domogled has quit [Ping timeout: 260 seconds]
14:21
Rusty1 has joined #nixos
14:23
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79621 → python37Packages.pikepdf: 1.8.2 -> 1.10.0 →
https://git.io/JvcY8
14:24
u0_a121 has joined #nixos
14:30
cfricke has quit [Ping timeout: 260 seconds]
14:30
u0_a121 has quit [Read error: Connection reset by peer]
14:33
jmeredith has joined #nixos
14:39
orivej has quit [Ping timeout: 260 seconds]
14:42
tilpner has joined #nixos
14:47
AMZA has joined #nixos
14:47
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79622 → python27Packages.python-dotenv: 0.10.4 -> 0.10.5 →
https://git.io/JvcOf
14:48
AMZA has left #nixos [#nixos]
14:52
<
genesis >
fpletz : do you plan to add njs to nginx modules ?
14:54
<
{^_^} >
[nixpkgs] @worldofpeace merged pull request #79585 → scribusUnstable: Fix build with Poppler 0.84 →
https://git.io/Jvnhk
14:55
<
m1cr0m4n >
aanderse: The le dns-01 tests are done :)
14:55
<
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
15:02
o1lo01ol1o has quit [Remote host closed the connection]
15:05
<
m1cr0m4n >
Anyone able to point me at the release notes file? Lots of people saying I should update it in my PR
15:06
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79625 → python27Packages.phonenumbers: 8.11.2 -> 8.11.3 →
https://git.io/JvcOz
15:07
kloenk has quit [Ping timeout: 240 seconds]
15:11
opthomasprime has left #nixos [#nixos]
15:11
<
genesis >
about acme, i use enableACME = true; but i still get a "unknown CA"
15:12
<
genesis >
don't find a solution yet.
15:14
drakonis has joined #nixos
15:14
<
aanderse >
m1cr0m4n++
15:14
<
{^_^} >
m1cr0m4n's karma got increased to 1
15:15
<
aanderse >
m1cr0m4n: nixos/doc/manual/release-notes/
15:15
<
aanderse >
rl-2003.xml
15:18
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79626 → python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 →
https://git.io/JvcOy
15:23
u0_a121 has joined #nixos
15:23
drakonis has quit [Quit: WeeChat 2.6]
15:23
gxt has quit [Remote host closed the connection]
15:24
gxt has joined #nixos
15:25
ddellacosta has joined #nixos
15:26
<
m1cr0m4n >
aanderse: ty
15:29
detran has quit [Ping timeout: 256 seconds]
15:30
detran has joined #nixos
15:30
spacefrogg_ has joined #nixos
15:30
tilcreator has quit [Ping timeout: 256 seconds]
15:30
spacefrogg has quit [Ping timeout: 256 seconds]
15:30
andymandias has quit [Ping timeout: 256 seconds]
15:30
andymandias has joined #nixos
15:31
Mark_ has quit [Ping timeout: 256 seconds]
15:31
orbekk has quit [Ping timeout: 256 seconds]
15:31
tilcreator has joined #nixos
15:31
orbekk has joined #nixos
15:33
ng0 has joined #nixos
15:33
bhipple has joined #nixos
15:34
Church- has quit [Ping timeout: 256 seconds]
15:35
emacsomancer has quit [Ping timeout: 256 seconds]
15:35
emacsoma1 has joined #nixos
15:36
nikola_i has quit [Ping timeout: 256 seconds]
15:36
ng0_ has quit [Ping timeout: 265 seconds]
15:39
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79627 → python37Packages.pylint-django: 2.0.12 -> 2.0.13 →
https://git.io/Jvc3z
15:43
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79629 → python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 →
https://git.io/Jvc3i
15:43
ddellacosta has quit [Ping timeout: 240 seconds]
15:44
<
gentauro >
anybody know where to disable screen turning black on inactivity?
15:45
<
gentauro >
I don't seem to find where to do it in `/etc/nixos/configuration.nix`
15:45
<
gentauro >
(a bit annoying when streaming stuff)
15:45
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79629 → python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 →
https://git.io/Jvc3i
15:45
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.sphinxcontrib-tikz: 0.4.6 -> 0.4.8 »:
https://git.io/Jvc3X
15:45
domogled has joined #nixos
15:45
<
srk >
gentauro: xset -dpms
15:46
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79622 → python27Packages.python-dotenv: 0.10.4 -> 0.10.5 →
https://git.io/JvcOf
15:46
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.python-dotenv: 0.10.4 -> 0.10.5 »:
https://git.io/Jvc3y
15:46
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79625 → python27Packages.phonenumbers: 8.11.2 -> 8.11.3 →
https://git.io/JvcOz
15:46
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.phonenumbers: 8.11.2 -> 8.11.3 »:
https://git.io/Jvc3S
15:46
<
srk >
gentauro: alternatively via xscreensaver-command -prefs
15:47
<
srk >
(more persistant I guess)
15:47
<
gentauro >
srk: i removed `xscreensaver` cos it kept telling me it's to old
15:48
<
gentauro >
so I enabled `services.xserver.xautolock.enable = true;` which installs `xlock`
15:49
<
srk >
there's probably an equivalent option for xorg.conf
15:49
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.cmd2: 0.9.23 -> 0.9.25 »:
https://git.io/Jvc3Q
15:49
<
gentauro >
srk: can this be set on the `/etc/nixos/configuration.nix`?
15:49
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.geopy: 1.20.0 -> 1.21.0 »:
https://git.io/Jvc35
15:49
<
srk >
gentauro: yes, "there's probably an equivalent option for xorg.conf" <- to xset -dpms
15:50
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79600 → python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 →
https://git.io/JvcUI
15:50
ng0 has quit [Quit: leaving]
15:50
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.hstspreload: 2020.1.17 -> 2020.2.5 »:
https://git.io/Jvc3F
15:50
<
gentauro >
like this `services.xserver.displayManager.sessionCommands = '' xset -dpms '';`?
15:50
<
srk >
could work, can't googleit as I just killed firefox /o\
15:51
<
srk >
had to reclaim some mem
15:52
ng0 has joined #nixos
15:52
<
srk >
gentauro: man xorg.conf
15:52
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « syncthingtray: 0.10.5 -> 0.10.6 »:
https://git.io/Jvcse
15:53
<
srk >
look for DPMS or something like Option "BlankTime" "time"
15:55
<
gentauro >
srk: cool
15:57
u0_a121 has quit [Read error: Connection reset by peer]
15:57
jco has joined #nixos
15:57
<
gentauro >
seems a bit `too much` to do this :S
15:58
domogled has quit [Quit: domogled]
15:59
domogled has joined #nixos
15:59
<
{^_^} >
[nixpkgs] @FRidh closed pull request #74608 → python38Packages.spyder-kernels: 0.5.2 -> 1.0.1 →
https://git.io/Je1sV
16:00
<
srk >
gentauro: you only need few of that lines, xset -dpms is certainly shorter tho :D
16:00
<
jco >
but when I lauch the app I get the error that gtk3 is not installed
16:01
Church- has joined #nixos
16:01
<
gentauro >
srk: `Energy Star features off` I guess that's more than just the screen ...
16:01
<
jco >
I added the gtk3 dependicy in the propagatedBuildInputs, so it should be available at runtime
16:02
<
srk >
gentauro: that should be just DPMS / blanking
16:03
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79627 → python37Packages.pylint-django: 2.0.12 -> 2.0.13 →
https://git.io/Jvc3z
16:03
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.pylint-django: 2.0.12 -> 2.0.13 »:
https://git.io/Jvcst
16:07
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
16:07
knupfer has quit [Ping timeout: 272 seconds]
16:08
<
{^_^} >
[nixpkgs] @FRidh pushed commit from Farkas, Arnold to master « pythonPackages.nbconflux: init at 0.7.0 »:
https://git.io/Jvcsq
16:09
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79626 → python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 →
https://git.io/JvcOy
16:09
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.pytelegrambotapi: 3.6.6 -> 3.6.7 »:
https://git.io/JvcsY
16:11
gnidorah has joined #nixos
16:11
<
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?
16:12
<
{^_^} >
[nixpkgs] @FRidh pushed commit from Farkas, Arnold to master « pythonPackages.flower: init at 0.9.3 »:
https://git.io/Jvcs3
16:12
<
{^_^} >
#78312 (by gnidorah, 2 weeks ago, open): openmw-tes3mp: fix build
16:12
ixxie has quit [Ping timeout: 272 seconds]
16:13
<
{^_^} >
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.
16:13
<
simpson >
gnidorah: I've been following along, and I think at this point we need to find
*specific people* who can merge this.
16:13
is_null_ has quit [Ping timeout: 260 seconds]
16:15
is_null has joined #nixos
16:17
detran has quit [Ping timeout: 272 seconds]
16:18
jb55 has quit [Ping timeout: 240 seconds]
16:20
<
flokli >
m1cr0m4n: just reviewed your acme PR. Reach out if you want to spend some sync time on it :-)
16:20
<
edef >
hmm. getting a bit annoyed with how our systemd stuff works
16:20
<
{^_^} >
#77578 (by m1cr0man, 3 weeks ago, open): Replace simp-le with lego and support DNS-01 challenge
16:20
<
flokli >
edef: can you elaborate?
16:20
domogled has quit [Ping timeout: 268 seconds]
16:20
<
edef >
`systemd.services."serial-getty@ttyS0".enable = mkForce true`
*appears* to work
16:21
<
flokli >
that shouldn't be necessary
16:21
<
edef >
the headless profile disables it
16:21
<
edef >
i re-enable it with that mkForce
16:21
<
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
16:21
<
edef >
fairly sure we should never be generating anything but drop-ins for template units
16:22
<
flokli >
I'm not sure if our code properly handles upstream-provided template units at all
16:22
<
edef >
it fairly definitely doesn't
16:23
<
edef >
i'm tempted to just shovel headless.nix into disabledModules for now
16:23
<
edef >
(and copy-paste most of the rest of it)
16:24
<
flokli >
why would one want to disable these gettys in first place?
16:24
<
edef >
this is the headless profile, which for some reason assumes serial console is useless
16:25
<
flokli >
I mean, I don't see the point of this module
16:25
<
edef >
which is included by the Google Compute Engine profile
16:25
<
{^_^} >
[nixpkgs] @shazow opened pull request #79630 → dwarf-fortress-packages.dwarf-fortress_0_47_02: init →
https://git.io/JvcsK
16:26
<
FRidh2 >
gnidorah: now i have this morrowind tune in my head again
16:26
<
gnidorah >
FRidh2: thank you :D
16:26
<
{^_^} >
[nixpkgs] @bhipple opened pull request #79631 → doc: consistent formatting on python manual section →
https://git.io/JvcsX
16:27
<
flokli >
edef: I mean, we might shave a minimal bit of the closure by not having to shipping the splash image
16:27
<
edef >
disabling VESA at boot and disabling local ttys seems reasonable
16:27
<
flokli >
well, on GCP, you still can see logs sent over serial
16:27
<
edef >
i wish we didn't enable udisks by default, it's fairly massive and serves no purpose on anything but desktops
16:28
<
edef >
flokli: not just that
16:28
<
edef >
flokli: you can have full, interactive serial
16:28
<
m1cr0m4n >
flokli: Replied to your comments there
16:28
bennofs has joined #nixos
16:28
<
edef >
flokli: hence why i override the serial getty unit back on
16:28
<
flokli >
so I don't think disabling gettys makes sense
16:29
<
flokli >
at least not by default in the GCP images
16:29
<
flokli >
especially, if re-enabling breaks it alltogether ;-)
16:29
MmeQuignon has joined #nixos
16:30
<
flokli >
if your machine doesn't work, authentication doesn't work, … actually being able to serial in might be a nice property
16:31
<
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
16:31
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79632 → python27Packages.spotipy: 2.6.1 -> 2.7.1 →
https://git.io/JvcsD
16:31
<
flokli >
so I don't really see the point in explicitly disabling it
16:35
u0_a121 has joined #nixos
16:36
bennofs has joined #nixos
16:37
u0_a121 has quit [Read error: Connection reset by peer]
16:41
KeiraT has quit [Quit: KeiraT]
16:41
KeiraT has joined #nixos
16:42
bennofs has quit [Ping timeout: 272 seconds]
16:43
Supersonic has quit [Ping timeout: 240 seconds]
16:43
Supersonic112 has joined #nixos
16:44
Supersonic112 is now known as Supersonic
16:44
u0_a121 has joined #nixos
16:45
<
edef >
< flokli> especially, if re-enabling breaks it alltogether ;-)
16:45
<
edef >
flokli: not quite — it works
*once*
16:46
<
edef >
flokli: it's almost more hazardous than the alternative
16:46
jco has quit [Quit: WeeChat 2.7]
16:46
<
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
16:48
<
Miyu-saki >
Anyone else use `steam-run` to run random binaries when they're too tired to use patchelf?
16:48
<
Miyu-saki >
Or just download Windows ones
16:49
o1lo01ol1o has joined #nixos
16:49
<
flokli >
m1cr0m4n: sorry, github borked my comments, and didn't put it in threads.
16:49
jb55 has joined #nixos
16:50
<
flokli >
seems to be due to the push that happened in between, I don't know
16:50
<
flokli >
or it did?
16:50
<
srk >
mikky: set the same nixpkgs.overlays in container config?
16:52
<
mikky >
srk: besides that? :) I'm looking for a way to have that overlay accessible in all the containers
16:52
<
mikky >
something like `defaults =` in nixops
16:52
Maxdaman1us has quit [Ping timeout: 260 seconds]
16:53
Maxdamantus has joined #nixos
16:55
<
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
16:56
<
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
16:56
<
mikky >
I'd prefer not to override nixpkgs
16:57
<
mikky >
but I guess per-container config will have to do for now
16:59
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79635 → python27Packages.persim: 0.1.1 -> 0.1.2 →
https://git.io/JvcGg
17:00
MmeQuignon has quit [Ping timeout: 272 seconds]
17:01
cole-h has joined #nixos
17:03
u0_a121 has quit [Read error: Connection reset by peer]
17:05
nadley has quit [Remote host closed the connection]
17:06
nadley has joined #nixos
17:07
kloenk has joined #nixos
17:08
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79636 → python27Packages.augeas: 1.0.3 -> 1.1.0 →
https://git.io/JvcGX
17:12
growpotkin has joined #nixos
17:13
<
{^_^} >
[nixpkgs] @teto merged pull request #79614 → python27Packages.kconfiglib: 13.7.0 -> 14.1.0 →
https://git.io/JvcLB
17:13
<
{^_^} >
[nixpkgs] @teto pushed commit from @r-ryantm to master « python27Packages.kconfiglib: 13.7.0 -> 14.1.0 »:
https://git.io/JvcGD
17:17
mlen has quit [Quit: WeeChat 2.6]
17:19
mlen has joined #nixos
17:23
o1lo01ol1o has quit [Remote host closed the connection]
17:32
knupfer has joined #nixos
17:35
<
{^_^} >
[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
17:36
opthomasprime has joined #nixos
17:36
opthomasprime has quit [Remote host closed the connection]
17:37
dm9 has joined #nixos
17:40
mvnetbiz_ has joined #nixos
17:44
u0_a121 has joined #nixos
17:46
kloenk has quit [Read error: Connection reset by peer]
17:47
Chiliparrot has joined #nixos
17:48
knupfer has quit [Quit: knupfer]
17:51
u0_a121 has quit [Read error: Connection reset by peer]
17:52
knupfer has joined #nixos
17:54
kloenk has joined #nixos
17:56
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79640 → python27Packages.simplekml: 1.3.1 -> 1.3.3 →
https://git.io/Jvcnv
17:58
aveltras has quit [Quit: Connection closed for inactivity]
17:58
sb0 has joined #nixos
17:58
o1lo01ol1o has joined #nixos
17:59
gustavderdrache has joined #nixos
17:59
<
mudri >
Remind me: where can I find the list of commits corresponding to updates of the nixos-unstable channel?
18:01
kloenk has quit [Ping timeout: 260 seconds]
18:04
o1lo01ol1o has quit [Ping timeout: 260 seconds]
18:07
knupfer has quit [Quit: knupfer]
18:09
andi- has quit [Quit: WeeChat 2.6]
18:10
andi- has joined #nixos
18:14
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79642 → python27Packages.pycollada: 0.7 -> 0.7.1 →
https://git.io/Jvcnc
18:14
kloenk has joined #nixos
18:15
samrose has joined #nixos
18:16
justanotheruser has quit [Ping timeout: 260 seconds]
18:17
turona has quit [Quit: ...]
18:19
<
{^_^} >
[nixpkgs] @lsix merged pull request #79615 → python27Packages.django-storages: 1.8 -> 1.9.1 →
https://git.io/JvcLg
18:20
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @risicle to master « libexif: add patch for CVE-2019-9278 »:
https://git.io/JvcnE
18:23
justanotheruser has joined #nixos
18:24
<
mudri >
Thanks! :-)
18:25
<
qqlq >
Are there any people here who have multiple encrypted zfs pools that are unlocked at boot time?
18:26
turona has joined #nixos
18:26
<
{^_^} >
[nixpkgs] @FRidh merged pull request #79640 → python27Packages.simplekml: 1.3.1 -> 1.3.3 →
https://git.io/Jvcnv
18:26
<
{^_^} >
[nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.simplekml: 1.3.1 -> 1.3.3 »:
https://git.io/Jvcno
18:26
<
Thra11 >
Is there a function like `map`, but for sets?
18:27
domogled has joined #nixos
18:27
<
clever >
> :p lib.mapAttrs (a: a * 10) { a=1; b=2; c=3; }
18:27
<
{^_^} >
value is a string while an integer was expected, at (string):277:18
18:28
<
clever >
> :p lib.mapAttrs (key: v: v * 10) { a=1; b=2; c=3; }
18:28
<
{^_^} >
{ a = 10; b = 20; c = 30; }
18:28
<
clever >
Thra11: f gets ran on every key/value pair, and the return value becomes the new value at that pair
18:29
dm9 has quit [Quit: WeeChat 2.7]
18:30
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79644 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 →
https://git.io/JvcnP
18:30
ixxie has joined #nixos
18:31
<
Thra11 >
clever++: Sounds like what I want, thanks
18:31
<
{^_^} >
clever's karma got increased to 323
18:32
o1lo01ol1o has joined #nixos
18:34
LouisDK has joined #nixos
18:36
<
m1cr0m4n >
flokli: I need to chat to you about these comments
18:36
o1lo01ol1o has quit [Ping timeout: 265 seconds]
18:37
<
{^_^} >
[nixpkgs] @risicle opened pull request #79645 → [r19.09] libexif: add patch for CVE-2019-9278 →
https://git.io/JvcnS
18:37
<
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
18:39
<
m1cr0m4n >
I'm not sure what you are expecting wrt serverAlises. I haven't changed any functionality there.
18:39
o1lo01ol1o has joined #nixos
18:40
<
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?
18:44
o1lo01ol1o has quit [Ping timeout: 265 seconds]
18:44
kloenk has quit [Read error: Connection reset by peer]
18:46
chagra has quit [Ping timeout: 268 seconds]
18:48
chagra has joined #nixos
18:52
<
{^_^} >
[nixpkgs] @pacien closed pull request #62864 → [WIP] matrix-appservice-irc: init at 0.12.0 →
https://git.io/fjzMT
18:54
<
ivegotasthma >
hello, where can I find the hamachi daemon
18:56
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79647 → python27Packages.ua-parser: 0.8.0 -> 0.9.0 →
https://git.io/Jvcct
18:56
<
infinisil >
ivegotasthma: Did you not find it in the nixos options?
18:56
<
ivegotasthma >
I need to start it so I can run it
18:56
<
ivegotasthma >
I don't know how to start it
18:57
endformationage has joined #nixos
18:57
<
infinisil >
ivegotasthma: So, did you search through the nixos options?
18:58
<
ivegotasthma >
I found it from the nix package
18:59
<
chagra >
add `services.logmein-hamachi.enable = true;` to configuration.nix to enable it
19:00
<
infinisil >
chagra: I wanted them to find the option on their own
19:00
<
chagra >
oh im really sorry, I should have understood
19:02
<
samrose >
seeking examples of nix + clojure + leiningen nix package
19:02
o1lo01ol1o has joined #nixos
19:03
o1lo01ol1o has quit [Remote host closed the connection]
19:04
o1lo01ol1o has joined #nixos
19:09
kloenk has joined #nixos
19:11
LouisDK has quit [Ping timeout: 260 seconds]
19:14
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79649 → python27Packages.uproot: 3.11.1 -> 3.11.2 →
https://git.io/Jvcc1
19:14
u0_a121 has joined #nixos
19:15
waleee-cl has joined #nixos
19:15
ng0_ has joined #nixos
19:15
bvdw has quit [Read error: Connection reset by peer]
19:15
bvdw has joined #nixos
19:16
<
Thra11 >
How do I override an attribute on a qt module in an overlay?
19:17
ng0 has quit [Ping timeout: 246 seconds]
19:19
chagra_ has joined #nixos
19:20
<
infinisil >
Thra11: Have you tried the standard .override?
19:21
<
Thra11 >
Maybe I'm asking the wrong question. I want to enable debug symbols in the module
19:22
chagra has quit [Ping timeout: 246 seconds]
19:22
<
infinisil >
Thra11: Usually you should be able to use `pkgs.enableDebugging pkgs.foo` to get that
19:22
chagra has joined #nixos
19:26
chagra_ has quit [Ping timeout: 268 seconds]
19:26
<
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?
19:27
<
infinisil >
I don't know much about this, it might work
19:27
<
heath >
where is callCabal2Nix defined?
19:28
mDuff has joined #nixos
19:28
<
heath >
or is there a general callX function?
19:28
neeasade has joined #nixos
19:29
<
infinisil >
> builtins.unsafeGetAttrPos "callCabal2nix" haskellPackages
19:29
<
neeasade >
hello all -- is there a way to use ggtags to jump to header file in an emacs-shell setup
19:29
<
neeasade >
er, nix-shell setup
19:29
<
{^_^} >
{ column = 5; file = "/var/lib/nixbot/nixpkgs/master/repo/pkgs/development/haskell-modules/make-package-set.nix"; line = 216; }
19:29
<
infinisil >
heath: ^
19:29
<
infinisil >
So in pkgs/development/haskell-modules/make-package-set.nix
19:30
kloenk has joined #nixos
19:30
monadplus has joined #nixos
19:32
monadplus has quit [Client Quit]
19:32
<
heath >
pretty sure i saw this file at 5am, but it was 5am
19:33
Thra11 has quit [Ping timeout: 240 seconds]
19:35
<
{^_^} >
[nixpkgs] @samueldr merged pull request #79368 → nixos/lib/make-ext4-fs: fall back to resize2fs -M if exact resize fails →
https://git.io/JvZPu
19:36
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
19:36
<
evanjs >
Is the weechat service still broken on NixOS?
19:37
<
evanjs >
Can't quite recall what the problem was last time... i just remember it not working before
19:38
<
chagra >
evanjs: I was using it until the last 2 weeks, It was not broken. Was this recent?
19:38
<
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
19:38
<
chagra >
I just opted in doing my own setup so I can set weechat secrets with home-manager
19:38
<
evanjs >
The one thing I might be thinking of is the weirdness with the screen type it used (multi-user?) ohhhhhh okay
19:39
<
chagra >
yeah that's the one
19:39
<
chagra >
I remember I had to do something to make it work
19:39
<
chagra >
let me look at my old git commits
19:40
<
evanjs >
btw, sondr3 did you get all the stuff figured out with nixos/xmonad/taffybar and etc?
19:40
<
chagra >
services.weechat.enable = true;
19:40
<
chagra >
programs.screen.screenrc = ''
19:41
<
chagra >
multiuser on
19:41
<
chagra >
acladd iheb
19:41
<
chagra >
term screen-256color
19:41
<
chagra >
i did this
19:41
<
chagra >
you had to do acladd ${user}
19:41
<
evanjs >
looks like I added normal_user on mine
19:42
<
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
19:42
<
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
19:43
<
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
19:44
<
evanjs >
I already have a billion in my config, anyway. Not like it could hurt. Just for secret management, though, or?
19:45
bhipple has quit [Ping timeout: 268 seconds]
19:46
gxt has quit [Remote host closed the connection]
19:47
gxt has joined #nixos
19:48
Thra11 has joined #nixos
19:48
<
{^_^} >
[nixpkgs] @r-ryantm opened pull request #79652 → python27Packages.uproot-methods: 0.7.2 -> 0.7.3 →
https://git.io/JvcCi
19:49
<
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
19:50
<
evanjs >
I wonder if anybody else is even seeing the same issue
19:51
gnidorah has quit [Quit: Connection closed for inactivity]
19:52
nrdxpmatrixorg[m has joined #nixos
19:56
o1lo01ol1o has quit [Remote host closed the connection]
19:56
<
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
19:58
<
worldofpeace >
evanjs: you're looking for nodePackages maintainers right?
19:58
<
evanjs >
worldofpeace: yes
20:00
<
worldofpeace >
evanjs: hmm, IIRC adisbladis could help you
20:00
<
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.
20:01
<
worldofpeace >
and via git history, Mic92
20:06
f0x has quit [Remote host closed the connection]
20:06
joepie91 has quit [Remote host closed the connection]
20:08
leah2 has quit [Ping timeout: 260 seconds]
20:10
leah2 has joined #nixos
20:16
<
evanjs >
worldofpeace: yes, Mic92 was who I asked for my last PR as he had opened the previous generic nodePackages set bump
20:16
<
evanjs >
worldofpeace++
20:16
<
{^_^} >
worldofpeace's karma got increased to 63
20:17
sogatori has quit [Remote host closed the connection]
20:21
domogled has quit [Ping timeout: 272 seconds]
20:22
<
evanjs >
added both and will let them tell me if that's bad :D
20:22
<
{^_^} >
[hydra] @grahamc opened pull request #713 → Copy the flake migration from the flake branch →
https://git.io/JvcWG
20:24
<
evanjs >
now I just need to wait for the nix-review on #77714 to finish :P
20:24
kloenk has joined #nixos
20:25
CreamyNebula has joined #nixos
20:28
shibboleth has joined #nixos
20:29
<
{^_^} >
[nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « verifast: 18.02 -> 19.12 »:
https://git.io/JvcWl
20:31
tjg1 has quit [Quit: DON'T KEEP CALM AND FUCK THIS. FUCK THAT. FUCK YOU. FUCK OFF.]
20:32
o1lo01ol1o has joined #nixos
20:33
trcm has joined #nixos
20:36
f0xpixietown has joined #nixos
20:37
o1lo01ol1o has quit [Ping timeout: 265 seconds]
20:38
joepie91pixietow has joined #nixos
20:38
f0xpixietown has quit [Client Quit]
20:38
joepie91pixietow has quit [Client Quit]
20:38
f0x has joined #nixos
20:38
<
evanjs >
hey grahamc[m], do obscene quit messages count as "vulgar language" on nixos channels? :P ^
20:39
<
worldofpeace >
evanjs: pretty sure his primary nick is gchristensen
20:39
Guest88309 has joined #nixos
20:40
<
evanjs >
gchristensen -- oh. did not realize that haha
20:40
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79632 → python27Packages.spotipy: 2.6.1 -> 2.7.1 →
https://git.io/JvcsD
20:40
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.spotipy: 2.6.1 -> 2.7.1 »:
https://git.io/JvcWi
20:40
chagra has quit [Ping timeout: 268 seconds]
20:41
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79636 → python27Packages.augeas: 1.0.3 -> 1.1.0 →
https://git.io/JvcGX
20:41
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.augeas: 1.0.3 -> 1.1.0 »:
https://git.io/JvcWX
20:42
kloenk has joined #nixos
20:42
chagra has joined #nixos
20:43
<
gchristensen >
I've DM'd them in the past, but no reply. not sure what to do
20:43
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79652 → python27Packages.uproot-methods: 0.7.2 -> 0.7.3 →
https://git.io/JvcCi
20:43
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.uproot-methods: 0.7.2 -> 0.7.3 »:
https://git.io/JvcW1
20:44
lovesegfault has joined #nixos
20:46
<
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?
20:47
<
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
20:47
CreamyNebula has quit [Quit: Leaving]
20:48
<
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
20:48
<
evanjs >
nrdxpmatrixorg[m: ahhh well no spam bots, then?
20:48
<
evanjs >
*anti-spam bots
20:48
elibrokeit has quit [Quit: A random quit message]
20:49
<
qyliss >
evanjs: there's no need for a registered account here
20:49
elibrokeit has joined #nixos
20:49
<
qyliss >
mozilla just weren't interested in implementing spam protection (or in maintaining their irc server at all), afaik
20:50
nrdxpmatrixorg[m is now known as nrdxp[m]
20:51
<
nrdxp[m] >
evanjs: not sure about anit-spam bots myself
20:52
<
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!
20:52
<
{^_^} >
[nixpkgs] @jonringer opened pull request #79654 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 →
https://git.io/JvclT
20:52
<
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?
20:53
<
qyliss >
cole-h: you can try to use breakpointHook, although I've never got it to work
20:53
<
qyliss >
actually, what you probably want is just nix-build -K
20:55
<
cole-h >
qyliss++: Yep, that works. Thanks!
20:55
<
{^_^} >
qyliss's karma got increased to 31
20:57
<
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.
20:57
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.pydantic: 1.3 -> 1.4 »:
https://git.io/Jvclq
20:58
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79635 → python27Packages.persim: 0.1.1 -> 0.1.2 →
https://git.io/JvcGg
20:58
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.persim: 0.1.1 -> 0.1.2 »:
https://git.io/JvclY
20:59
o1lo01ol1o has joined #nixos
21:00
kleisli has quit [Ping timeout: 240 seconds]
21:01
<
{^_^} >
[nixpkgs] @worldofpeace opened pull request #79656 → release-combined: readde keymap tests →
https://git.io/JvclZ
21:02
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79621 → python37Packages.pikepdf: 1.8.2 -> 1.10.0 →
https://git.io/JvcY8
21:02
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.pikepdf: 1.8.2 -> 1.10.0 »:
https://git.io/JvclC
21:02
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.rq: 1.1.0 -> 1.2.2 »:
https://git.io/JvclW
21:03
<
{^_^} >
[nixpkgs] @jonringer closed pull request #79644 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 →
https://git.io/JvcnP
21:03
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79654 → python27Packages.nwdiag: 1.0.4 -> 2.0.0 →
https://git.io/JvclT
21:04
<
{^_^} >
[nixpkgs] @risicle opened pull request #79657 → [r19.09] pythonPackages.feedgen: 0.7.0 -> 0.9.0, addressing CVE-2020-5227 →
https://git.io/JvclB
21:07
fenedor has joined #nixos
21:08
lovesegfault has quit [Quit: WeeChat 2.7]
21:09
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79642 → python27Packages.pycollada: 0.7 -> 0.7.1 →
https://git.io/Jvcnc
21:09
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.pycollada: 0.7 -> 0.7.1 »:
https://git.io/Jvcla
21:09
sondr3 has quit [Quit: WeeChat 2.7]
21:10
<
{^_^} >
[nixpkgs] @worldofpeace merged pull request #78453 → nixos/grub: make memtest work with EFI →
https://git.io/Jvqs7
21:10
CreamyNebula has joined #nixos
21:11
fendor has quit [Ping timeout: 260 seconds]
21:14
Guest88309 is now known as joepie91
21:14
joepie91 is now known as Guest8170
21:15
Thra11 has quit [Quit: WeeChat 2.7]
21:16
kleisli has joined #nixos
21:17
ng0 has joined #nixos
21:17
gustavderdrache has left #nixos [#nixos]
21:17
Guest8170 is now known as joepie91
21:18
joepie91 has joined #nixos
21:18
joepie91 has quit [Changing host]
21:19
CreamyNebula has left #nixos ["Leaving"]
21:20
ng0_ has quit [Ping timeout: 240 seconds]
21:23
cosimone has joined #nixos
21:24
thc202 has quit [Ping timeout: 256 seconds]
21:24
leotaku has quit [*.net *.split]
21:24
fling has quit [*.net *.split]
21:24
goodwill has quit [*.net *.split]
21:24
Izorkin has quit [*.net *.split]
21:24
ambroiseur has quit [*.net *.split]
21:24
tpanum- has quit [*.net *.split]
21:24
mmlb has quit [*.net *.split]
21:24
mir100 has quit [*.net *.split]
21:24
energizer has quit [*.net *.split]
21:24
luigy has quit [*.net *.split]
21:24
xqsl has quit [*.net *.split]
21:24
wolfshappen has quit [*.net *.split]
21:24
arianvp has quit [*.net *.split]
21:24
nckx has quit [*.net *.split]
21:24
evhan has quit [*.net *.split]
21:24
skrzyp has quit [*.net *.split]
21:24
jboy has quit [*.net *.split]
21:24
dsg has quit [*.net *.split]
21:24
Czen has quit [*.net *.split]
21:24
jD91mZM2 has quit [*.net *.split]
21:24
hyper_ch has quit [*.net *.split]
21:24
mniip has quit [*.net *.split]
21:24
DerGuteMoritz has quit [*.net *.split]
21:24
simukis_ has quit [*.net *.split]
21:24
coderobe has quit [*.net *.split]
21:24
spacekookie has quit [*.net *.split]
21:24
umachan has quit [*.net *.split]
21:24
helpusobi has quit [*.net *.split]
21:24
jerryaldrichiii has quit [*.net *.split]
21:24
hark has quit [*.net *.split]
21:24
pie_[bnc] has quit [*.net *.split]
21:24
habbah has quit [*.net *.split]
21:24
Profpatsch has quit [*.net *.split]
21:24
amosbird has quit [*.net *.split]
21:24
silver_hook has quit [*.net *.split]
21:24
wrl has quit [*.net *.split]
21:24
naivesheep has quit [*.net *.split]
21:24
Mrmaxmeier has quit [*.net *.split]
21:24
otulp has quit [*.net *.split]
21:24
ptrcmd has quit [*.net *.split]
21:24
aszlig has quit [*.net *.split]
21:24
octe has quit [*.net *.split]
21:24
dirkx_ has quit [*.net *.split]
21:24
fionera has quit [*.net *.split]
21:24
cruxeternus has quit [*.net *.split]
21:24
glines has quit [*.net *.split]
21:24
mgdm has quit [*.net *.split]
21:24
sveitser has quit [*.net *.split]
21:24
penguwin has quit [*.net *.split]
21:24
steell has quit [*.net *.split]
21:24
MarcWeber has quit [*.net *.split]
21:24
samueldr has quit [*.net *.split]
21:24
voidcontext has quit [*.net *.split]
21:24
betawaffle has quit [*.net *.split]
21:24
v88m has quit [Remote host closed the connection]
21:25
luigy has joined #nixos
21:25
Profpatsch has joined #nixos
21:25
energizer has joined #nixos
21:25
tpanum- has joined #nixos
21:25
goodwill has joined #nixos
21:25
mmlb has joined #nixos
21:25
Izorkin has joined #nixos
21:25
wolfshappen has joined #nixos
21:25
ambroiseur has joined #nixos
21:25
xqsl has joined #nixos
21:25
leotaku has joined #nixos
21:25
mgdm has joined #nixos
21:25
voidcontext has joined #nixos
21:25
cruxeternus has joined #nixos
21:25
sveitser has joined #nixos
21:25
hark has joined #nixos
21:25
MarcWeber has joined #nixos
21:25
habbah has joined #nixos
21:25
jD91mZM2 has joined #nixos
21:25
octe has joined #nixos
21:25
evhan has joined #nixos
21:25
arianvp has joined #nixos
21:25
silver_hook has joined #nixos
21:25
glines has joined #nixos
21:25
DerGuteMoritz has joined #nixos
21:25
jerryaldrichiii has joined #nixos
21:25
Mrmaxmeier has joined #nixos
21:25
wrl has joined #nixos
21:25
steell has joined #nixos
21:25
simukis_ has joined #nixos
21:25
dirkx_ has joined #nixos
21:25
skrzyp has joined #nixos
21:25
dsg has joined #nixos
21:25
Czen has joined #nixos
21:25
jboy has joined #nixos
21:25
penguwin has joined #nixos
21:25
mniip has joined #nixos
21:25
spacekookie has joined #nixos
21:25
amosbird has joined #nixos
21:25
umachan has joined #nixos
21:25
ptrcmd has joined #nixos
21:25
hyper_ch has joined #nixos
21:25
aszlig has joined #nixos
21:25
fionera has joined #nixos
21:25
naivesheep has joined #nixos
21:25
pie_[bnc] has joined #nixos
21:25
helpusobi has joined #nixos
21:25
nckx has joined #nixos
21:25
samueldr has joined #nixos
21:25
otulp has joined #nixos
21:25
betawaffle has joined #nixos
21:26
coderobe has joined #nixos
21:26
Thra11 has joined #nixos
21:26
habbah has quit [Max SendQ exceeded]
21:26
silver_hook has quit [Max SendQ exceeded]
21:26
energizer has quit [Max SendQ exceeded]
21:26
leotaku has quit [Max SendQ exceeded]
21:26
samueldr has quit [Excess Flood]
21:26
mir100 has joined #nixos
21:26
shibboleth has quit [Quit: shibboleth]
21:26
FRidh2 has quit [Quit: Konversation terminated!]
21:26
fling has joined #nixos
21:27
silver_hook has joined #nixos
21:27
djahandarie has quit [*.net *.split]
21:27
Intensity has quit [*.net *.split]
21:27
leotaku has joined #nixos
21:27
djahandarie has joined #nixos
21:27
Intensity has joined #nixos
21:27
neeasade has quit [Ping timeout: 272 seconds]
21:28
f18d7dc7 has quit [*.net *.split]
21:29
f18d7dc7 has joined #nixos
21:29
<
{^_^} >
[nixpkgs] @worldofpeace opened pull request #79659 → testing: fix runInMachineWithX/runInMachine →
https://git.io/Jvc8J
21:29
energizer has joined #nixos
21:29
emacsoma1 has quit [Read error: Connection reset by peer]
21:29
leotaku has quit [*.net *.split]
21:29
coderobe has quit [*.net *.split]
21:29
test53453535[m] has quit [*.net *.split]
21:29
jmeredith has quit [*.net *.split]
21:29
sputny[m] has quit [*.net *.split]
21:29
denbrahe[m] has quit [*.net *.split]
21:29
ongy[m] has quit [*.net *.split]
21:29
alexarice[m] has quit [*.net *.split]
21:29
leons has quit [*.net *.split]
21:29
nilsirl[m] has quit [*.net *.split]
21:29
worldofpeace has quit [*.net *.split]
21:29
roberth has quit [*.net *.split]
21:29
_rvl has quit [*.net *.split]
21:29
witchof0x20 has quit [*.net *.split]
21:29
w3emperor has quit [*.net *.split]
21:29
ardumont has quit [*.net *.split]
21:29
romanofski has quit [*.net *.split]
21:29
danguita has quit [*.net *.split]
21:29
victorbjelkholm_ has quit [*.net *.split]
21:29
heatm1s3r has quit [*.net *.split]
21:29
jeregrine has quit [*.net *.split]
21:29
ocharles has quit [*.net *.split]
21:29
mkaito has quit [*.net *.split]
21:29
LnL has quit [*.net *.split]
21:29
eddyb[legacy] has quit [*.net *.split]
21:29
valwal has quit [*.net *.split]
21:29
tg has quit [*.net *.split]
21:29
joshmeredith has quit [*.net *.split]
21:29
lally has quit [*.net *.split]
21:29
AluisioASG has quit [*.net *.split]
21:29
davidtwco has quit [*.net *.split]
21:29
Miyu-saki has quit [*.net *.split]
21:29
m4ts has quit [*.net *.split]
21:29
evck has quit [*.net *.split]
21:29
tnks has quit [*.net *.split]
21:29
parseval has quit [*.net *.split]
21:29
shad has quit [*.net *.split]
21:29
nisstyre has quit [*.net *.split]
21:29
jmarin217 has quit [*.net *.split]
21:29
digitalgrease has quit [*.net *.split]
21:29
jol has quit [*.net *.split]
21:29
higherorder has quit [*.net *.split]
21:29
darkf has quit [*.net *.split]
21:29
ProofTechnique has quit [*.net *.split]
21:29
e has quit [*.net *.split]
21:29
xacktm has quit [*.net *.split]
21:29
davean has quit [*.net *.split]
21:29
amanjeev has quit [*.net *.split]
21:29
klys has quit [*.net *.split]
21:29
yourfate has quit [*.net *.split]
21:29
krasnij has quit [*.net *.split]
21:29
sauyon has quit [*.net *.split]
21:29
lecethimon has quit [*.net *.split]
21:29
sshow has quit [*.net *.split]
21:29
dredozubov has quit [*.net *.split]
21:29
mk_modrzew has quit [*.net *.split]
21:29
Ashy has quit [*.net *.split]
21:29
benny has quit [*.net *.split]
21:29
joepie91 has quit [*.net *.split]
21:29
eol[m] has quit [*.net *.split]
21:29
pinion[m] has quit [*.net *.split]
21:29
Leira[m] has quit [*.net *.split]
21:29
aleph9[m] has quit [*.net *.split]
21:29
val2229[m] has quit [*.net *.split]
21:29
dot-product[m] has quit [*.net *.split]
21:29
prusnak[m] has quit [*.net *.split]
21:29
tomberek[m] has quit [*.net *.split]
21:29
Keith[m] has quit [*.net *.split]
21:29
boturl4r[m] has quit [*.net *.split]
21:29
simbergm has quit [*.net *.split]
21:29
hagelslag[m] has quit [*.net *.split]
21:29
snupples[m] has quit [*.net *.split]
21:29
Irenes[m] has quit [*.net *.split]
21:29
xa0[m] has quit [*.net *.split]
21:29
ksixty1 has quit [*.net *.split]
21:29
contrun[m] has quit [*.net *.split]
21:29
Minijackson[m] has quit [*.net *.split]
21:29
frhun has quit [*.net *.split]
21:29
mica[m] has quit [*.net *.split]
21:29
hiroshi[m] has quit [*.net *.split]
21:29
david-sawatzke[m has quit [*.net *.split]
21:29
veleiro has quit [*.net *.split]
21:29
wnklmnn[m] has quit [*.net *.split]
21:29
MilkManzJourDadd has quit [*.net *.split]
21:29
drgbr has quit [*.net *.split]
21:29
li_matrix has quit [*.net *.split]
21:29
MarkOtaris has quit [*.net *.split]
21:29
ashkitten has quit [*.net *.split]
21:29
Shell has quit [*.net *.split]
21:29
johs has quit [*.net *.split]
21:29
gausby_ has quit [*.net *.split]
21:29
johanot has quit [*.net *.split]
21:29
lirzhv has quit [*.net *.split]
21:29
pkral has quit [*.net *.split]
21:29
manveru has quit [*.net *.split]
21:30
hexagoxel has quit [*.net *.split]
21:30
Dagger has quit [*.net *.split]
21:30
lightbulbjim has quit [*.net *.split]
21:30
dozn has quit [*.net *.split]
21:30
rembo10 has quit [*.net *.split]
21:30
malSet has quit [*.net *.split]
21:30
{^_^} has quit [*.net *.split]
21:30
kyren has quit [*.net *.split]
21:30
KennosiS has quit [*.net *.split]
21:30
fpletz has quit [*.net *.split]
21:30
GlennS has quit [*.net *.split]
21:30
PyroLagus has quit [*.net *.split]
21:30
flokli has quit [*.net *.split]
21:30
betaboon has quit [*.net *.split]
21:30
f0x2 has quit [*.net *.split]
21:30
siel has quit [*.net *.split]
21:30
inkOne__ has quit [*.net *.split]
21:30
aranea has quit [*.net *.split]
21:30
sigwinch28 has quit [*.net *.split]
21:30
smj has quit [*.net *.split]
21:30
heinrich5991 has quit [*.net *.split]
21:30
djanatyn_ has quit [*.net *.split]
21:30
nrdxp[m] has quit [*.net *.split]
21:30
abbe has quit [*.net *.split]
21:30
mdash has quit [*.net *.split]
21:30
kennykwey[m] has quit [*.net *.split]
21:30
teuffil[m] has quit [*.net *.split]
21:30
jonreeve[m] has quit [*.net *.split]
21:30
joelwallis1[m] has quit [*.net *.split]
21:30
tek[m] has quit [*.net *.split]
21:30
wedens[m] has quit [*.net *.split]
21:30
bohan[m] has quit [*.net *.split]
21:30
acowley[m] has quit [*.net *.split]
21:30
grin[m] has quit [*.net *.split]
21:30
atopuzov[m] has quit [*.net *.split]
21:30
yoho[m]1 has quit [*.net *.split]
21:30
chvp has quit [*.net *.split]
21:30
nolan_d has quit [*.net *.split]
21:30
Noughtmare[m] has quit [*.net *.split]
21:30
phittacus has quit [*.net *.split]
21:30
seb314[m] has quit [*.net *.split]
21:30
abbec has quit [*.net *.split]
21:30
flacks_ has quit [*.net *.split]
21:30
danielrf[m] has quit [*.net *.split]
21:30
florianjacob has quit [*.net *.split]
21:30
cocreature has quit [*.net *.split]
21:30
habbah has joined #nixos
21:30
leotaku has joined #nixos
21:30
florianjacob has joined #nixos
21:30
joelwallis1[m] has joined #nixos
21:30
jonreeve[m] has joined #nixos
21:30
kennykwey[m] has joined #nixos
21:30
MarkOtaris has joined #nixos
21:30
simbergm has joined #nixos
21:30
teuffil[m] has joined #nixos
21:30
danielrf[m] has joined #nixos
21:30
abbec has joined #nixos
21:30
heatm1s3r has joined #nixos
21:30
nolan_d has joined #nixos
21:30
MilkManzJourDadd has joined #nixos
21:30
inkOne__ has joined #nixos
21:30
roberth has joined #nixos
21:30
pinion[m] has joined #nixos
21:30
johanot has joined #nixos
21:30
Miyu-saki has joined #nixos
21:30
Ashy has joined #nixos
21:30
chvp has joined #nixos
21:30
seb314[m] has joined #nixos
21:30
betaboon has joined #nixos
21:30
prusnak[m] has joined #nixos
21:30
ocharles has joined #nixos
21:30
sigwinch28 has joined #nixos
21:30
drgbr has joined #nixos
21:30
eddyb[legacy] has joined #nixos
21:30
mkaito has joined #nixos
21:30
jeregrine has joined #nixos
21:30
ProofTechnique has joined #nixos
21:30
xacktm has joined #nixos
21:30
tnks has joined #nixos
21:30
m4ts has joined #nixos
21:30
e has joined #nixos
21:30
tomberek[m] has joined #nixos
21:30
victorbjelkholm_ has joined #nixos
21:30
higherorder has joined #nixos
21:30
fpletz has joined #nixos
21:30
aranea has joined #nixos
21:30
ardumont has joined #nixos
21:30
snupples[m] has joined #nixos
21:30
dot-product[m] has joined #nixos
21:30
lally has joined #nixos
21:30
KennosiS has joined #nixos
21:30
david-sawatzke[m has joined #nixos
21:30
veleiro has joined #nixos
21:30
jol has joined #nixos
21:30
steveeJ has joined #nixos
21:30
lirzhv has joined #nixos
21:30
digitalgrease has joined #nixos
21:30
wedens[m] has joined #nixos
21:30
tek[m] has joined #nixos
21:30
alexarice[m] has joined #nixos
21:30
yoho[m]1 has joined #nixos
21:30
ongy[m] has joined #nixos
21:30
acowley[m] has joined #nixos
21:30
davean has joined #nixos
21:30
xa0[m] has joined #nixos
21:30
aleph9[m] has joined #nixos
21:30
siel has joined #nixos
21:30
LnL has joined #nixos
21:30
joepie91 has joined #nixos
21:30
hagelslag[m] has joined #nixos
21:30
heinrich5991 has joined #nixos
21:30
li_matrix has joined #nixos
21:30
Dagger has joined #nixos
21:30
PyroLagus has joined #nixos
21:30
manveru has joined #nixos
21:30
w3emperor has joined #nixos
21:30
hiroshi[m] has joined #nixos
21:30
coderobe has joined #nixos
21:30
pkral has joined #nixos
21:30
yourfate has joined #nixos
21:30
shad has joined #nixos
21:30
lightbulbjim has joined #nixos
21:30
smj has joined #nixos
21:30
atopuzov[m] has joined #nixos
21:30
flacks_ has joined #nixos
21:30
Irenes[m] has joined #nixos
21:30
f0x2 has joined #nixos
21:30
witchof0x20 has joined #nixos
21:30
jmeredith has joined #nixos
21:30
joshmeredith has joined #nixos
21:30
flokli has joined #nixos
21:30
worldofpeace has joined #nixos
21:30
malSet has joined #nixos
21:30
lecethimon has joined #nixos
21:30
Leira[m] has joined #nixos
21:30
AluisioASG has joined #nixos
21:30
nrdxp[m] has joined #nixos
21:30
mk_modrzew has joined #nixos
21:30
boturl4r[m] has joined #nixos
21:30
Keith[m] has joined #nixos
21:30
mica[m] has joined #nixos
21:30
GlennS has joined #nixos
21:30
romanofski has joined #nixos
21:30
sshow has joined #nixos
21:30
_rvl has joined #nixos
21:30
hexagoxel has joined #nixos
21:30
wnklmnn[m] has joined #nixos
21:30
johs has joined #nixos
21:30
dozn has joined #nixos
21:30
klys has joined #nixos
21:30
parseval has joined #nixos
21:30
ksixty1 has joined #nixos
21:30
evck has joined #nixos
21:30
rembo10 has joined #nixos
21:30
sauyon has joined #nixos
21:30
Shell has joined #nixos
21:30
grin[m] has joined #nixos
21:30
amanjeev has joined #nixos
21:30
darkf has joined #nixos
21:30
Noughtmare[m] has joined #nixos
21:30
tg has joined #nixos
21:30
kyren has joined #nixos
21:30
{^_^} has joined #nixos
21:30
krasnij has joined #nixos
21:30
benny has joined #nixos
21:30
ashkitten has joined #nixos
21:30
bohan[m] has joined #nixos
21:30
Minijackson[m] has joined #nixos
21:30
cocreature has joined #nixos
21:30
dredozubov has joined #nixos
21:30
davidtwco has joined #nixos
21:30
gausby_ has joined #nixos
21:30
eol[m] has joined #nixos
21:30
abbe has joined #nixos
21:30
mdash has joined #nixos
21:30
sputny[m] has joined #nixos
21:30
djanatyn_ has joined #nixos
21:30
val2229[m] has joined #nixos
21:30
denbrahe[m] has joined #nixos
21:30
jmarin217 has joined #nixos
21:30
valwal has joined #nixos
21:30
frhun has joined #nixos
21:30
danguita has joined #nixos
21:30
nisstyre has joined #nixos
21:30
phittacus has joined #nixos
21:30
test53453535[m] has joined #nixos
21:30
leons has joined #nixos
21:30
nilsirl[m] has joined #nixos
21:30
v88m has joined #nixos
21:30
tsrt^ has quit [Max SendQ exceeded]
21:30
nst^ has quit [Max SendQ exceeded]
21:30
nisstyre has quit [Max SendQ exceeded]
21:30
w3emperor has quit [Max SendQ exceeded]
21:30
MilkManzJourDadd has quit [Max SendQ exceeded]
21:30
v88m has quit [Read error: Connection reset by peer]
21:31
nisstyre has joined #nixos
21:31
mir100 has quit [*.net *.split]
21:31
elibrokeit has quit [*.net *.split]
21:31
o1lo01ol1o has quit [*.net *.split]
21:31
fenedor has quit [*.net *.split]
21:31
f0x has quit [*.net *.split]
21:31
chagra has quit [*.net *.split]
21:31
leah2 has quit [*.net *.split]
21:31
mDuff has quit [*.net *.split]
21:31
waleee-cl has quit [*.net *.split]
21:31
bvdw has quit [*.net *.split]
21:31
turona has quit [*.net *.split]
21:31
mvnetbiz_ has quit [*.net *.split]
21:31
sb0 has quit [*.net *.split]
21:31
andi- has quit [*.net *.split]
21:31
Supersonic has quit [*.net *.split]
21:31
cole-h has quit [*.net *.split]
21:31
nadley has quit [*.net *.split]
21:31
spacefrogg_ has quit [*.net *.split]
21:31
tilcreator has quit [*.net *.split]
21:31
jgeerds has quit [*.net *.split]
21:31
magnetophon has quit [*.net *.split]
21:31
alex`` has quit [*.net *.split]
21:31
zupo has quit [*.net *.split]
21:31
jjakob has quit [*.net *.split]
21:31
callahad870 has quit [*.net *.split]
21:31
h0m1 has quit [*.net *.split]
21:31
jluttine has quit [*.net *.split]
21:31
Scriptkiddi has quit [*.net *.split]
21:31
aw has quit [*.net *.split]
21:31
felixfoertsch has quit [*.net *.split]
21:31
lejonet has quit [*.net *.split]
21:31
fresheyeball has quit [*.net *.split]
21:31
mac10688 has quit [*.net *.split]
21:31
vesper11 has quit [*.net *.split]
21:31
tokudan has quit [*.net *.split]
21:31
shabius has quit [*.net *.split]
21:31
zaeph has quit [*.net *.split]
21:31
LysergicDreams has quit [*.net *.split]
21:31
ehmry has quit [*.net *.split]
21:31
fre has quit [*.net *.split]
21:31
WilliButz has quit [*.net *.split]
21:31
gerschtli has quit [*.net *.split]
21:31
Dave[m]5 has quit [*.net *.split]
21:31
boogiewoogie[m] has quit [*.net *.split]
21:31
smollcato has quit [*.net *.split]
21:31
alan[m]1 has quit [*.net *.split]
21:31
l_inus[m] has quit [*.net *.split]
21:31
the_pumpkin_man[ has quit [*.net *.split]
21:31
Nyanloutre[m] has quit [*.net *.split]
21:31
imj[m] has quit [*.net *.split]
21:31
vuko has quit [*.net *.split]
21:31
mzan has quit [*.net *.split]
21:31
fuzen has quit [*.net *.split]
21:31
mumuluxi has quit [*.net *.split]
21:31
immae has quit [*.net *.split]
21:31
ddima has quit [*.net *.split]
21:31
sevanspowell has quit [*.net *.split]
21:31
blackriversoftwa has quit [*.net *.split]
21:31
teehemkay has quit [*.net *.split]
21:31
techtangents has quit [*.net *.split]
21:31
rsoeldner has quit [*.net *.split]
21:31
CRTified has quit [*.net *.split]
21:31
rotaerk has quit [*.net *.split]
21:31
Fulgen has quit [*.net *.split]
21:31
genesis has quit [*.net *.split]
21:31
misuzu has quit [*.net *.split]
21:31
deni has quit [*.net *.split]
21:31
snajpa has quit [*.net *.split]
21:31
afics has quit [*.net *.split]
21:31
hexo_ has quit [*.net *.split]
21:31
craige has quit [*.net *.split]
21:31
Adluc has quit [*.net *.split]
21:31
fpob has quit [*.net *.split]
21:31
dminuoso has quit [*.net *.split]
21:31
srk has quit [*.net *.split]
21:31
mrus has quit [*.net *.split]
21:31
moredhel has quit [*.net *.split]
21:31
rprospero has quit [*.net *.split]
21:31
hyperfekt has quit [*.net *.split]
21:31
Rovanion has quit [*.net *.split]
21:31
flacks_ has quit [Max SendQ exceeded]
21:31
shibboleth has joined #nixos
21:31
samueldr has joined #nixos
21:31
<
{^_^} >
[nixpkgs] @veprbl pushed commit from @Abdillah to release-19.09 « librepcb: Fix platform plugin xcb not found »:
https://git.io/Jvc8k
21:31
tsrt^ has joined #nixos
21:31
tsrt^ has quit [Max SendQ exceeded]
21:32
tsrt^ has joined #nixos
21:32
tsrt^ has quit [Max SendQ exceeded]
21:32
victorbjelkholm_ has quit [Ping timeout: 247 seconds]
21:32
darkf has quit [Ping timeout: 247 seconds]
21:32
eddyb[legacy] has quit [Ping timeout: 247 seconds]
21:32
tsrt^ has joined #nixos
21:32
tsrt^ has quit [Max SendQ exceeded]
21:32
Rovanion has joined #nixos
21:32
hyperfekt has joined #nixos
21:32
moredhel has joined #nixos
21:32
rprospero has joined #nixos
21:32
mrus has joined #nixos
21:32
dminuoso has joined #nixos
21:32
srk has joined #nixos
21:32
nst^ has joined #nixos
21:32
bvdw has joined #nixos
21:32
mDuff has joined #nixos
21:32
waleee-cl has joined #nixos
21:32
leah2 has joined #nixos
21:32
turona has joined #nixos
21:32
magnetophon has joined #nixos
21:32
shabius has joined #nixos
21:32
nadley has joined #nixos
21:32
spacefrogg_ has joined #nixos
21:32
jgeerds has joined #nixos
21:32
vesper11 has joined #nixos
21:32
Scriptkiddi has joined #nixos
21:32
aw has joined #nixos
21:32
h0m1 has joined #nixos
21:32
emacsoma1 has joined #nixos
21:32
mac10688 has joined #nixos
21:32
fenedor has joined #nixos
21:32
mvnetbiz_ has joined #nixos
21:32
gerschtli has joined #nixos
21:32
Supersonic has joined #nixos
21:32
alex`` has joined #nixos
21:32
cole-h has joined #nixos
21:32
zaeph has joined #nixos
21:32
chagra has joined #nixos
21:32
WilliButz has joined #nixos
21:32
jjakob has joined #nixos
21:32
fre has joined #nixos
21:32
alan[m]1 has joined #nixos
21:32
ehmry has joined #nixos
21:32
felixfoertsch has joined #nixos
21:32
boogiewoogie[m] has joined #nixos
21:32
o1lo01ol1o has joined #nixos
21:32
andi- has joined #nixos
21:32
tokudan has joined #nixos
21:32
jluttine has joined #nixos
21:32
fresheyeball has joined #nixos
21:32
f0x has joined #nixos
21:32
LysergicDreams has joined #nixos
21:32
lejonet has joined #nixos
21:32
elibrokeit has joined #nixos
21:32
callahad870 has joined #nixos
21:32
sb0 has joined #nixos
21:32
tilcreator has joined #nixos
21:32
l_inus[m] has joined #nixos
21:32
mumuluxi has joined #nixos
21:32
teehemkay has joined #nixos
21:32
immae has joined #nixos
21:32
fuzen has joined #nixos
21:32
ddima has joined #nixos
21:32
blackriversoftwa has joined #nixos
21:32
sevanspowell has joined #nixos
21:32
mzan has joined #nixos
21:32
the_pumpkin_man[ has joined #nixos
21:32
vuko has joined #nixos
21:32
techtangents has joined #nixos
21:32
rsoeldner has joined #nixos
21:32
CRTified has joined #nixos
21:32
Nyanloutre[m] has joined #nixos
21:32
rotaerk has joined #nixos
21:32
craige has joined #nixos
21:32
genesis has joined #nixos
21:32
imj[m] has joined #nixos
21:32
misuzu has joined #nixos
21:32
fpob has joined #nixos
21:32
Fulgen has joined #nixos
21:32
Dave[m]5 has joined #nixos
21:32
hexo_ has joined #nixos
21:32
Adluc has joined #nixos
21:32
snajpa has joined #nixos
21:32
deni has joined #nixos
21:32
afics has joined #nixos
21:32
hoek has quit [Ping timeout: 252 seconds]
21:32
mir100 has joined #nixos
21:32
danguita has quit [Ping timeout: 242 seconds]
21:32
heatm1s3r has quit [Ping timeout: 242 seconds]
21:32
tsrt^ has joined #nixos
21:32
tsrt^ has quit [Max SendQ exceeded]
21:32
vandenoever has joined #nixos
21:33
tsrt^ has joined #nixos
21:33
tsrt^ has quit [Max SendQ exceeded]
21:33
nilsirl[m] has quit [Ping timeout: 246 seconds]
21:33
steveeJ has quit [Ping timeout: 246 seconds]
21:33
ProofTechnique has quit [Ping timeout: 246 seconds]
21:33
higherorder has quit [Ping timeout: 246 seconds]
21:33
neonfuz2 has quit [Ping timeout: 240 seconds]
21:33
colemickens has quit [Ping timeout: 240 seconds]
21:33
domenkozar[m] has quit [Ping timeout: 240 seconds]
21:33
morgib[m] has quit [*.net *.split]
21:33
Logan[m]1 has quit [*.net *.split]
21:33
xavierzwirtz[m] has quit [*.net *.split]
21:33
quidel[m] has quit [*.net *.split]
21:33
dyon[m] has quit [*.net *.split]
21:33
qqlq has quit [*.net *.split]
21:33
mkg20001 has quit [*.net *.split]
21:33
marijan[m] has quit [*.net *.split]
21:33
slabity has quit [*.net *.split]
21:33
ZerataX has quit [*.net *.split]
21:33
rycee has quit [*.net *.split]
21:33
gsals[m] has quit [*.net *.split]
21:33
Guest86989 has quit [*.net *.split]
21:33
musicmatze has quit [*.net *.split]
21:33
jtojnar has quit [*.net *.split]
21:33
acowley has quit [*.net *.split]
21:33
peanutbutter144 has quit [*.net *.split]
21:33
drewr has quit [*.net *.split]
21:33
lstanley has quit [*.net *.split]
21:33
jophish has quit [*.net *.split]
21:33
bitonic has quit [*.net *.split]
21:33
kapil_ has quit [*.net *.split]
21:33
Aleksejs has quit [*.net *.split]
21:33
kriztw has quit [*.net *.split]
21:33
xantoz has quit [*.net *.split]
21:33
scott has quit [*.net *.split]
21:33
chrisaw has quit [*.net *.split]
21:33
tv has quit [*.net *.split]
21:33
Tritlo has quit [*.net *.split]
21:33
ctp has quit [*.net *.split]
21:33
sgraf has quit [*.net *.split]
21:33
_cyril_ has quit [*.net *.split]
21:33
cbarrett has quit [*.net *.split]
21:33
pepesza has quit [*.net *.split]
21:33
ericnoan has quit [*.net *.split]
21:33
Arahael has quit [*.net *.split]
21:33
boegel has quit [*.net *.split]
21:33
jaeckel has quit [*.net *.split]
21:33
agb has quit [*.net *.split]
21:33
Baughn has quit [*.net *.split]
21:33
rauno has quit [*.net *.split]
21:33
alanz has quit [*.net *.split]
21:33
philipcristiano has quit [*.net *.split]
21:33
vdemeester has quit [*.net *.split]
21:33
aristid has quit [*.net *.split]
21:33
delan has quit [*.net *.split]
21:33
etrepum has quit [*.net *.split]
21:33
tabasko has quit [*.net *.split]
21:33
pittma has quit [*.net *.split]
21:33
teozkr has quit [*.net *.split]
21:33
raboof has quit [*.net *.split]
21:33
thoughtpolice has quit [*.net *.split]
21:33
SyrupThinker has quit [*.net *.split]
21:33
geemili has quit [Ping timeout: 245 seconds]
21:33
nrdxp[m] has quit [Ping timeout: 240 seconds]
21:33
grin[m] has quit [Ping timeout: 240 seconds]
21:33
tsrt^ has joined #nixos
21:33
nolan_d has quit [Ping timeout: 240 seconds]
21:33
florianjacob has quit [Ping timeout: 240 seconds]
21:33
prusnak[m] has quit [Ping timeout: 248 seconds]
21:33
boturl4r[m] has quit [Ping timeout: 270 seconds]
21:33
simbergm has quit [Ping timeout: 270 seconds]
21:33
snupples[m] has quit [Ping timeout: 270 seconds]
21:33
hiroshi[m] has quit [Ping timeout: 248 seconds]
21:33
david-sawatzke[m has quit [Ping timeout: 248 seconds]
21:33
MarkOtaris has quit [Ping timeout: 248 seconds]
21:33
manveru has quit [Ping timeout: 270 seconds]
21:33
sebass[m] has quit [Ping timeout: 252 seconds]
21:33
jschievink has quit [Ping timeout: 252 seconds]
21:33
killercup[m] has quit [Ping timeout: 252 seconds]
21:33
emily has quit [Ping timeout: 252 seconds]
21:33
siraben has quit [Ping timeout: 252 seconds]
21:33
pepesza has joined #nixos
21:33
denbrahe[m] has quit [Ping timeout: 246 seconds]
21:33
alexarice[m] has quit [Ping timeout: 246 seconds]
21:33
ongy[m] has quit [Ping timeout: 246 seconds]
21:33
leons has quit [Ping timeout: 246 seconds]
21:33
delan has joined #nixos
21:33
roberth has quit [Ping timeout: 246 seconds]
21:33
parseval has quit [Ping timeout: 246 seconds]
21:33
davidtwco has quit [Ping timeout: 246 seconds]
21:33
rauno has joined #nixos
21:33
agb has joined #nixos
21:33
andi- has quit [Max SendQ exceeded]
21:33
l_inus[m] has quit [Max SendQ exceeded]
21:33
delan has joined #nixos
21:33
delan has quit [Changing host]
21:33
teozkr has joined #nixos
21:33
chatmaster5000[m has quit [Ping timeout: 245 seconds]
21:33
mudrii[m] has quit [Ping timeout: 245 seconds]
21:33
GerdFlaig[m] has quit [Ping timeout: 245 seconds]
21:33
alienpirate5 has quit [Ping timeout: 245 seconds]
21:33
chris| has quit [Ping timeout: 245 seconds]
21:33
kaychaks[m] has quit [Ping timeout: 245 seconds]
21:33
keithy[m] has quit [Ping timeout: 245 seconds]
21:33
ilya-fedin has quit [Ping timeout: 245 seconds]
21:33
thequux[m] has quit [Ping timeout: 245 seconds]
21:33
MerlinGttlinger[ has quit [Ping timeout: 245 seconds]
21:33
averell has quit [*.net *.split]
21:33
ok2` has quit [*.net *.split]
21:33
_cyril_ has joined #nixos
21:33
ctp has joined #nixos
21:33
abbradar[m] has quit [Ping timeout: 256 seconds]
21:33
EuAndreh[m] has quit [Ping timeout: 256 seconds]
21:33
cbarrett has joined #nixos
21:33
philipcristiano has joined #nixos
21:33
vdemeester has joined #nixos
21:33
sgraf has joined #nixos
21:33
Jarva[m] has quit [Ping timeout: 258 seconds]
21:33
rihardsk[m] has quit [Ping timeout: 258 seconds]
21:33
quiet_laika[m] has quit [Ping timeout: 258 seconds]
21:33
tokudan[m] has quit [Ping timeout: 258 seconds]
21:33
Gaz[m]1 has quit [Ping timeout: 258 seconds]
21:33
notice81cabbage[ has quit [Ping timeout: 258 seconds]
21:33
puzzlewolf has quit [Ping timeout: 258 seconds]
21:33
philipp[m] has quit [Ping timeout: 258 seconds]
21:33
spacekitteh[m] has quit [Ping timeout: 258 seconds]
21:33
wak-work has quit [Ping timeout: 258 seconds]
21:33
rnhmjoj has quit [Ping timeout: 258 seconds]
21:33
mupf[m] has quit [Ping timeout: 240 seconds]
21:33
sputny[m] has quit [Ping timeout: 246 seconds]
21:33
test53453535[m] has quit [Ping timeout: 246 seconds]
21:33
ocharles has quit [Ping timeout: 246 seconds]
21:33
etrepum has joined #nixos
21:33
pentadyne[m] has quit [Ping timeout: 240 seconds]
21:33
blitzclone_ has quit [Ping timeout: 258 seconds]
21:33
webdavis has quit [Ping timeout: 240 seconds]
21:33
Ox4A6F has quit [Ping timeout: 258 seconds]
21:33
wangoe[m] has quit [Ping timeout: 240 seconds]
21:33
ok2` has joined #nixos
21:33
scott has joined #nixos
21:33
alanz has joined #nixos
21:33
teuffil[m] has quit [Ping timeout: 240 seconds]
21:33
tek[m] has quit [Ping timeout: 240 seconds]
21:33
wedens[m] has quit [Ping timeout: 240 seconds]
21:33
joelwallis1[m] has quit [Ping timeout: 240 seconds]
21:33
jonreeve[m] has quit [Ping timeout: 240 seconds]
21:33
kennykwey[m] has quit [Ping timeout: 240 seconds]
21:33
bohan[m] has quit [Ping timeout: 240 seconds]
21:33
acowley[m] has quit [Ping timeout: 240 seconds]
21:33
aristid has joined #nixos
21:33
atopuzov[m] has quit [Ping timeout: 240 seconds]
21:33
yoho[m]1 has quit [Ping timeout: 240 seconds]
21:33
chvp has quit [Ping timeout: 240 seconds]
21:33
seb314[m] has quit [Ping timeout: 240 seconds]
21:33
phittacus has quit [Ping timeout: 240 seconds]
21:33
Noughtmare[m] has quit [Ping timeout: 240 seconds]
21:33
danielrf[m] has quit [Ping timeout: 240 seconds]
21:33
abbec has quit [Ping timeout: 240 seconds]
21:33
tyrion-mx has quit [Ping timeout: 252 seconds]
21:33
grahamc[m] has quit [Ping timeout: 252 seconds]
21:33
sreybastien[m] has quit [Ping timeout: 252 seconds]
21:33
Pasha[m] has quit [Ping timeout: 252 seconds]
21:33
ragge[m] has quit [Ping timeout: 252 seconds]
21:33
petersjt014[m] has quit [Ping timeout: 252 seconds]
21:33
index-0[m] has quit [Ping timeout: 252 seconds]
21:33
gustavderdrache[ has quit [Ping timeout: 252 seconds]
21:33
vaibhavsagar has quit [Ping timeout: 252 seconds]
21:33
aterius has quit [Ping timeout: 252 seconds]
21:33
hpfr[m] has quit [Ping timeout: 252 seconds]
21:33
pinage404[m] has quit [Ping timeout: 252 seconds]
21:33
shizonic has quit [Ping timeout: 252 seconds]
21:33
chrisaw has joined #nixos
21:33
thoughtpolice has joined #nixos
21:33
jophish has joined #nixos
21:33
scott has joined #nixos
21:33
scott has quit [Changing host]
21:33
scott has joined #nixos
21:33
scott has quit [Changing host]
21:33
Tritlo has joined #nixos
21:33
vdemeester has joined #nixos
21:33
vdemeester has quit [Changing host]
21:33
pittma has joined #nixos
21:33
val2229[m] has quit [Ping timeout: 248 seconds]
21:33
tomberek[m] has quit [Ping timeout: 248 seconds]
21:33
Keith[m] has quit [Ping timeout: 248 seconds]
21:33
dot-product[m] has quit [Ping timeout: 248 seconds]
21:33
aleph9[m] has quit [Ping timeout: 248 seconds]
21:33
eol[m] has quit [Ping timeout: 248 seconds]
21:33
pinion[m] has quit [Ping timeout: 248 seconds]
21:33
Leira[m] has quit [Ping timeout: 248 seconds]
21:33
hagelslag[m] has quit [Ping timeout: 248 seconds]
21:33
xa0[m] has quit [Ping timeout: 248 seconds]
21:33
Irenes[m] has quit [Ping timeout: 248 seconds]
21:33
ksixty1 has quit [Ping timeout: 248 seconds]
21:33
Minijackson[m] has quit [Ping timeout: 248 seconds]
21:33
mica[m] has quit [Ping timeout: 248 seconds]
21:33
frhun has quit [Ping timeout: 248 seconds]
21:33
wnklmnn[m] has quit [Ping timeout: 248 seconds]
21:33
veleiro has quit [Ping timeout: 248 seconds]
21:33
johs has quit [Ping timeout: 248 seconds]
21:33
li_matrix has quit [Ping timeout: 248 seconds]
21:33
raboof has joined #nixos
21:34
raboof has joined #nixos
21:34
raboof has quit [Changing host]
21:34
thoughtpolice has joined #nixos
21:34
thoughtpolice has quit [Changing host]
21:34
jamiemagee has quit [Ping timeout: 245 seconds]
21:34
Notkea[m] has quit [Ping timeout: 245 seconds]
21:34
dtz has quit [Ping timeout: 245 seconds]
21:34
xantoz has joined #nixos
21:34
worldofpeace has quit [Ping timeout: 246 seconds]
21:34
tobia_[m] has quit [Ping timeout: 252 seconds]
21:34
tbenst[m] has quit [Ping timeout: 252 seconds]
21:34
maralorn[m] has quit [Ping timeout: 252 seconds]
21:34
babariviere[m] has quit [Ping timeout: 252 seconds]
21:34
fabiomen10[m] has quit [Ping timeout: 252 seconds]
21:34
NoblesseOblige24 has quit [Ping timeout: 252 seconds]
21:34
DanP[m] has quit [Ping timeout: 252 seconds]
21:34
jonge[m] has quit [Ping timeout: 252 seconds]
21:34
mt[m] has quit [Ping timeout: 252 seconds]
21:34
teej has quit [Ping timeout: 256 seconds]
21:34
Baughn has joined #nixos
21:34
SyrupThinker has joined #nixos
21:34
averell has joined #nixos
21:34
ericnoan has joined #nixos
21:34
psiperator[m] has quit [Ping timeout: 260 seconds]
21:34
hr[m] has quit [Ping timeout: 260 seconds]
21:34
gotofail[m] has quit [Ping timeout: 260 seconds]
21:34
haruko[m] has quit [Ping timeout: 260 seconds]
21:34
devis350[m] has quit [Ping timeout: 260 seconds]
21:34
lucasmarcos[m] has quit [Ping timeout: 260 seconds]
21:34
bricewge has quit [Ping timeout: 260 seconds]
21:34
ma27[m] has quit [Ping timeout: 260 seconds]
21:34
arcnmx has quit [Ping timeout: 260 seconds]
21:34
Aleksejs has joined #nixos
21:34
Arahael has joined #nixos
21:34
jophish is now known as Guest1826
21:34
drewr has joined #nixos
21:34
d10n-work has quit [Ping timeout: 268 seconds]
21:34
boogiewoogie[m] has quit [Ping timeout: 277 seconds]
21:34
alan[m]1 has quit [Ping timeout: 277 seconds]
21:34
Dave[m]5 has quit [Ping timeout: 277 seconds]
21:34
Nyanloutre[m] has quit [Ping timeout: 277 seconds]
21:34
the_pumpkin_man[ has quit [Ping timeout: 277 seconds]
21:34
imj[m] has quit [Ping timeout: 277 seconds]
21:34
bitonic has joined #nixos
21:34
davidtwco has joined #nixos
21:34
parseval has joined #nixos
21:35
heatm1s3r has joined #nixos
21:35
fling has quit [*.net *.split]
21:35
samueldr has quit [*.net *.split]
21:35
Thra11 has quit [*.net *.split]
21:35
trcm has quit [*.net *.split]
21:35
endformationage has quit [*.net *.split]
21:35
growpotkin has quit [*.net *.split]
21:35
orbekk has quit [*.net *.split]
21:35
chloekek has quit [*.net *.split]
21:35
wavirc22 has quit [*.net *.split]
21:35
shafox has quit [*.net *.split]
21:35
Mateon1 has quit [*.net *.split]
21:35
adamtkh has quit [*.net *.split]
21:35
efriend has quit [*.net *.split]
21:35
reivilibre has quit [*.net *.split]
21:35
alunduil has quit [*.net *.split]
21:35
MasseR has quit [*.net *.split]
21:35
ajmcmiddlin has quit [*.net *.split]
21:35
CMCDragonkai has quit [*.net *.split]
21:35
Cale has quit [*.net *.split]
21:35
kraem has quit [*.net *.split]
21:35
ravndal has quit [*.net *.split]
21:35
lohfu has quit [*.net *.split]
21:35
bridge[evilred] has quit [*.net *.split]
21:35
ToxicFrog has quit [*.net *.split]
21:35
GrimSleepless has quit [*.net *.split]
21:35
c_wraith has quit [*.net *.split]
21:35
alp has quit [*.net *.split]
21:35
evax has quit [*.net *.split]
21:35
edwtjo has quit [*.net *.split]
21:35
puffnfresh_ has quit [*.net *.split]
21:35
sepi``` has quit [*.net *.split]
21:35
lc has quit [*.net *.split]
21:35
timmw has quit [*.net *.split]
21:35
judson_ has quit [*.net *.split]
21:35
blibberblob has quit [*.net *.split]
21:35
nixy37 has quit [*.net *.split]
21:35
gspia has quit [*.net *.split]
21:35
wild_buffalo has quit [*.net *.split]
21:35
obadz has quit [*.net *.split]
21:35
yuken has quit [*.net *.split]
21:35
cyris212 has quit [*.net *.split]
21:35
eyJhb has quit [*.net *.split]
21:35
vk3wtf has quit [*.net *.split]
21:35
davidcl has quit [*.net *.split]
21:35
br_ has quit [*.net *.split]
21:35
jackdk has quit [*.net *.split]
21:35
dbe has quit [*.net *.split]
21:35
awaz has quit [*.net *.split]
21:35
naominitel has quit [*.net *.split]
21:35
drewc has quit [*.net *.split]
21:35
lvmond has quit [*.net *.split]
21:35
rixed has quit [*.net *.split]
21:35
lockshaw has quit [*.net *.split]
21:35
bsima has quit [*.net *.split]
21:35
drozdziak1 has quit [*.net *.split]
21:35
lpsmith_ has quit [*.net *.split]
21:35
monokrome has quit [*.net *.split]
21:35
skatista has quit [*.net *.split]
21:35
hodapp has quit [*.net *.split]
21:35
j4m3s__ has quit [*.net *.split]
21:35
heath has quit [*.net *.split]
21:35
DigitalKiwi has quit [*.net *.split]
21:35
superbaloo has quit [*.net *.split]
21:35
Athas has quit [*.net *.split]
21:35
Niall has quit [*.net *.split]
21:35
acertain has quit [*.net *.split]
21:35
phI||Ip has quit [*.net *.split]
21:35
mightybyte has quit [*.net *.split]
21:35
ok2` has quit [*.net *.split]
21:35
ericnoan has quit [*.net *.split]
21:35
Guest1826 has quit [*.net *.split]
21:35
emacsoma1 has quit [*.net *.split]
21:35
leah2 has quit [*.net *.split]
21:35
f0x has quit [*.net *.split]
21:35
chagra has quit [*.net *.split]
21:35
elibrokeit has quit [*.net *.split]
21:35
o1lo01ol1o has quit [*.net *.split]
21:35
fenedor has quit [*.net *.split]
21:35
waleee-cl has quit [*.net *.split]
21:35
bvdw has quit [*.net *.split]
21:35
mDuff has quit [*.net *.split]
21:35
turona has quit [*.net *.split]
21:35
mvnetbiz_ has quit [*.net *.split]
21:35
sb0 has quit [*.net *.split]
21:35
Supersonic has quit [*.net *.split]
21:35
cole-h has quit [*.net *.split]
21:35
nadley has quit [*.net *.split]
21:35
spacefrogg_ has quit [*.net *.split]
21:35
tilcreator has quit [*.net *.split]
21:35
jgeerds has quit [*.net *.split]
21:35
magnetophon has quit [*.net *.split]
21:35
alex`` has quit [*.net *.split]
21:35
callahad870 has quit [*.net *.split]
21:35
jjakob has quit [*.net *.split]
21:35
jluttine has quit [*.net *.split]
21:35
Scriptkiddi has quit [*.net *.split]
21:35
aw has quit [*.net *.split]
21:35
felixfoertsch has quit [*.net *.split]
21:35
fresheyeball has quit [*.net *.split]
21:35
h0m1 has quit [*.net *.split]
21:35
lejonet has quit [*.net *.split]
21:35
mac10688 has quit [*.net *.split]
21:35
vesper11 has quit [*.net *.split]
21:35
zaeph has quit [*.net *.split]
21:35
shabius has quit [*.net *.split]
21:35
tokudan has quit [*.net *.split]
21:35
LysergicDreams has quit [*.net *.split]
21:35
ehmry has quit [*.net *.split]
21:35
fre has quit [*.net *.split]
21:35
WilliButz has quit [*.net *.split]
21:35
vuko has quit [*.net *.split]
21:35
gerschtli has quit [*.net *.split]
21:35
mumuluxi has quit [*.net *.split]
21:35
mzan has quit [*.net *.split]
21:35
fuzen has quit [*.net *.split]
21:35
immae has quit [*.net *.split]
21:35
ddima has quit [*.net *.split]
21:35
techtangents has quit [*.net *.split]
21:35
sevanspowell has quit [*.net *.split]
21:35
blackriversoftwa has quit [*.net *.split]
21:35
teehemkay has quit [*.net *.split]
21:35
rsoeldner has quit [*.net *.split]
21:35
CRTified has quit [*.net *.split]
21:35
rotaerk has quit [*.net *.split]
21:35
Fulgen has quit [*.net *.split]
21:35
genesis has quit [*.net *.split]
21:35
misuzu has quit [*.net *.split]
21:35
hexo_ has quit [*.net *.split]
21:35
snajpa has quit [*.net *.split]
21:35
Adluc has quit [*.net *.split]
21:35
deni has quit [*.net *.split]
21:35
afics has quit [*.net *.split]
21:35
craige has quit [*.net *.split]
21:35
fpob has quit [*.net *.split]
21:35
averell has quit [*.net *.split]
21:35
dminuoso has quit [*.net *.split]
21:35
srk has quit [*.net *.split]
21:35
mrus has quit [*.net *.split]
21:35
moredhel has quit [*.net *.split]
21:35
rprospero has quit [*.net *.split]
21:35
hyperfekt has quit [*.net *.split]
21:35
Rovanion has quit [*.net *.split]
21:35
parseval has quit [*.net *.split]
21:35
_cyril_ has quit [*.net *.split]
21:35
Tritlo has quit [*.net *.split]
21:35
aristid has quit [*.net *.split]
21:35
cbarrett has quit [*.net *.split]
21:35
leotaku has quit [*.net *.split]
21:35
nst^ has quit [*.net *.split]
21:35
coderobe has quit [*.net *.split]
21:35
jmeredith has quit [*.net *.split]
21:35
witchof0x20 has quit [*.net *.split]
21:35
_rvl has quit [*.net *.split]
21:35
ardumont has quit [*.net *.split]
21:35
romanofski has quit [*.net *.split]
21:35
valwal has quit [*.net *.split]
21:35
LnL has quit [*.net *.split]
21:35
mkaito has quit [*.net *.split]
21:35
jeregrine has quit [*.net *.split]
21:35
AluisioASG has quit [*.net *.split]
21:35
joshmeredith has quit [*.net *.split]
21:35
lally has quit [*.net *.split]
21:35
tg has quit [*.net *.split]
21:35
m4ts has quit [*.net *.split]
21:35
Miyu-saki has quit [*.net *.split]
21:35
shad has quit [*.net *.split]
21:35
evck has quit [*.net *.split]
21:35
tnks has quit [*.net *.split]
21:35
digitalgrease has quit [*.net *.split]
21:35
jmarin217 has quit [*.net *.split]
21:35
jol has quit [*.net *.split]
21:35
e has quit [*.net *.split]
21:35
xacktm has quit [*.net *.split]
21:35
davean has quit [*.net *.split]
21:35
amanjeev has quit [*.net *.split]
21:35
klys has quit [*.net *.split]
21:35
yourfate has quit [*.net *.split]
21:35
krasnij has quit [*.net *.split]
21:35
sauyon has quit [*.net *.split]
21:35
lecethimon has quit [*.net *.split]
21:35
sshow has quit [*.net *.split]
21:35
dredozubov has quit [*.net *.split]
21:35
mk_modrzew has quit [*.net *.split]
21:35
Ashy has quit [*.net *.split]
21:35
benny has quit [*.net *.split]
21:35
davidtwco has quit [*.net *.split]
21:35
heatm1s3r has quit [*.net *.split]
21:35
etrepum has quit [*.net *.split]
21:35
sgraf has quit [*.net *.split]
21:35
pittma has quit [*.net *.split]
21:35
raboof has quit [*.net *.split]
21:35
chrisaw has quit [*.net *.split]
21:35
ctp has quit [*.net *.split]
21:35
tsrt^ has quit [*.net *.split]
21:35
joepie91 has quit [*.net *.split]
21:35
drgbr has quit [*.net *.split]
21:35
ashkitten has quit [*.net *.split]
21:35
gausby_ has quit [*.net *.split]
21:35
Shell has quit [*.net *.split]
21:35
johanot has quit [*.net *.split]
21:35
lirzhv has quit [*.net *.split]
21:35
pkral has quit [*.net *.split]
21:35
Dagger has quit [*.net *.split]
21:35
dozn has quit [*.net *.split]
21:35
rembo10 has quit [*.net *.split]
21:35
hexagoxel has quit [*.net *.split]
21:35
lightbulbjim has quit [*.net *.split]
21:35
malSet has quit [*.net *.split]
21:35
{^_^} has quit [*.net *.split]
21:35
kyren has quit [*.net *.split]
21:35
KennosiS has quit [*.net *.split]
21:35
fpletz has quit [*.net *.split]
21:35
GlennS has quit [*.net *.split]
21:35
PyroLagus has quit [*.net *.split]
21:35
flokli has quit [*.net *.split]
21:35
betaboon has quit [*.net *.split]
21:35
siel has quit [*.net *.split]
21:35
inkOne__ has quit [*.net *.split]
21:35
aranea has quit [*.net *.split]
21:35
sigwinch28 has quit [*.net *.split]
21:35
f0x2 has quit [*.net *.split]
21:35
abbe has quit [*.net *.split]
21:35
mdash has quit [*.net *.split]
21:35
smj has quit [*.net *.split]
21:35
heinrich5991 has quit [*.net *.split]
21:35
djanatyn_ has quit [*.net *.split]
21:35
f18d7dc7 has quit [*.net *.split]
21:35
cocreature has quit [*.net *.split]
21:35
Intensity has quit [*.net *.split]
21:35
djahandarie has quit [*.net *.split]
21:35
goodwill has quit [*.net *.split]
21:35
Izorkin has quit [*.net *.split]
21:35
mmlb has quit [*.net *.split]
21:35
ambroiseur has quit [*.net *.split]
21:35
tpanum- has quit [*.net *.split]
21:35
arianvp has quit [*.net *.split]
21:35
wolfshappen has quit [*.net *.split]
21:35
xqsl has quit [*.net *.split]
21:35
luigy has quit [*.net *.split]
21:35
evhan has quit [*.net *.split]
21:35
nckx has quit [*.net *.split]
21:35
skrzyp has quit [*.net *.split]
21:35
jboy has quit [*.net *.split]
21:35
dsg has quit [*.net *.split]
21:35
DerGuteMoritz has quit [*.net *.split]
21:35
helpusobi has quit [*.net *.split]
21:35
spacekookie has quit [*.net *.split]
21:35
mniip has quit [*.net *.split]
21:35
umachan has quit [*.net *.split]
21:35
simukis_ has quit [*.net *.split]
21:35
Czen has quit [*.net *.split]
21:35
jD91mZM2 has quit [*.net *.split]
21:35
hyper_ch has quit [*.net *.split]
21:35
jerryaldrichiii has quit [*.net *.split]
21:35
hark has quit [*.net *.split]
21:35
pie_[bnc] has quit [*.net *.split]
21:35
Profpatsch has quit [*.net *.split]
21:35
Mrmaxmeier has quit [*.net *.split]
21:35
wrl has quit [*.net *.split]
21:35
amosbird has quit [*.net *.split]
21:35
ptrcmd has quit [*.net *.split]
21:35
naivesheep has quit [*.net *.split]
21:35
aszlig has quit [*.net *.split]
21:35
otulp has quit [*.net *.split]
21:35
dirkx_ has quit [*.net *.split]
21:35
fionera has quit [*.net *.split]
21:35
octe has quit [*.net *.split]
21:35
mgdm has quit [*.net *.split]
21:35
cruxeternus has quit [*.net *.split]
21:35
glines has quit [*.net *.split]
21:35
steell has quit [*.net *.split]
21:35
MarcWeber has quit [*.net *.split]
21:35
sveitser has quit [*.net *.split]
21:35
penguwin has quit [*.net *.split]
21:35
voidcontext has quit [*.net *.split]
21:35
betawaffle has quit [*.net *.split]
21:35
Hunterkll has quit [*.net *.split]
21:35
das_j has quit [*.net *.split]
21:35
zarel has quit [*.net *.split]
21:35
amir has quit [*.net *.split]
21:35
M2easy2do[m] has quit [*.net *.split]
21:35
softinio[m] has quit [*.net *.split]
21:35
emmanuelrosa[m] has quit [*.net *.split]
21:35
p-h[m] has quit [*.net *.split]
21:35
tlater[m] has quit [*.net *.split]
21:35
luc65r[m] has quit [*.net *.split]
21:35
WillW has quit [*.net *.split]
21:35
PlayfulCuriosity has quit [*.net *.split]
21:35
slby[m] has quit [*.net *.split]
21:35
dpc has quit [*.net *.split]
21:35
layus[m] has quit [*.net *.split]
21:35
DenisLehmann[m] has quit [*.net *.split]
21:35
bennofs[m] has quit [*.net *.split]
21:35
haslersn has quit [*.net *.split]
21:35
sylvie[m] has quit [*.net *.split]
21:35
goibhniu has quit [*.net *.split]
21:35
schmittlauch[m] has quit [*.net *.split]
21:35
Dandellion has quit [*.net *.split]
21:35
deepchange[m] has quit [*.net *.split]
21:35
Ericson2314 has quit [*.net *.split]
21:35
cyberwolf[m] has quit [*.net *.split]
21:35
pheoxy has quit [*.net *.split]
21:35
cptchaos83 has quit [*.net *.split]
21:35
hax404 has quit [*.net *.split]
21:35
kahiru has quit [*.net *.split]
21:35
eddyb has quit [*.net *.split]
21:35
Arahael has quit [*.net *.split]
21:35
xantoz has quit [*.net *.split]
21:35
mir100 has quit [*.net *.split]
21:35
pepesza has quit [*.net *.split]
21:35
Church- has quit [*.net *.split]
21:35
tilpner has quit [*.net *.split]
21:35
andymandias has quit [*.net *.split]
21:35
__monty__ has quit [*.net *.split]
21:35
epl692 has quit [*.net *.split]
21:35
alexbakker has quit [*.net *.split]
21:35
palo has quit [*.net *.split]
21:35
johnnyfive has quit [*.net *.split]
21:35
janneke has quit [*.net *.split]
21:35
Lears has quit [*.net *.split]
21:35
mounty has quit [*.net *.split]
21:35
captn3m0 has quit [*.net *.split]
21:35
niksnut has quit [*.net *.split]
21:35
evanjs has quit [*.net *.split]
21:35
Blessjah has quit [*.net *.split]
21:35
wucke13 has quit [*.net *.split]
21:35
qubasa has quit [*.net *.split]
21:35
kcalvinalvin has quit [*.net *.split]
21:35
petar has quit [*.net *.split]
21:35
adamCS has quit [*.net *.split]
21:35
exarkun has quit [*.net *.split]
21:35
lukego has quit [*.net *.split]
21:35
rizary has quit [*.net *.split]
21:35
fnords has quit [*.net *.split]
21:35
eyenx has quit [*.net *.split]
21:35
minicom has quit [*.net *.split]
21:35
Gohla has quit [*.net *.split]
21:35
greymalkin has quit [*.net *.split]
21:35
nh2 has quit [*.net *.split]
21:35
mutantmell has quit [*.net *.split]
21:35
mkaito_ has quit [*.net *.split]
21:35
myme has quit [*.net *.split]
21:35
ZeDestructor has quit [*.net *.split]
21:35
MightyJoe has quit [*.net *.split]
21:35
andersk_ has quit [*.net *.split]
21:35
AmandaC has quit [*.net *.split]
21:35
SyrupThinker has quit [*.net *.split]
21:35
Aleksejs has quit [*.net *.split]
21:35
bitonic has quit [*.net *.split]
21:35
philipcristiano has quit [*.net *.split]
21:35
alanz has quit [*.net *.split]
21:35
delan has quit [*.net *.split]
21:35
rauno has quit [*.net *.split]
21:35
agb has quit [*.net *.split]
21:35
teozkr has quit [*.net *.split]
21:35
energizer has quit [*.net *.split]
21:35
nisstyre has quit [*.net *.split]
21:35
kloenk has quit [*.net *.split]
21:35
cosimone has quit [*.net *.split]
21:35
Rusty1 has quit [*.net *.split]
21:35
Emantor has quit [*.net *.split]
21:35
lord| has quit [*.net *.split]
21:35
akaWolf has quit [*.net *.split]
21:35
chiefgoat has quit [*.net *.split]
21:35
dingenskirchen has quit [*.net *.split]
21:35
siiky has quit [*.net *.split]
21:35
isHavvyGhosting has quit [*.net *.split]
21:35
pikajude has quit [*.net *.split]
21:35
ajs124 has quit [*.net *.split]
21:35
realrokka has quit [*.net *.split]
21:35
ericsagnes has quit [*.net *.split]
21:35
plutes has quit [*.net *.split]
21:35
ydlr has quit [*.net *.split]
21:35
abrar has quit [*.net *.split]
21:35
megfault has quit [*.net *.split]
21:35
dustinm has quit [*.net *.split]
21:35
gcoakes[m] has quit [*.net *.split]
21:35
wildtrees[m] has quit [*.net *.split]
21:35
timokau[m] has quit [*.net *.split]
21:35
wjjunyor[m] has quit [*.net *.split]
21:35
pingveno[m] has quit [*.net *.split]
21:35
eoli3n has quit [*.net *.split]
21:35
bobvanderlinden_ has quit [*.net *.split]
21:35
Smith[m] has quit [*.net *.split]
21:35
nikivi has quit [*.net *.split]
21:35
st3r4g[m] has quit [*.net *.split]
21:35
cornu has quit [*.net *.split]
21:35
Valodim[m] has quit [*.net *.split]
21:35
thefloweringash has quit [*.net *.split]
21:35
rendeko[m] has quit [*.net *.split]
21:35
fgaz has quit [*.net *.split]
21:35
lorimer has quit [*.net *.split]
21:35
medvid_ has quit [*.net *.split]
21:35
greizgh has quit [*.net *.split]
21:35
FRidh has quit [*.net *.split]
21:35
markus1189 has quit [*.net *.split]
21:35
inkbottle has quit [*.net *.split]
21:35
shibboleth has quit [*.net *.split]
21:35
Guest97094 has quit [*.net *.split]
21:35
KeiraT has quit [*.net *.split]
21:35
jb55 has quit [*.net *.split]
21:35
gxt has quit [*.net *.split]
21:35
klntsky has quit [*.net *.split]
21:35
oida has quit [*.net *.split]
21:35
andreas303 has quit [*.net *.split]
21:35
cartwright has quit [*.net *.split]
21:35
phreedom has quit [*.net *.split]
21:35
xelxebar has quit [*.net *.split]
21:35
mlen has quit [*.net *.split]
21:35
Jackneill has quit [*.net *.split]
21:35
Heirlung has quit [*.net *.split]
21:35
choward has quit [*.net *.split]
21:35
nixy has quit [*.net *.split]
21:35
qyliss has quit [*.net *.split]
21:35
crusader1 has quit [*.net *.split]
21:35
thonkpod has quit [*.net *.split]
21:35
kwork has quit [*.net *.split]
21:35
Kritnich has quit [*.net *.split]
21:35
aminechikhaoui has quit [*.net *.split]
21:35
notgne2 has quit [*.net *.split]
21:35
puck has quit [*.net *.split]
21:35
qz has quit [*.net *.split]
21:35
Guest17523 has quit [*.net *.split]
21:35
jtcs has quit [*.net *.split]
21:35
makefu has quit [*.net *.split]
21:35
nahamu has quit [*.net *.split]
21:35
ekleog has quit [*.net *.split]
21:35
Raito_Bezarius has quit [*.net *.split]
21:35
danderson has quit [*.net *.split]
21:35
Khetzal has quit [*.net *.split]
21:35
barrucadu has quit [*.net *.split]
21:35
statusfailed has quit [*.net *.split]
21:35
m1cr0m4n has quit [*.net *.split]
21:35
yvan-sraka has quit [*.net *.split]
21:35
clever has quit [*.net *.split]
21:35
plp_ has quit [*.net *.split]
21:35
bastii has quit [*.net *.split]
21:35
nurelin has quit [*.net *.split]
21:35
shiver has quit [*.net *.split]
21:35
swapgs has quit [*.net *.split]
21:35
bob_twinkles has quit [*.net *.split]
21:35
cYmen has quit [*.net *.split]
21:35
jtobin has quit [*.net *.split]
21:35
SOO7 has quit [*.net *.split]
21:35
swistak35 has quit [*.net *.split]
21:35
stew has quit [*.net *.split]
21:35
lurkless has quit [*.net *.split]
21:35
migy has quit [*.net *.split]
21:35
fl0_id has quit [*.net *.split]
21:35
kaychaks has quit [*.net *.split]
21:35
reanimus has quit [*.net *.split]
21:35
edcragg has quit [*.net *.split]
21:35
page has quit [*.net *.split]
21:35
Olgierd has quit [*.net *.split]
21:35
nbp has quit [*.net *.split]
21:35
the-kenny has quit [*.net *.split]
21:35
kisonecat has quit [*.net *.split]
21:35
niten has quit [*.net *.split]
21:35
asymmetric has quit [*.net *.split]
21:35
ryantm has quit [*.net *.split]
21:35
jperras has quit [*.net *.split]
21:35
buffet has quit [*.net *.split]
21:35
benmachine has quit [*.net *.split]
21:35
ben has quit [*.net *.split]
21:35
travelion7 has quit [*.net *.split]
21:35
grumble has quit [*.net *.split]
21:35
bdju has quit [*.net *.split]
21:35
CodeWarrior has quit [*.net *.split]
21:35
AstroBadger has quit [*.net *.split]
21:35
Twey has quit [*.net *.split]
21:35
adisbladis has quit [*.net *.split]
21:35
Phlogistique has quit [*.net *.split]
21:35
zfnmxt has quit [*.net *.split]
21:35
duckonomy has quit [*.net *.split]
21:35
trfl has quit [*.net *.split]
21:35
Baughn has quit [*.net *.split]
21:35
shapr has quit [*.net *.split]
21:35
fraun has quit [*.net *.split]
21:35
kleisli has quit [*.net *.split]
21:35
ng0 has quit [*.net *.split]
21:35
ixxie has quit [*.net *.split]
21:35
dontobey has quit [*.net *.split]
21:35
azdle has quit [*.net *.split]
21:35
Ralith_ has quit [*.net *.split]
21:35
NoctisLabs has quit [*.net *.split]
21:35
lassulus has quit [*.net *.split]
21:35
grw has quit [*.net *.split]
21:35
delroth has quit [*.net *.split]
21:35
CcxWrk has quit [*.net *.split]
21:35
meck has quit [*.net *.split]
21:35
infty has quit [*.net *.split]
21:35
zertox has quit [*.net *.split]
21:35
fre2 has quit [*.net *.split]
21:35
chin-tastic has quit [*.net *.split]
21:35
multun has quit [*.net *.split]
21:35
Unode has quit [*.net *.split]
21:35
otti0815 has quit [*.net *.split]
21:35
devalot has quit [*.net *.split]
21:35
infinisil has quit [*.net *.split]
21:35
pareidolia_ has quit [*.net *.split]
21:35
leothrix has quit [*.net *.split]
21:35
cransom has quit [*.net *.split]
21:35
p01ar_ has quit [*.net *.split]
21:35
Acou_Bass has quit [*.net *.split]
21:35
M-Gregoire49 has quit [*.net *.split]
21:35
iMatejC has quit [*.net *.split]
21:35
cyphase has quit [*.net *.split]
21:35
gyroninja has quit [*.net *.split]
21:35
kaliumxyz has quit [*.net *.split]
21:35
anderslundstedt has quit [*.net *.split]
21:35
fiddlerwoaroof has quit [*.net *.split]
21:35
XenGi has quit [*.net *.split]
21:35
jeaye has quit [*.net *.split]
21:35
bukkitgerman has quit [*.net *.split]
21:35
seanparsons has quit [*.net *.split]
21:35
emilsp has quit [*.net *.split]
21:35
glasserc has quit [*.net *.split]
21:35
sigtrm has quit [*.net *.split]
21:35
juhoh has quit [*.net *.split]
21:35
szicari has quit [*.net *.split]
21:35
shyim has quit [*.net *.split]
21:35
dongcarl has quit [*.net *.split]
21:35
unacceptable has quit [*.net *.split]
21:35
trulsa has quit [*.net *.split]
21:35
smove has quit [*.net *.split]
21:35
risson has quit [*.net *.split]
21:35
martyet-o has quit [*.net *.split]
21:35
johnny101 has quit [*.net *.split]
21:35
gordon has quit [*.net *.split]
21:35
dkibi has quit [*.net *.split]
21:35
Enzime has quit [*.net *.split]
21:35
pemeunier has quit [*.net *.split]
21:35
monsieurp has quit [*.net *.split]
21:35
maurer has quit [*.net *.split]
21:35
n1x_ has quit [*.net *.split]
21:35
pingiun has quit [*.net *.split]
21:35
xensky has quit [*.net *.split]
21:35
FireFly has quit [*.net *.split]
21:35
enteee has quit [*.net *.split]
21:35
raoul has quit [*.net *.split]
21:35
jeschli has quit [*.net *.split]
21:35
pbogdan has quit [*.net *.split]
21:35
ArdaXi_ has quit [*.net *.split]
21:35
yorick has quit [*.net *.split]
21:35
dominikh has quit [*.net *.split]
21:35
Philonous has quit [*.net *.split]
21:35
litschi has quit [*.net *.split]
21:35
HedgeMage has quit [*.net *.split]
21:35
dweller has quit [*.net *.split]
21:35
charukiewicz has quit [*.net *.split]
21:35
gambpang has quit [*.net *.split]
21:35
drainful has quit [*.net *.split]
21:35
_e has quit [*.net *.split]
21:35
silver_hook has quit [*.net *.split]
21:35
habbah has quit [*.net *.split]
21:35
u0_a121 has quit [*.net *.split]
21:35
vandenoever has quit [*.net *.split]
21:35
is_null has quit [*.net *.split]
21:35
Maxdamantus has quit [*.net *.split]
21:35
samrose has quit [*.net *.split]
21:35
justanotheruser has quit [*.net *.split]
21:35
gentauro has quit [*.net *.split]
21:35
buckley310 has quit [*.net *.split]
21:35
evils has quit [*.net *.split]
21:35
ivan has quit [*.net *.split]
21:35
dooms_ has quit [*.net *.split]
21:35
zemm has quit [*.net *.split]
21:35
ikwildrpepper has quit [*.net *.split]
21:35
Diogo has quit [*.net *.split]
21:35
benedikt93 has quit [*.net *.split]
21:35
duairc has quit [*.net *.split]
21:35
amfl has quit [*.net *.split]
21:35
lukash|away has quit [*.net *.split]
21:35
ksixty has quit [*.net *.split]
21:35
endocrimes has quit [*.net *.split]
21:35
marcusr has quit [*.net *.split]
21:35
troydm has quit [*.net *.split]
21:35
oleks has quit [*.net *.split]
21:35
packer has quit [*.net *.split]
21:35
bgamari has quit [*.net *.split]
21:35
lewo has quit [*.net *.split]
21:35
jonge has quit [*.net *.split]
21:35
duckfullstop has quit [*.net *.split]
21:35
tarnacious has quit [*.net *.split]
21:35
ent has quit [*.net *.split]
21:35
mupf has quit [*.net *.split]
21:35
pjan has quit [*.net *.split]
21:35
lopsided98 has quit [*.net *.split]
21:35
boolman has quit [*.net *.split]
21:35
commander has quit [*.net *.split]
21:35
inf has quit [*.net *.split]
21:35
linuus has quit [*.net *.split]
21:35
xensky_ has quit [*.net *.split]
21:35
kgz has quit [*.net *.split]
21:35
ggp0647` has quit [*.net *.split]
21:35
aleph- has quit [*.net *.split]
21:35
nore has quit [*.net *.split]
21:35
Yaniel has quit [*.net *.split]
21:35
liori has quit [*.net *.split]
21:35
georges has quit [*.net *.split]
21:35
mg- has quit [*.net *.split]
21:35
Serus has quit [*.net *.split]
21:35
tarruda has quit [*.net *.split]
21:35
ivegotasthma has quit [*.net *.split]
21:35
toppler has quit [*.net *.split]
21:35
codezero has quit [*.net *.split]
21:35
switchy has quit [*.net *.split]
21:35
andromeda-galaxy has quit [*.net *.split]
21:35
epta has quit [*.net *.split]
21:35
drewr has quit [*.net *.split]
21:35
lux1 has quit [*.net *.split]
21:35
thommey has quit [*.net *.split]
21:35
dsx has quit [*.net *.split]
21:35
wolke has quit [*.net *.split]
21:35
torque has quit [*.net *.split]
21:35
JohnAZoidberg has quit [*.net *.split]
21:35
aria has quit [*.net *.split]
21:35
hamishmack has quit [*.net *.split]
21:35
nand0p_ has quit [*.net *.split]
21:35
jchw has quit [*.net *.split]
21:35
orcus has quit [*.net *.split]
21:35
feepo has quit [*.net *.split]
21:35
d1rewolf has quit [*.net *.split]
21:35
CustosLimen has quit [*.net *.split]
21:35
englishm has quit [*.net *.split]
21:35
michaelpj has quit [*.net *.split]
21:35
marcinkuzminski has quit [*.net *.split]
21:35
joedevivo has quit [*.net *.split]
21:35
c00w has quit [*.net *.split]
21:35
doublex__ has quit [*.net *.split]
21:35
jfhbrook has quit [*.net *.split]
21:35
midchildan has quit [*.net *.split]
21:35
dukedave has quit [*.net *.split]
21:35
mauli has quit [*.net *.split]
21:35
jared-w has quit [*.net *.split]
21:35
MinceR has quit [*.net *.split]
21:35
zimbatm has quit [*.net *.split]
21:35
carter has quit [*.net *.split]
21:35
bgupta has quit [*.net *.split]
21:35
pingveno has quit [*.net *.split]
21:35
wildsebastian has quit [*.net *.split]
21:35
emilazy has quit [*.net *.split]
21:35
Hedgework has quit [*.net *.split]
21:35
uwap has quit [*.net *.split]
21:35
angerman has quit [*.net *.split]
21:35
srhb has quit [*.net *.split]
21:35
Shados has quit [*.net *.split]
21:35
Taneb has quit [*.net *.split]
21:35
incognito9999 has quit [*.net *.split]
21:35
ldlework has quit [*.net *.split]
21:35
sphalerite has quit [*.net *.split]
21:35
glowpelt has quit [*.net *.split]
21:35
disasm has quit [*.net *.split]
21:35
Kim has quit [*.net *.split]
21:35
rot13 has quit [*.net *.split]
21:35
nwspk has quit [*.net *.split]
21:35
Ankhers has quit [*.net *.split]
21:35
kini has quit [*.net *.split]
21:35
etu has quit [*.net *.split]
21:35
marcinja has quit [*.net *.split]
21:35
awygle has quit [*.net *.split]
21:35
shlevy has quit [*.net *.split]
21:35
__red__ has quit [*.net *.split]
21:35
develCuy has quit [*.net *.split]
21:35
esclear has quit [*.net *.split]
21:35
drvirgilio has quit [*.net *.split]
21:35
coot has quit [*.net *.split]
21:35
nlofaro has quit [*.net *.split]
21:35
chessai has quit [*.net *.split]
21:35
noonien has quit [*.net *.split]
21:35
kitemikaze has quit [*.net *.split]
21:35
tazjin has quit [*.net *.split]
21:35
oharvey has quit [*.net *.split]
21:35
NemesisD has quit [*.net *.split]
21:35
hexa- has quit [*.net *.split]
21:35
q3k has quit [*.net *.split]
21:35
nkaretnikov has quit [*.net *.split]
21:35
azazel has quit [*.net *.split]
21:35
fadenb has quit [*.net *.split]
21:35
pointfree has quit [*.net *.split]
21:35
taktoa[c] has quit [*.net *.split]
21:35
woffs has quit [*.net *.split]
21:35
W1lkins has quit [*.net *.split]
21:35
pbb_ has quit [*.net *.split]
21:35
komasa has quit [*.net *.split]
21:35
nek0 has quit [*.net *.split]
21:35
boeg has quit [*.net *.split]
21:35
gchristensen has quit [*.net *.split]
21:35
TallerGhostWalt_ has quit [*.net *.split]
21:35
Luker has quit [*.net *.split]
21:35
nikola has quit [*.net *.split]
21:35
braingain has quit [*.net *.split]
21:35
mankyKitty has quit [*.net *.split]
21:35
newhoggy has quit [*.net *.split]
21:35
jbetz has quit [*.net *.split]
21:35
NekomimiScience has quit [*.net *.split]
21:35
nimblepoultry has quit [*.net *.split]
21:35
mog has quit [*.net *.split]
21:35
mikky has quit [*.net *.split]
21:35
`slikts has quit [*.net *.split]
21:35
swflint has quit [*.net *.split]
21:35
morr has quit [*.net *.split]
21:35
dani- has quit [*.net *.split]
21:35
antoszka has quit [*.net *.split]
21:35
softinio has quit [*.net *.split]
21:35
LeshaInc has quit [*.net *.split]
21:35
fooker has quit [*.net *.split]
21:35
liff has quit [*.net *.split]
21:35
njd has quit [*.net *.split]
21:35
ajp has quit [*.net *.split]
21:35
statusbot has quit [*.net *.split]
21:35
catern has quit [*.net *.split]
21:35
ornxka has quit [*.net *.split]
21:35
dev3 has quit [*.net *.split]
21:35
ShaRose has quit [*.net *.split]
21:35
primeos has quit [*.net *.split]
21:35
eon` has quit [*.net *.split]
21:35
mrSpec has quit [*.net *.split]
21:35
daGrevis has quit [*.net *.split]
21:35
kumikumi has quit [*.net *.split]
21:35
KONTOL has quit [*.net *.split]
21:35
tghume has quit [*.net *.split]
21:35
Orbstheorem has quit [*.net *.split]
21:35
erhandsome has quit [*.net *.split]
21:35
Swant has quit [*.net *.split]
21:35
fyuuri has quit [*.net *.split]
21:35
electrocat has quit [*.net *.split]
21:35
wirew0rm has quit [*.net *.split]
21:35
endgame has quit [*.net *.split]
21:35
Asmadeus has quit [*.net *.split]
21:35
mstruebing has quit [*.net *.split]
21:35
hl has quit [*.net *.split]
21:35
dmj` has quit [Max SendQ exceeded]
21:35
r0bby has quit [Max SendQ exceeded]
21:35
andi- has joined #nixos
21:35
heatm1s3r has joined #nixos
21:35
parseval has joined #nixos
21:35
bitonic has joined #nixos
21:35
pittma has joined #nixos
21:35
raboof has joined #nixos
21:35
Arahael has joined #nixos
21:35
ericnoan has joined #nixos
21:35
SyrupThinker has joined #nixos
21:35
davidtwco has joined #nixos
21:35
Baughn has joined #nixos
21:35
aristid has joined #nixos
21:35
Aleksejs has joined #nixos
21:35
Tritlo has joined #nixos
21:35
drewr has joined #nixos
21:35
averell has joined #nixos
21:35
alanz has joined #nixos
21:35
xantoz has joined #nixos
21:35
scott has joined #nixos
21:35
Guest1826 has joined #nixos
21:35
thoughtpolice has joined #nixos
21:35
chrisaw has joined #nixos
21:35
vdemeester has joined #nixos
21:35
sgraf has joined #nixos
21:35
etrepum has joined #nixos
21:35
philipcristiano has joined #nixos
21:35
cbarrett has joined #nixos
21:35
ok2` has joined #nixos
21:35
_cyril_ has joined #nixos
21:35
teozkr has joined #nixos
21:35
rauno has joined #nixos
21:35
agb has joined #nixos
21:35
delan has joined #nixos
21:35
pepesza has joined #nixos
21:35
vandenoever has joined #nixos
21:35
mir100 has joined #nixos
21:35
tsrt^ has joined #nixos
21:35
Adluc has joined #nixos
21:35
ctp has joined #nixos
21:35
gerschtli has joined #nixos
21:35
cole-h has joined #nixos
21:35
mumuluxi has joined #nixos
21:35
fuzen has joined #nixos
21:35
f18d7dc7 has joined #nixos
21:35
digitalgrease has joined #nixos
21:35
andreas303 has joined #nixos
21:35
shibboleth has joined #nixos
21:35
rsoeldner has joined #nixos
21:35
jmarin217 has joined #nixos
21:35
nckx has joined #nixos
21:35
Shell has joined #nixos
21:35
octe has joined #nixos
21:35
_rvl has joined #nixos
21:35
tg has joined #nixos
21:35
Church- has joined #nixos
21:35
cyberwolf[m] has joined #nixos
21:35
plutes has joined #nixos
21:35
das_j has joined #nixos
21:35
pheoxy has joined #nixos
21:35
Hunterkll has joined #nixos
21:35
inkbottle has joined #nixos
21:35
Dandellion has joined #nixos
21:35
haslersn has joined #nixos
21:35
infty has joined #nixos
21:35
qyliss has joined #nixos
21:35
kwork has joined #nixos
21:35
jchw has joined #nixos
21:35
Swant has joined #nixos
21:35
shlevy has joined #nixos
21:35
rot13 has joined #nixos
21:35
smove has joined #nixos
21:35
ryantm has joined #nixos
21:35
asymmetric has joined #nixos
21:35
taktoa[c] has joined #nixos
21:35
pingveno has joined #nixos
21:35
SOO7 has joined #nixos
21:35
bob_twinkles has joined #nixos
21:35
qz has joined #nixos
21:35
epta has joined #nixos
21:35
nurelin has joined #nixos
21:35
pemeunier has joined #nixos
21:35
d1rewolf has joined #nixos
21:35
NekomimiScience has joined #nixos
21:35
meck has joined #nixos
21:35
kitemikaze has joined #nixos
21:35
Orbstheorem has joined #nixos
21:35
mniip_ has joined #nixos
21:35
boegel has joined #nixos
21:35
ProofTechnique has joined #nixos
21:35
qyliss has quit [*.net *.split]
21:35
kwork has quit [*.net *.split]
21:35
qz has quit [*.net *.split]
21:35
nurelin has quit [*.net *.split]
21:35
bob_twinkles has quit [*.net *.split]
21:35
SOO7 has quit [*.net *.split]
21:35
asymmetric has quit [*.net *.split]
21:35
ryantm has quit [*.net *.split]
21:36
Baughn has quit [*.net *.split]
21:36
meck has quit [*.net *.split]
21:36
infty has quit [*.net *.split]
21:36
smove has quit [*.net *.split]
21:36
pemeunier has quit [*.net *.split]
21:36
tv has joined #nixos
21:36
tsrt^ has quit [Max SendQ exceeded]
21:36
samueldr has joined #nixos
21:36
shafox has joined #nixos
21:36
GrimSleepless has joined #nixos
21:36
wavirc22 has joined #nixos
21:36
chloekek has joined #nixos
21:36
Thra11 has joined #nixos
21:36
trcm has joined #nixos
21:36
orbekk has joined #nixos
21:36
fling has joined #nixos
21:36
endformationage has joined #nixos
21:36
Mateon1 has joined #nixos
21:36
growpotkin has joined #nixos
21:36
obadz has joined #nixos
21:36
bridge[evilred] has joined #nixos
21:36
reivilibre has joined #nixos
21:36
Athas has joined #nixos
21:36
gspia has joined #nixos
21:36
adamtkh has joined #nixos
21:36
lohfu has joined #nixos
21:36
cyris212 has joined #nixos
21:36
awaz has joined #nixos
21:36
alp has joined #nixos
21:36
ravndal has joined #nixos
21:36
CMCDragonkai has joined #nixos
21:36
sepi``` has joined #nixos
21:36
judson_ has joined #nixos
21:36
ToxicFrog has joined #nixos
21:36
ajmcmiddlin has joined #nixos
21:36
davidcl has joined #nixos
21:36
br_ has joined #nixos
21:36
evax has joined #nixos
21:36
vk3wtf has joined #nixos
21:36
nixy37 has joined #nixos
21:36
puffnfresh_ has joined #nixos
21:36
kraem has joined #nixos
21:36
wild_buffalo has joined #nixos
21:36
c_wraith has joined #nixos
21:36
yuken has joined #nixos
21:36
blibberblob has joined #nixos
21:36
Cale has joined #nixos
21:36
eyJhb has joined #nixos
21:36
drewc has joined #nixos
21:36
efriend has joined #nixos
21:36
alunduil has joined #nixos
21:36
edwtjo has joined #nixos
21:36
lc has joined #nixos
21:36
dbe has joined #nixos
21:36
timmw has joined #nixos
21:36
MasseR has joined #nixos
21:36
bsima has joined #nixos
21:36
lvmond has joined #nixos
21:36
naominitel has joined #nixos
21:36
lockshaw has joined #nixos
21:36
rixed has joined #nixos
21:36
jackdk has joined #nixos
21:36
skatista has joined #nixos
21:36
hodapp has joined #nixos
21:36
monokrome has joined #nixos
21:36
lpsmith_ has joined #nixos
21:36
drozdziak1 has joined #nixos
21:36
DigitalKiwi has joined #nixos
21:36
superbaloo has joined #nixos
21:36
Niall has joined #nixos
21:36
j4m3s__ has joined #nixos
21:36
heath has joined #nixos
21:36
mightybyte has joined #nixos
21:36
acertain has joined #nixos
21:36
phI||Ip has joined #nixos
21:36
monokrome has quit [Max SendQ exceeded]
21:36
samueldr has quit [Excess Flood]
21:36
hodapp has quit [Max SendQ exceeded]
21:36
lohfu has quit [Max SendQ exceeded]
21:36
manveru has joined #nixos
21:36
ProofTechnique has joined #nixos
21:36
ProofTechnique has quit [Changing host]
21:36
manveru has joined #nixos
21:36
manveru has quit [Changing host]
21:36
peanutbutter144 has joined #nixos
21:36
mlen has joined #nixos
21:36
nixy has joined #nixos
21:36
qyliss has joined #nixos
21:36
crusader1 has joined #nixos
21:36
kwork has joined #nixos
21:36
thonkpod has joined #nixos
21:36
jtcs has joined #nixos
21:36
benmachine has joined #nixos
21:36
Jackneill has joined #nixos
21:36
notgne2 has joined #nixos
21:36
choward has joined #nixos
21:36
aminechikhaoui has joined #nixos
21:36
nahamu has joined #nixos
21:36
Kritnich has joined #nixos
21:36
makefu has joined #nixos
21:36
Guest17523 has joined #nixos
21:36
puck has joined #nixos
21:36
Heirlung has joined #nixos
21:36
Khetzal has joined #nixos
21:36
statusfailed has joined #nixos
21:36
danderson has joined #nixos
21:36
barrucadu has joined #nixos
21:36
ekleog has joined #nixos
21:36
Raito_Bezarius has joined #nixos
21:36
qz has joined #nixos
21:36
stew has joined #nixos
21:36
Squarism has joined #nixos
21:36
niten has joined #nixos
21:36
plp_ has joined #nixos
21:36
edef has joined #nixos
21:36
bastii has joined #nixos
21:36
ben has joined #nixos
21:36
edcragg has joined #nixos
21:36
nbp has joined #nixos
21:36
clever has joined #nixos
21:36
Phlogistique has joined #nixos
21:36
migy has joined #nixos
21:36
ryantm has joined #nixos
21:36
grumble has joined #nixos
21:36
CodeWarrior has joined #nixos
21:36
reanimus has joined #nixos
21:36
the-kenny has joined #nixos
21:36
page has joined #nixos
21:36
fl0_id has joined #nixos
21:36
lurkless has joined #nixos
21:36
SOO7 has joined #nixos
21:36
m1cr0m4n has joined #nixos
21:36
jtobin has joined #nixos
21:36
kisonecat has joined #nixos
21:36
asymmetric has joined #nixos
21:36
Olgierd has joined #nixos
21:36
swapgs has joined #nixos
21:36
bob_twinkles has joined #nixos
21:36
Twey has joined #nixos
21:36
shiver has joined #nixos
21:36
buffet has joined #nixos
21:36
travelion7 has joined #nixos
21:36
nurelin has joined #nixos
21:36
yvan-sraka has joined #nixos
21:36
cYmen has joined #nixos
21:36
swistak35 has joined #nixos
21:36
trfl has joined #nixos
21:36
jperras has joined #nixos
21:36
bdju has joined #nixos
21:36
kaychaks has joined #nixos
21:36
duckonomy has joined #nixos
21:36
shapr has joined #nixos
21:36
fraun has joined #nixos
21:36
adisbladis has joined #nixos
21:36
AstroBadger has joined #nixos
21:36
zfnmxt has joined #nixos
21:36
lurkless has quit [Max SendQ exceeded]
21:36
vandenoever has quit [*.net *.split]
21:36
acowley has joined #nixos
21:36
epta has quit [*.net *.split]
21:36
tsrt^ has joined #nixos
21:36
d1rewolf has quit [Ping timeout: 245 seconds]
21:37
lurkless has joined #nixos
21:37
hodapp has joined #nixos
21:37
lohfu1 has joined #nixos
21:37
danguita has joined #nixos
21:37
elvishjerricco has quit [Ping timeout: 260 seconds]
21:37
makefu has quit [Quit: WeeChat 2.6]
21:37
makefu has joined #nixos
21:37
luigy has joined #nixos
21:37
aanderse has quit [Ping timeout: 260 seconds]
21:37
hoek has joined #nixos
21:38
samueldr has joined #nixos
21:38
haslersn has quit [Ping timeout: 256 seconds]
21:38
cyberwolf[m] has quit [Ping timeout: 256 seconds]
21:38
Dandellion has quit [Ping timeout: 256 seconds]
21:38
pheoxy has quit [Ping timeout: 256 seconds]
21:38
kriztw has joined #nixos
21:38
samrose has joined #nixos
21:38
Maxdamantus has joined #nixos
21:38
is_null has joined #nixos
21:38
justanotheruser has joined #nixos
21:38
buckley310 has joined #nixos
21:38
silver_hook has joined #nixos
21:38
ivan has joined #nixos
21:38
amfl has joined #nixos
21:38
tarnacious has joined #nixos
21:38
packer has joined #nixos
21:38
gentauro has joined #nixos
21:38
ikwildrpepper has joined #nixos
21:38
linuus has joined #nixos
21:38
u0_a121 has joined #nixos
21:38
evils has joined #nixos
21:38
liori has joined #nixos
21:38
inf has joined #nixos
21:38
troydm has joined #nixos
21:38
habbah has joined #nixos
21:38
andromeda-galaxy has joined #nixos
21:38
benedikt93 has joined #nixos
21:38
codezero has joined #nixos
21:38
mg- has joined #nixos
21:38
switchy has joined #nixos
21:38
ivegotasthma has joined #nixos
21:38
marcusr has joined #nixos
21:38
pjan has joined #nixos
21:38
jonge has joined #nixos
21:38
bgamari has joined #nixos
21:38
kgz has joined #nixos
21:38
laerling has joined #nixos
21:38
mupf has joined #nixos
21:38
lux1 has joined #nixos
21:38
dooms_ has joined #nixos
21:38
georges has joined #nixos
21:38
boolman has joined #nixos
21:38
lewo has joined #nixos
21:38
zemm has joined #nixos
21:38
epta has joined #nixos
21:38
ggp0647` has joined #nixos
21:38
aleph- has joined #nixos
21:38
endocrimes has joined #nixos
21:38
lopsided98 has joined #nixos
21:38
oleks has joined #nixos
21:38
lukash|away has joined #nixos
21:38
xensky_ has joined #nixos
21:38
duairc has joined #nixos
21:38
nore has joined #nixos
21:38
toppler has joined #nixos
21:38
Yaniel has joined #nixos
21:38
vandenoever has joined #nixos
21:38
ent has joined #nixos
21:38
Diogo has joined #nixos
21:38
ksixty has joined #nixos
21:38
commander has joined #nixos
21:38
tarruda has joined #nixos
21:38
Serus has joined #nixos
21:38
duckfullstop has joined #nixos
21:38
thommey has joined #nixos
21:38
mpickering has quit [Ping timeout: 260 seconds]
21:38
Peter_Storm has quit [Ping timeout: 260 seconds]
21:38
diamondman has quit [Ping timeout: 260 seconds]
21:38
peel has quit [Ping timeout: 260 seconds]
21:38
tabasko has joined #nixos
21:38
ocharles has joined #nixos
21:38
kitemikaze has quit [*.net *.split]
21:38
taktoa[c] has quit [*.net *.split]
21:38
NekomimiScience has quit [*.net *.split]
21:38
Orbstheorem has quit [*.net *.split]
21:38
Swant has quit [*.net *.split]
21:38
darkf has joined #nixos
21:38
kleisli has joined #nixos
21:38
ng0 has joined #nixos
21:38
Baughn has joined #nixos
21:38
grw has joined #nixos
21:38
zertox has joined #nixos
21:38
delroth has joined #nixos
21:38
NoctisLabs has joined #nixos
21:38
lassulus has joined #nixos
21:38
fre2 has joined #nixos
21:38
glasserc has joined #nixos
21:38
martyet-o has joined #nixos
21:38
ixxie has joined #nixos
21:38
kaliumxyz has joined #nixos
21:38
gordon has joined #nixos
21:38
shyim has joined #nixos
21:38
szicari has joined #nixos
21:38
gyroninja has joined #nixos
21:38
trulsa has joined #nixos
21:38
meck has joined #nixos
21:38
unacceptable has joined #nixos
21:38
enteee has joined #nixos
21:38
pemeunier has joined #nixos
21:38
monsieurp has joined #nixos
21:38
CcxWrk has joined #nixos
21:38
Enzime has joined #nixos
21:38
Acou_Bass has joined #nixos
21:38
maurer has joined #nixos
21:38
infinisil has joined #nixos
21:38
dkibi has joined #nixos
21:38
azdle has joined #nixos
21:38
devalot has joined #nixos
21:38
seanparsons has joined #nixos
21:38
multun has joined #nixos
21:38
iMatejC has joined #nixos
21:38
leothrix has joined #nixos
21:38
sigtrm has joined #nixos
21:38
Ralith_ has joined #nixos
21:38
M-Gregoire49 has joined #nixos
21:38
chin-tastic has joined #nixos
21:38
dominikh has joined #nixos
21:38
fiddlerwoaroof has joined #nixos
21:38
anderslundstedt has joined #nixos
21:38
otti0815 has joined #nixos
21:38
XenGi has joined #nixos
21:38
cransom has joined #nixos
21:38
johnny101 has joined #nixos
21:38
bukkitgerman has joined #nixos
21:38
cyphase has joined #nixos
21:38
infty has joined #nixos
21:38
Unode has joined #nixos
21:38
p01ar_ has joined #nixos
21:38
juhoh has joined #nixos
21:38
pareidolia_ has joined #nixos
21:38
emilsp has joined #nixos
21:38
dongcarl has joined #nixos
21:38
jeaye has joined #nixos
21:38
risson has joined #nixos
21:38
smove has joined #nixos
21:38
dontobey has joined #nixos
21:38
n1x_ has joined #nixos
21:38
pingiun has joined #nixos
21:38
raoul has joined #nixos
21:38
xensky has joined #nixos
21:38
FireFly has joined #nixos
21:38
yorick has joined #nixos
21:38
Philonous has joined #nixos
21:38
jeschli has joined #nixos
21:38
pbogdan has joined #nixos
21:38
litschi has joined #nixos
21:38
_e has joined #nixos
21:38
HedgeMage has joined #nixos
21:38
ArdaXi_ has joined #nixos
21:38
gambpang has joined #nixos
21:38
dweller has joined #nixos
21:38
charukiewicz has joined #nixos
21:38
drainful has joined #nixos
21:38
tabasko has quit [*.net *.split]
21:38
drewr has quit [*.net *.split]
21:38
andi- has quit [*.net *.split]
21:38
jchw has quit [*.net *.split]
21:38
pingveno has quit [*.net *.split]
21:38
rot13 has quit [*.net *.split]
21:38
shlevy has quit [*.net *.split]
21:39
pasukon has quit [Ping timeout: 260 seconds]
21:39
mitsuhiko has quit [Ping timeout: 260 seconds]
21:39
georgyo has quit [Ping timeout: 260 seconds]
21:39
bitonic has quit [Ping timeout: 240 seconds]
21:39
tazjin has joined #nixos
21:39
oharvey has joined #nixos
21:39
NemesisD has joined #nixos
21:39
q3k has joined #nixos
21:39
fadenb has joined #nixos
21:39
morr has joined #nixos
21:39
W1lkins has joined #nixos
21:39
coot has joined #nixos
21:39
mog has joined #nixos
21:39
nek0 has joined #nixos
21:39
NekomimiScience has joined #nixos
21:39
nikola has joined #nixos
21:39
liff has joined #nixos
21:39
nkaretnikov has joined #nixos
21:39
taktoa[c] has joined #nixos
21:39
chessai has joined #nixos
21:39
braingain has joined #nixos
21:39
hexa- has joined #nixos
21:39
pbb_ has joined #nixos
21:39
swflint has joined #nixos
21:39
dani- has joined #nixos
21:39
electrocat has joined #nixos
21:39
komasa has joined #nixos
21:39
fooker has joined #nixos
21:39
woffs has joined #nixos
21:39
nimblepoultry has joined #nixos
21:39
azazel has joined #nixos
21:39
Luker has joined #nixos
21:39
newhoggy has joined #nixos
21:39
kitemikaze has joined #nixos
21:39
gchristensen has joined #nixos
21:39
antoszka has joined #nixos
21:39
nlofaro has joined #nixos
21:39
jbetz has joined #nixos
21:39
mikky has joined #nixos
21:39
mankyKitty has joined #nixos
21:39
pointfree has joined #nixos
21:39
`slikts has joined #nixos
21:39
TallerGhostWalt_ has joined #nixos
21:39
erhandsome has joined #nixos
21:39
KONTOL has joined #nixos
21:39
statusbot has joined #nixos
21:39
catern has joined #nixos
21:39
softinio has joined #nixos
21:39
LeshaInc has joined #nixos
21:39
ajp has joined #nixos
21:39
njd has joined #nixos
21:39
dev3 has joined #nixos
21:39
ShaRose has joined #nixos
21:39
ornxka has joined #nixos
21:39
primeos has joined #nixos
21:39
eon` has joined #nixos
21:39
daGrevis has joined #nixos
21:39
tghume has joined #nixos
21:39
mrSpec has joined #nixos
21:39
kumikumi has joined #nixos
21:39
Orbstheorem has joined #nixos
21:39
mstruebing has joined #nixos
21:39
fyuuri has joined #nixos
21:39
wirew0rm has joined #nixos
21:39
endgame has joined #nixos
21:39
Asmadeus has joined #nixos
21:39
Swant has joined #nixos
21:39
hl has joined #nixos
21:39
cross has quit [Max SendQ exceeded]
21:39
eddyb[legacy] has joined #nixos
21:39
monokrome has joined #nixos
21:39
andi- has joined #nixos
21:39
tabasko has joined #nixos
21:39
jchw has joined #nixos
21:39
hamishmack has joined #nixos
21:39
torque has joined #nixos
21:39
wolke has joined #nixos
21:39
meatcar has joined #nixos
21:39
aria has joined #nixos
21:39
midchildan has joined #nixos
21:39
ldlework has joined #nixos
21:39
MinceR has joined #nixos
21:39
pingveno has joined #nixos
21:39
bgupta has joined #nixos
21:39
dukedave has joined #nixos
21:39
uwap has joined #nixos
21:39
disasm has joined #nixos
21:39
jared-w has joined #nixos
21:39
joedevivo has joined #nixos
21:39
angerman has joined #nixos
21:39
incognito9999 has joined #nixos
21:39
orcus has joined #nixos
21:39
Taneb has joined #nixos
21:39
carter has joined #nixos
21:39
srhb has joined #nixos
21:39
marcinkuzminski has joined #nixos
21:39
rot13 has joined #nixos
21:39
emilazy has joined #nixos
21:39
wildsebastian has joined #nixos
21:39
michaelpj has joined #nixos
21:39
Shados has joined #nixos
21:39
Kim has joined #nixos
21:39
c00w has joined #nixos
21:39
glowpelt has joined #nixos
21:39
nand0p_ has joined #nixos
21:39
dsx has joined #nixos
21:39
drewr has joined #nixos
21:39
JohnAZoidberg has joined #nixos
21:39
Ankhers has joined #nixos
21:39
sphalerite has joined #nixos
21:39
mauli has joined #nixos
21:39
doublex__ has joined #nixos
21:39
Hedgework has joined #nixos
21:39
englishm has joined #nixos
21:39
zimbatm has joined #nixos
21:39
marcinja has joined #nixos
21:39
kini has joined #nixos
21:39
awygle has joined #nixos
21:39
etu has joined #nixos
21:39
shlevy has joined #nixos
21:39
nwspk has joined #nixos
21:39
develCuy has joined #nixos
21:39
esclear has joined #nixos
21:39
__red__ has joined #nixos
21:39
drvirgilio has joined #nixos
21:39
shibboleth has quit [*.net *.split]
21:39
andreas303 has quit [*.net *.split]
21:39
ajmcmiddlin has quit [Ping timeout: 268 seconds]
21:39
alunduil has quit [Ping timeout: 268 seconds]
21:39
englishm has quit [Max SendQ exceeded]
21:39
kini has quit [Max SendQ exceeded]
21:39
andi- has quit [Max SendQ exceeded]
21:39
sphalerite has quit [Max SendQ exceeded]
21:39
victorbjelkholm_ has joined #nixos
21:39
zertox has quit [Ping timeout: 265 seconds]
21:39
mstruebing has quit [Max SendQ exceeded]
21:39
hexa- has quit [Max SendQ exceeded]
21:39
adamse has quit [Ping timeout: 260 seconds]
21:39
sethetter_ has quit [Ping timeout: 260 seconds]
21:39
mudri has quit [Ping timeout: 260 seconds]
21:39
nst^ has joined #nixos
21:39
Peter_Storm has joined #nixos
21:40
tazjin has quit [Ping timeout: 252 seconds]
21:40
nlofaro has quit [Ping timeout: 252 seconds]
21:40
linuus has quit [Max SendQ exceeded]
21:40
justanotheruser has quit [Max SendQ exceeded]
21:40
Serus has quit [Max SendQ exceeded]
21:40
peel has joined #nixos
21:40
rodarmor has quit [Ping timeout: 260 seconds]
21:40
coot has quit [Ping timeout: 252 seconds]
21:40
mstruebing has joined #nixos
21:40
page has quit [Ping timeout: 260 seconds]
21:40
waleee-cl has joined #nixos
21:40
Peter_Storm has joined #nixos
21:40
Peter_Storm has quit [Changing host]
21:40
peel has joined #nixos
21:40
peel has quit [Changing host]
21:40
waleee-cl has joined #nixos
21:40
waleee-cl has quit [Changing host]
21:40
<
{^_^} >
[nixpkgs] @worldofpeace opened pull request #79660 → aws-sdk-cpp: build shared libraries →
https://git.io/Jvc8O
21:40
lstanley has joined #nixos
21:40
hexa- has joined #nixos
21:40
cross has joined #nixos
21:40
kalbasit has quit [Ping timeout: 260 seconds]
21:40
higherorder has joined #nixos
21:40
justanotheruser has joined #nixos
21:41
kini has joined #nixos
21:41
teej has joined #nixos
21:41
sphalerite has joined #nixos
21:41
chessai has quit [Ping timeout: 240 seconds]
21:41
angerman has quit [Ping timeout: 242 seconds]
21:41
kapil_ has joined #nixos
21:41
sethetter_ has joined #nixos
21:41
nand0p_ has quit [Ping timeout: 245 seconds]
21:41
srhb has quit [Ping timeout: 245 seconds]
21:41
andi- has joined #nixos
21:41
NemesisD has quit [Ping timeout: 252 seconds]
21:41
jlpeters has quit [Ping timeout: 260 seconds]
21:41
aria has quit [Ping timeout: 245 seconds]
21:41
pingveno has quit [Ping timeout: 245 seconds]
21:41
emilazy has quit [Ping timeout: 245 seconds]
21:42
nh2 has joined #nixos
21:42
georgyo has joined #nixos
21:42
kitemikaze has quit [Ping timeout: 252 seconds]
21:42
pointfree has quit [Ping timeout: 252 seconds]
21:42
dani- has quit [Ping timeout: 252 seconds]
21:42
jaeckel has joined #nixos
21:42
emilazy has joined #nixos
21:42
habbah has quit [Ping timeout: 258 seconds]
21:42
oleks has quit [Ping timeout: 258 seconds]
21:42
hoek has quit [Ping timeout: 248 seconds]
21:42
mvnetbiz_ has joined #nixos
21:42
mankyKitty has quit [Ping timeout: 252 seconds]
21:42
newhoggy has quit [Ping timeout: 252 seconds]
21:42
nkaretnikov has quit [Ping timeout: 252 seconds]
21:42
feepo has joined #nixos
21:42
carter has quit [Ping timeout: 245 seconds]
21:42
jared-w has quit [Ping timeout: 245 seconds]
21:42
jfhbrook has joined #nixos
21:42
bitonic has joined #nixos
21:42
steveeJ has joined #nixos
21:42
jlpeters has joined #nixos
21:43
teehemkay has joined #nixos
21:43
jared-w has joined #nixos
21:43
bgupta has quit [Ping timeout: 245 seconds]
21:43
mankyKitty has joined #nixos
21:43
cbarrett has quit [Ping timeout: 246 seconds]
21:43
mpickering has joined #nixos
21:43
noonien has joined #nixos
21:43
angerman has joined #nixos
21:43
aria has joined #nixos
21:43
ajmcmiddlin has joined #nixos
21:43
srhb has joined #nixos
21:43
linuus has joined #nixos
21:43
habbah has joined #nixos
21:43
nand0p_ has joined #nixos
21:43
r0bby has joined #nixos
21:44
r0bby has quit [Excess Flood]
21:44
dani- has joined #nixos
21:44
mitsuhiko has joined #nixos
21:44
dmj` has joined #nixos
21:44
zertox has joined #nixos
21:44
oleks has joined #nixos
21:44
chessai has joined #nixos
21:44
newhoggy has joined #nixos
21:44
CustosLimen has joined #nixos
21:44
boeg has joined #nixos
21:44
bgupta has joined #nixos
21:44
pasukon has joined #nixos
21:44
d10n-work has joined #nixos
21:44
KeiraT has joined #nixos
21:44
jb55 has joined #nixos
21:44
gxt has joined #nixos
21:44
xelxebar has joined #nixos
21:44
phreedom has joined #nixos
21:44
klntsky has joined #nixos
21:44
oida has joined #nixos
21:44
dukedave has quit [Ping timeout: 245 seconds]
21:45
adamse has joined #nixos
21:45
kitemikaze has joined #nixos
21:45
johs has joined #nixos
21:45
r0bby has joined #nixos
21:45
gxt has quit [*.net *.split]
21:45
KeiraT has quit [*.net *.split]
21:45
jb55 has quit [*.net *.split]
21:45
klntsky has quit [*.net *.split]
21:45
oida has quit [*.net *.split]
21:45
xelxebar has quit [*.net *.split]
21:45
phreedom has quit [*.net *.split]
21:46
alunduil has joined #nixos
21:46
pingveno has joined #nixos
21:46
pointfree has joined #nixos
21:46
dmj` has quit [Excess Flood]
21:46
englishm has joined #nixos
21:47
carter has joined #nixos
21:47
nkaretnikov has joined #nixos
21:47
kapil_ has quit [Excess Flood]
21:47
w3emperor has joined #nixos
21:47
dukedave has joined #nixos
21:47
rizary has joined #nixos
21:48
dahirsch has joined #nixos
21:48
hoek has joined #nixos
21:48
cbarrett has joined #nixos
21:48
coot has joined #nixos
21:48
mudri has joined #nixos
21:49
carter has quit [Excess Flood]
21:49
<
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!
21:49
dmj` has joined #nixos
21:49
cbarrett has quit [Excess Flood]
21:49
kapil_ has joined #nixos
21:49
kapil_ has quit [Excess Flood]
21:49
cbarrett has joined #nixos
21:49
diamondman has joined #nixos
21:49
carter has joined #nixos
21:49
d1rewolf has joined #nixos
21:50
<
{^_^} >
[nixpkgs] @jonringer merged pull request #79613 → python27Packages.jieba: 0.40 -> 0.42.1 →
https://git.io/JvcLU
21:50
<
{^_^} >
[nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.jieba: 0.40 -> 0.42.1 »:
https://git.io/Jvc80
21:50
nlofaro has joined #nixos
21:50
tazjin has joined #nixos
21:50
NemesisD has joined #nixos
21:50
oida has joined #nixos
21:50
KeiraT has joined #nixos
21:50
jb55 has joined #nixos
21:50
gxt has joined #nixos
21:50
phreedom has joined #nixos
21:50
xelxebar has joined #nixos
21:50
klntsky has joined #nixos
21:50
kapil_ has joined #nixos
21:51
kalbasit has joined #nixos
21:51
alex` has joined #nixos
21:52
elvishjerricco has joined #nixos
21:52
page has joined #nixos
21:52
kalbasit has quit [Changing host]
21:52
kalbasit has joined #nixos
21:52
lstanley has quit [Excess Flood]
21:52
alex` is now known as Guest65381
21:52
rodarmor has joined #nixos
21:52
Guest65381 is now known as alex``
21:52
d1rewolf has quit [Excess Flood]
21:52
rodarmor has quit [Changing host]
21:52
rodarmor has joined #nixos
21:53
lstanley has joined #nixos
21:53
d1rewolf has joined #nixos
21:53
lstanley has quit [Excess Flood]
21:54
lstanley has joined #nixos
21:56
andreas303 has joined #nixos
21:58
rizary has quit [Excess Flood]
21:58
rizary has joined #nixos
21:58
Serus has joined #nixos
21:59
d10n-work has quit [Excess Flood]
21:59
chloekek has quit [Ping timeout: 268 seconds]
22:00
rizary has quit [Excess Flood]
22:00
hoek has quit [Excess Flood]
22:00
d10n-work has joined #nixos
22:00
rizary has joined #nixos
22:01
hoek has joined #nixos
22:02
cartwright has joined #nixos
22:02
cartwright has quit [*.net *.split]
22:02
andreas303 has quit [*.net *.split]
22:02
gxt has quit [*.net *.split]
22:02
KeiraT has quit [*.net *.split]
22:02
jb55 has quit [*.net *.split]
22:02
klntsky has quit [*.net *.split]
22:02
oida has quit [*.net *.split]
22:02
xelxebar has quit [*.net *.split]
22:02
phreedom has quit [*.net *.split]
22:04
<
cole-h >
What is the best way to both/go 3
22:04
<
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?
22:05
hoek has quit [Excess Flood]
22:05
d10n-work has quit [Excess Flood]
22:05
<
infinisil >
cole-h: Chaining works too (foo.override ...).overrideAttrs
22:06
<
infinisil >
There's no best way for this, just preferences :)
22:06
<
cole-h >
infinisil++: Ah, I forgot the parens which is why that didn't work originally. Thanks!
22:06
<
{^_^} >
infinisil's karma got increased to 207
22:06
d10n-work has joined #nixos
22:07
hoek has joined #nixos
22:07
phreedom has joined #nixos
22:07
klntsky has joined #nixos
22:07
oida has joined #nixos
22:07
jb55 has joined #nixos
22:07
cartwright has joined #nixos
22:09
xelxebar has joined #nixos
22:11
ixxie has quit [Ping timeout: 265 seconds]
22:11
andreas303 has joined #nixos
22:14
KeiraT has joined #nixos
22:14
risson has quit [Quit: pouet]
22:14
gxt has joined #nixos
22:19
karetsu has joined #nixos
22:19
jluttine has joined #nixos
22:24
<
{^_^} >
[nixpkgs] @risicle opened pull request #79662 → pythonPackages.pysaml2: 4.9.0 -> 5.0.0, addressing CVE-2020-5390 →
https://git.io/Jvc4s
22:31
<
cole-h >
If I move an overlay to .nix.bak, does that effectively disable the overlay?
22:32
<
clever >
cole-h: try adding a syntax error like an extra ; to it, and see if it notices or not
22:32
<
cole-h >
The answer is yes, moving it does disable it :P
22:33
<
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
22:33
detran has joined #nixos
22:36
ddellacosta has joined #nixos
22:37
kloenk has joined #nixos
22:37
o1lo01ol1o has joined #nixos
22:39
<
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?
22:41
<
dminuoso >
CRTified: deployment.keys
22:41
<
dminuoso >
CRTified: That's the best you can do right now.
22:42
<
dminuoso >
Depending on what nix package you use, it might require patching derivations, because there's many packages that dont work with this.
22:44
u0_a121 has quit [Read error: Connection reset by peer]
22:45
neeasade has joined #nixos
22:45
kloenk has quit [Ping timeout: 272 seconds]
22:46
u0_a121 has joined #nixos
22:48
<
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.
22:49
vandenoever has quit [Read error: Connection reset by peer]
22:50
vandenoever has joined #nixos
22:50
vandenoever has joined #nixos
22:50
vandenoever has quit [Changing host]
22:51
<
dminuoso >
CRTified: Well if you dont want the secrets in your nix store, you have to create them outside of nix.
22:51
<
dminuoso >
CRTified: At that point, your nix packages need to allow for filepaths.
22:52
<
CRTified >
Yes, that's why I'm referencing that issue
22:52
<
dminuoso >
CRTified: What do you hope to do in an activationScript exactly?
22:53
<
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
22:55
<
clever >
CRTified: i would do that from the prestart of whatever systemd service needs the secret
22:57
Yaniel has quit [Ping timeout: 240 seconds]
22:57
<
{^_^} >
[nixpkgs] @worldofpeace merged pull request #79115 → firefoxPackages.*: remove unsupported packages, clean up derivation →
https://git.io/JvszR
22:58
<
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)
22:58
<
clever >
CRTified: activation scripts are run in series, during very early boot, while systemd services can run in parallel
22:59
<
vandenoever >
can anyone point to a straightforware setup for httpd + lets-encrypt for nixos?
23:00
dahirsch has quit [Quit: Leaving]
23:00
<
CRTified >
Is PreStart executed as the user from the unit file?
23:00
<
clever >
CRTified: by default, ues
23:00
<
CRTified >
Okay. I'll try to get something working :)
23:00
<
CRTified >
Thanks for your inpuit
23:01
kloenk has joined #nixos
23:03
leotaku has joined #nixos
23:03
tilcreator has joined #nixos
23:05
kvda has joined #nixos
23:09
u0_a121 has quit [Read error: Connection reset by peer]
23:12
orivej has joined #nixos
23:15
<
{^_^} >
[nixpkgs] @Infinisil merged pull request #79297 → firefox: resolve relative nativeMessagingHosts links →
https://git.io/JvZmd
23:18
<
{^_^} >
[nixpkgs] @flokli merged pull request #79645 → [r19.09] libexif: add patch for CVE-2019-9278 →
https://git.io/JvcnS
23:20
<
{^_^} >
[nixpkgs] @flokli merged pull request #79657 → [r19.09] pythonPackages.feedgen: 0.7.0 -> 0.9.0, addressing CVE-2020-5227 →
https://git.io/JvclB
23:22
kloenk has joined #nixos
23:27
lordcirth has joined #nixos
23:28
jb55 has quit [Ping timeout: 240 seconds]
23:29
jb55 has joined #nixos
23:30
Thra11 has quit [Quit: WeeChat 2.7]
23:31
neeasade has quit [Remote host closed the connection]
23:32
v88m has joined #nixos
23:35
ng0_ has joined #nixos
23:35
kloenk has quit [Read error: Connection reset by peer]
23:37
Izorkin_ has joined #nixos
23:37
ng0 has quit [Ping timeout: 265 seconds]
23:38
Izorkin_ is now known as Izorkin
23:43
LysergicDreams has joined #nixos
23:43
<
{^_^} >
[nixpkgs] @kalbasit merged pull request #79575 → fzf: fix patch for vim plugin; enable tests; avoid direct $src layout dependency →
https://git.io/JvnNU
23:43
<
{^_^} >
[nixpkgs] @kalbasit pushed commit from @bhipple to master « fzf: fix patch for vim plugin; enable tests; avoid direct $src… (#79575) »:
https://git.io/JvcRE
23:45
Sigma has joined #nixos
23:47
u0_a121 has joined #nixos
23:49
LysergicDreams has quit [Ping timeout: 265 seconds]
23:51
LysergicDreams has joined #nixos
23:52
<
infinisil >
Well, 2020-02-10, maybe it's not yet in your timezone
23:54
fuzen has joined #nixos
23:55
jb55 has quit [Ping timeout: 240 seconds]
23:55
kloenk has joined #nixos
23:55
<
lordcirth >
Yeah, still 18:55 here :P That's cool though!
23:56
kleisli_ has joined #nixos
23:57
bukkitgerman8 has joined #nixos
23:57
dongcarl8 has joined #nixos
23:57
CcxWrk_ has joined #nixos
23:57
CcxWrk_ is now known as CcxWrk
23:57
CcxWrk has quit [Killed (adams.freenode.net (Nickname regained by services))]
23:58
Piece_Maker has joined #nixos
23:58
XeN has joined #nixos
23:59
sigtrm_ has joined #nixos
23:59
<
{^_^} >
[nixpkgs] @rnhmjoj opened pull request #79666 → envypn-font: split outputs in out and otb →
https://git.io/JvcRH
23:59
M-Gregoire495 has joined #nixos
23:59
trulsa_ has joined #nixos
23:59
kloenk has quit [Client Quit]
23:59
xensky__ has joined #nixos