<jlv1>
Does anything use Qt 5.15 in nixpkgs? If I'm understanding the issue, I don't think anything would work with Qt 5.15 on NixOS?
zupo has quit [Ping timeout: 264 seconds]
foozb has joined #nixos
cr4y1_ has quit [Ping timeout: 258 seconds]
mariatsji has joined #nixos
<foozb>
i'm trying to write a nix expression that pulls a repo from github (or from a git source) including submodules.. i'm running into trouble with things like `builtins.fetchGit { fetchSubmodules = true; }` not working, despite several PRs and issues indicating that is a recent feature
<foozb>
i'm running a recent 20.03 nixos with nix 2.3.6 .. but iirc, there's a way to do this with a different fetch function already available
zanc has quit [Read error: Connection reset by peer]
<V>
I think if you enable submodules it just falls back to fetchGit internally
mariatsji has quit [Ping timeout: 272 seconds]
<jlv1>
Huh. I just tested `mirage-im`, which appears to use Qt 5.15, and no error. I'm not sure why Qutebrowser won't work with Qt 5.15 .
<foozb>
jlv1thanks.. `fetchFromGitHub` gives no error when i pass `fetchSubmodules` as an argument in the repl.. i'll try it in my expression and see what happens
<infinisil>
V: It does not, fetchFromGitHub is very different from fetchGit
<V>
it falls back to *something*
<V>
I know for certain that it has a different codepath for that
<infinisil>
Oh yeah I guess it's easy to confuse, but it falls back to pkgs.fetchgit
<infinisil>
If only fetchGit wasn't so close to fetchgit
<V>
oh, ye
_ris is now known as ris
<infinisil>
foozb: Oh, the argument is submodules, not fetchSubmodules
<V>
Love me some consistency :)
justanotheruser has joined #nixos
<foozb>
infinisil thank you! i'll try that.. i'm having different issues atm though.. it seems that `rev = ` doesn't work when i specify a branch name
dsx has quit [Quit: dsx]
<mvnetbiz_>
I think you should use a tag name or commit hash
<V>
rev only works for tags
<V>
(or for commits, yeah)
dsx has joined #nixos
<V>
branches change
<mvnetbiz_>
do tags only change if you force push them
<V>
correct
ris has quit [Ping timeout: 260 seconds]
<foozb>
is there a way to specify a branch and just fail when the sha256 doesn't match?
<foozb>
this would be bad, obv, but i'm still in development so updating a hash seems somewhat heavyweight
<V>
foozb: just make a tag?
<foozb>
i'll try refs/heads/$branch
<V>
that might work, unsure
<V>
I don't actually know how it resolves rev
teto has quit [Ping timeout: 244 seconds]
<bsima>
Does haskellPackages.developPackage work for anyone? I just get "cabal2nix: nix-prefetch-url: createProcess: runInteractiveProcess: exec: does not exist"
cole-h has quit [Ping timeout: 260 seconds]
<foozb>
it did V .. ok, now seeing whether the submodules work infinisil .. i got an error with `submodules = ` so i'm trying with `fetchSubmodules = ` .. i think it's using my local nixpkgs for that, unfortunately
<jlv1>
foozb: the `nix-prefetch-github` command may make things a little easier.
<jlv1>
You can use it like `nix-prefetch-github --rev "$branch" --nix $owner $repo`
<foozb>
ok, it worked.. this is what i ended up with: `(import <nixpkgs> {}).fetchFromGitHub { owner = "$me"; repo = "$project"; rev = "refs/heads/$branch"; /*TODO: switch to a commit hash when ready*/ sha256 = "..."; fetchSubmodules = true; }`
zupo has joined #nixos
<foozb>
infinisil, ah thank you for the clarification.. i wonder if `builtins.fetchGit` has any advantage over `(import <nixpkgs> {}).fetchFromGithub`?
<V>
foozb: honestly, just use a commit hash right now. you're just setting yourself up for confusion when you forget to change the sha256 and update the branch & nothing changes b/c there's already a matching derivation in your nix store
<mvnetbiz_>
I have done that
<V>
gotten confused? :p
<foozb>
V ah, actually i think i have done that in the past too.. it doesn't check the remote if there's already a matching derivation?
<V>
foozb: correct.
<foozb>
ok, i'll use a hash then. thank you
<infinisil>
foozb: fetchGit is better if you're fetching Nix expressions, because then you don't need to do IFD (write ",IFD" more more info)
<infinisil>
Since fetchGit uses the git in your command line to fetch it during evaluation time
<V>
I think you might have to invalidate the sha256 regardless, but it's more obvious when you have a commit hash there to change
<V>
POLP
<V>
er
<V>
POLS
<{^_^}>
[nixpkgs] @maxeaubrey opened pull request #98138 → requests-aws4auth: unbreak on python 3.x, cleanup → https://git.io/JUROA
zupo has quit [Ping timeout: 260 seconds]
<foozb>
infinisil, ok yeah i didn't realize this was related to the IFD stuff.. i am indeed fetching a nix expression that pins nixpkgs and overrides some things so i'll try out `builtins.fetchGit`
<foozb>
infinisil looks like fetchGit doesn't take sha256
<foozb>
i suppose at this point i know what my options are, i'll just go look at the sourcecode
<foozb>
that is some _flashy_ nix documentation .. it doesn't mention a sha256 argument though
<foozb>
additionally, it seems my nix version doesn't have a `submodule` argument on `fetchGit`
<infinisil>
It doesn't need it then
<infinisil>
A git sha1 is a hash already anyways
<infinisil>
And I think you probably need to pass that in pure eval mode
<infinisil>
Indeed, not passing a rev makes --pure-eval fail
<foozb>
pass `submodules` in pure eval mode? i'm not familiar; does that mean i run two commands, one to output the derivation, and one to do the compilation?
Fare has joined #nixos
<infinisil>
No idea what you mean. If you don't know what pure eval mode is, ignore what I just said
<foozb>
oh, i'm not even using `nix build` yet.. i use `nix-build` heh..
<foozb>
this does look pretty nice though (and i see the restriction you mentioned about rev) (and also, this is probably why i don't seem to have a submodule argument) .. i'll try it
<foozb>
ok, i'm not having any luck with `builtins.fetchGit`
<infinisil>
Has nothing to do with nix-build vs nix build
<foozb>
ah, ok, i'm not aware of the difference then
<infinisil>
Just a new CLI interface
<infinisil>
But anyways, if you don't have the submodule argument then you're not using a recent enough Nix version. I tested stuff with `nix-shell -p nixUnstable -I nixpkgs=channel:nixpkgs-unstable`
<foozb>
right, i'll be a pleb and wait until it's the default on nixos.. not sure i want to be on the bleeding edge yet
<infinisil>
But maybe just go for fetchFromGitHub instead
<foozb>
thank you
<infinisil>
Oh and btw it's `submodules` not `submodule`
<infinisil>
Maybe that was the problem
<foozb>
i spelled it `submodules` in my undo history; i think i may have typod it in a message above, my bad
justanotheruser has quit [Ping timeout: 244 seconds]
<{^_^}>
nix-community/impermanence#18 (by mogorman, 6 days ago, open): bind mounts sometimes fail on rebuild switch
zupo has joined #nixos
<V>
<infinisil> A git sha1 is a hash already anyways ← but it's weaker than a sha256, so I'd expect this to not work. kind of a pity, but it is what it is
<infinisil>
V: I don't think it's a problem, since for it to be any security problem you'd have to have the same sha1 in the same repository
<V>
infinisil: in the same object store*
<V>
Nix currently doesn't check if an object is reachable from a branch in a particular repository, correct?
Ashy has quit [Ping timeout: 260 seconds]
hexa- has quit [Quit: WeeChat 2.9]
<infinisil>
V: I think it actually does check that
<infinisil>
Well, git itself, not Nix
<V>
I guess the only place where this could be an issue is if the original commit was removed
<infinisil>
probably
hexa- has joined #nixos
<V>
This is a GitHub issue, not Git per-se
<V>
I imagine GitHub probably has collision checks at this point, anyway
Ashy has joined #nixos
<V>
So, I guess that's not really an issue, yeah
zupo has quit [Ping timeout: 258 seconds]
<infinisil>
V: I just tried this: Create a github repo, push a commit to it, amend the commit, force push. Then try `fetchGit { url = "..."; rev = "<previous commit sha1>"; }`
<infinisil>
git responds with `fatal: not a tree object: c32be91ebfffdf9e00290e594a15ec8b4a189f05`
da39a3ee5e6b4b0d has quit [Ping timeout: 244 seconds]
buffet has quit [Ping timeout: 246 seconds]
andreas303 has quit [Remote host closed the connection]
buffet has joined #nixos
<worldofpeace>
zanc: I believe '<?>' has to be a nix path entry. but with flakes nix path is dead... so the only real hack is to reintroduce nix_path somehow. though truthfully, nix_path is used essentially for the same things that flakes was made to do. so I could access a module inside nixpkgs like inputs.nixpkgs.nixosModules.notDetected
<{^_^}>
[nixpkgs] @worldofpeace pushed 2 commits to release-20.09: https://git.io/JURc2
<notgne2>
if the package exists on stable but not the service, you can just do `imports = [ <unstable/nixos/modules/services/something/something.nix> ];` (assuming you have the unstable channel set up)
<Ke>
not-rager: for a single package, I would just copy-paste, if that works out
<notgne2>
if the package doesn't exist in stable either, sometimes you can do `services.something.package = (import <unstable> {}).something;` or you might have to set it in your overlay
<Ke>
if this is unstable of 20.09, it'll also get released soon
<Ke>
if I was setting up something now, I might set up 20.09 directly
<worldofpeace>
ermm, while 20.09 was just recently branched from "unstable" (and unstable is actually usable at most times) I wouldn't fully suggest getting to know nixos through an alpha/beta quality release. But it will probably be mostly fine 👍️
<{^_^}>
[nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JURcM
<{^_^}>
[nixpkgs] @worldofpeace pushed commit from @alapshin to release-20.09 « nixos/plasma5: Fix build with config.services.colord.enable = true »: https://git.io/JURcD
orivej has joined #nixos
hke has quit [Read error: Connection reset by peer]
ransom has joined #nixos
hke has joined #nixos
kleisli_ has joined #nixos
Rusty1 has quit [Quit: WeeChat 2.3]
<mvnetbiz_>
How can I override the /dev/sd* name of a specific usb device? I cant figure out if it's the kernel itself that makes that device node or if its udev, but if its udev I can't figure out how to make it /dev/my_usb
<mvnetbiz_>
I know I can make a symlink /dev/my_usb -> /dev/sdX but I would like no /dev/sdX if thats possible
mmohammadi9812 has joined #nixos
captn3m0 has quit [Ping timeout: 256 seconds]
<srhb>
mvnetbiz_: I don't think you can rename in general, I think that's only in special cases.
mmohammadi9812 has quit [Ping timeout: 256 seconds]
<justanotheruser>
On head of origin/20.09, trying to `nixos-rebuild switch`, however I get the error "error: getting attributes of path '/nix/store/mcq4b302nnfrbrmgdnp0s0xykzkl145a-zziplib-0.13.71': No such file or directory". Why might this be? https://dpaste.com/CXCVHP598.txt
<srhb>
justanotheruser: Can you `nix-store --verify-path /nix/store/mcq4b302nnfrbrmgdnp0s0xykzkl145a-zziplib-0.13.71` ?
Guest74761 has quit []
dsal has joined #nixos
dsal is now known as Guest85365
<srhb>
justanotheruser: or nix-store --verify --check-contents to check your entire store
<srhb>
justanotheruser: That error is usually due to store/db corruption (filesystem barfed, memory issues, hardware failure, ...)
captn3m0 has joined #nixos
<Ke>
mvnetbiz_: do you really need that, udev rules do allow you to make a symlink
<Ke>
mvnetbiz_: maybe you could use fs label, or whatever is your use case
Guest85365 is now known as dsal
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
palo1 has joined #nixos
ransom has joined #nixos
sangoma has joined #nixos
palo has quit [Ping timeout: 272 seconds]
palo1 is now known as palo
ransom has quit [Client Quit]
mrte has joined #nixos
<Ke>
earlier on nix was not power failure safe and did not sync before registering work done
<Ke>
we had missing files and whatnot due to that, this is possibly now fixed
<Ke>
I still have sync in my wrapper script after first failure like that
mrte has quit [Ping timeout: 260 seconds]
archbung has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
veleiro` is now known as veleiro
<Ke>
this was fixable with tar -C /nix/ -c store --lzop | ssh host sudo tar -xp --lzop -C /nix from another host
archbung has quit [Client Quit]
veleiro has joined #nixos
veleiro has quit [Changing host]
zupo has joined #nixos
<Ke>
as any nix command refused to work with my skill level at the time
<Ke>
not recommending this now, as people here probably know better
<__red___>
I'm in a nix-shell -p stdenv ncurses environment
<__red___>
but my build system isn't automatically picking up the include and lib paths for ncurses
<__red___>
I see them in NIX_LDFLAGS for example
<__red___>
but what's the mechanism for getting those paths into compilers and linkers typically?
saschagrunert has joined #nixos
<__red___>
oh - that's not the problem
<__red___>
the problem seems to be that the command is being truncated
<__red___>
I'll contact the build-system maintainers
mmohammadi9812 has joined #nixos
Yaniel has joined #nixos
rihards has joined #nixos
knupfer has joined #nixos
cole-h has joined #nixos
buffet has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
zupo has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Fare has quit [Ping timeout: 244 seconds]
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
incognito9999 has quit [Ping timeout: 256 seconds]
<mvnetbiz_>
On linux dragging windows there is like 1 frame delay between the cursor and moving a window at least in X. I don't notice that in Windows. I wonder which has less total latency though
ManiacOfMadness has quit [Remote host closed the connection]
dansho has quit [Remote host closed the connection]
dansho has joined #nixos
<{^_^}>
[nixpkgs] @doronbehar pushed to master « all-packages.nix: Remove trailing space for qutebrowser »: https://git.io/JURlL
Cale has quit [Ping timeout: 246 seconds]
<Ke>
mvnetbiz_: linux is so heterogenous that your statement is only part of the truth
ToxicFrog has quit [Ping timeout: 265 seconds]
kreyren_ has quit [Remote host closed the connection]
kreyren_ has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
mvnetbiz_7 has joined #nixos
mvnetbiz_ has quit [Ping timeout: 244 seconds]
mvnetbiz_7 is now known as mvnetbiz_
davidv7_ has quit [Ping timeout: 272 seconds]
buffet has quit [Ping timeout: 264 seconds]
mmohammadi9812 has joined #nixos
incognito9999 has joined #nixos
Cale has joined #nixos
sputny has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
mmohammadi9812 has joined #nixos
mmohammadi9812 has quit [Client Quit]
cr4y1_ has joined #nixos
ToxicFrog has joined #nixos
knupfer has quit [Ping timeout: 272 seconds]
<{^_^}>
[nixpkgs] @lsix pushed to release-20.09 « pythonPackages.pyslurm: mark as broken »: https://git.io/JURlN
lsix has joined #nixos
Poumpaloumpa has joined #nixos
mmohammadi9812 has joined #nixos
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}>
[nixpkgs] @hotlineguy opened pull request #98147 → Adding myself to the maintainers-list, this time with a seperate commit → https://git.io/JUR8q
mmohammadi9812 has quit [Ping timeout: 272 seconds]
mmohammadi9812 has joined #nixos
meh` has joined #nixos
ixxie has joined #nixos
<ixxie>
how do I use nix-prefetch-url / nix-prefetch-git to get a sha256 hash suitable for fetchFromGitHub?
<mvnetbiz_>
there is a nix-prefetch-github command
<ixxie>
oh neat
<cole-h>
nix-prefetch-url --unpack on the .tar.gz
<mvnetbiz_>
thats what I have been doing I didnt know there was the github command
civodul has joined #nixos
meh` has quit [Ping timeout: 260 seconds]
<regnat>
Orbstheorem: That's awesome, thanks a lot
<regnat>
Orbstheorem++
<{^_^}>
Orbstheorem's karma got decreased to -1
<{^_^}>
Wait no, it got *increased* to 1
AlpineLlama has quit [Ping timeout: 272 seconds]
mallox has joined #nixos
da39a3ee5e6b4b0d has joined #nixos
dermetfan has joined #nixos
zakame has quit [Remote host closed the connection]
<s1341>
I'm trying to build Android on nixos. I'm using the shell.nix specificied here https://nixos.wiki/wiki/Android, but am getting the following error:
<s1341>
prebuilts/clang/host/linux-x86/clang-r383902b/bin/clang.real: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
<s1341>
ldd on clang.real shows that it CAN find libz.so.1:
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
thc202 has joined #nixos
syd has joined #nixos
CyberManifest is now known as CyberMan
<syd>
Hi! Could anyone help me with https://github.com/nix-community/home-manager/issues/1498 please? It's messing with my head because it looks like I found a bug but there's also a test for this feature so I'm not sure what is going wrong..
<{^_^}>
[patchelf] @DerDakon opened pull request #237 → avoid string table duplicates and DT_NEEDED reference corruption when using --replace-needed multiple times → https://git.io/JUR0d
<{^_^}>
[nix] @edolstra pushed 0 commits to remove-corepkgs-config: https://git.io/JURom
hiro99 has joined #nixos
redkahuna has joined #nixos
gxt has quit [Remote host closed the connection]
gxt has joined #nixos
<teto>
LVM noob here, I followed a tutorial to install nixos with LUKS on a root filesystem. First reboot was ok, but hten when I tried rebuilding a more elaborate configuration.nix with an uptodate nixos-unstable. When booting on the new generations, I just see the DELL logo and not the prompt asking for my LUKS passphrase. During the nixos-rebuild, I see 'lvm2-activation-generator: lvmconfig failed'. I
<teto>
am surprised that error doesn't abort the rebuild. Not sure where to look
gxt has quit [Remote host closed the connection]
<{^_^}>
[nix] @edolstra merged pull request #4027 → Fix garbage collection of CA derivations → https://git.io/JURrN
<mvnetbiz_>
I am a little confused on flakes I get the high level point of it, but I am curious to try moving my few nixos hosts' configuration to it. It looks like flakes follow a similar pattern to NixOS module & overlay? It looks like would just need nixpkgs in inputs, and I can output overlays, packages, modules. I dont see very many trivial but broad
<mvnetbiz_>
examples of a flake. I am mainly wondering what types do I pass to overlays/packages/nixosModules, and If I provide module A and B, can I make A depend on B just by having them both in the outputs?
<teto>
mvnetbiz_: you can use self to reference stuff in your flake
<teto>
I've been experimenting a bit with it myself and when using local flakes, I found --no-write-lock-file invaluable
<mvnetbiz_>
What's that do?
cosimone has quit [Quit: Quit.]
fendor has joined #nixos
buffet has joined #nixos
<pheoxy>
anyone know why I keep getting "Missing CNI default network" on root podman on NixOS 20.03?
<sxiii>
Greetings NixOS community :) I am trying to build a personalized ISO Live image of NixOS with a packages of my choice. I'm using the "nixos-generators" from here: https://github.com/nix-community/nixos-generators
<pheoxy>
without root works fine but I'm trying to get some containers moved over from a old ubuntu box that was using docker. I've switched most of my computers to using podman but thats on my fedora laptop and it works fine
<sxiii>
Does anybody knows how to actually add packages from repos to "configuration.nix" file? I've tried to do it several ways and the system builds OK but it lacks the packages that I choose.
<pheoxy>
I've read the message on the wiki that podman will have a easier install in 20.09 for nix-configs
<sxiii>
Mic92: error in configuration.nix leads to error when building the ISO
<pheoxy>
I just use it like that
<sxiii>
So yes, it is KINDA picked up
<pheoxy>
then I add a repo using nix-channel command
<sxiii>
However, I disabled NGINX web server by commenting the line with it in config file, but, when I build, I still have NGINX enabled and working. :D
<mvnetbiz_>
If you want to add to the existing installer you can add <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix> instead of cd-minimal.nix
hoxtonhopper has joined #nixos
<Orbstheorem>
Hello o/ I'm looking for a minimalistic image viewer that updates the image as they change. I would love to use feh, but it doesn't refresh the image when the file changes.
<sxiii>
Ok thanks for the wiki link mvnetbiz_ I will check it out :)
lorimer has quit [Disconnected by services]
lorimer has joined #nixos
buffet has joined #nixos
sangoma has joined #nixos
dermetfan has joined #nixos
<multun>
hello ! can you have multiple slightly different derivations installed at the same time, that contain a file at the same path but don't trigger a conflict?
kaliumxyz has joined #nixos
<multun>
I have two derivations that contain two different .so at the same path, and home-manager complains
<multun>
I tried moving the files to some random subdirectory instead of /lib, but it doesn't help
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
<mvnetbiz_>
Orbstheorem, I dont know any light weight ones, the only I can recall is eog that refreshes
<mvnetbiz_>
I tried mpv --loop that doesn't re-read the file though
<pingiun>
did someone else notice firefox sync server not working on 20.03? I have this error: error: webtest-2.0.32 not supported for interpreter python2.7
inkbottle has joined #nixos
nikivi has joined #nixos
ransom has joined #nixos
redkahuna has quit [Ping timeout: 258 seconds]
alexherbo27 has joined #nixos
orivej has quit [Ping timeout: 272 seconds]
alexherbo2 has quit [Ping timeout: 272 seconds]
alexherbo27 is now known as alexherbo2
orivej has joined #nixos
<mvnetbiz_>
There are a few python 2 applications that had their decencies get updated beyond the point where they supported python 2 :/
Poumpaloumpa has quit [Quit: Konversation terminated!]
redkahuna has joined #nixos
ericsagnes has quit [Ping timeout: 244 seconds]
m4ts has joined #nixos
<simpson>
Welcome to the Python ecosystem. Python 2 support is slowly rotting and strangling off projects which didn't port.
<mvnetbiz_>
lol it looks like webtest got disabled for old python because one of its own dependencies doesn't work
<ar>
it's been more than 10 years now since py2 got deprecation notices
<simpson>
ar: Turns out that it's not possible to simply unilaterally order an entire ecosystem to change or die.
<{^_^}>
[nixpkgs] @NeQuissimus pushed 2 commits to release-20.03: https://git.io/JUR1d
<ar>
simpson: noone expected anyone to immediately migrate to py3. but 10 years is plenty of time
zakame has quit [Ping timeout: 240 seconds]
redkahuna has quit [Ping timeout: 264 seconds]
orivej has quit [Ping timeout: 264 seconds]
<mvnetbiz_>
we still have a few more months until we have to start porting
<{^_^}>
[nixpkgs] @NeQuissimus pushed 3 commits to release-20.09: https://git.io/JUR1N
<simpson>
ar: The PyPy folks declared that they're never migrating and that they have the resources to support themselves. Continuing to ship their interpreters will eventually require a Python 2 bootstrap just for them.
<{^_^}>
[nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « improve the counter »: https://git.io/JUR1x
<zeorin>
and of course `let unstable = import <unstable> { config = { allowUnfree = true; }; };in {```
<iwq>
what's the issue?
<iwq>
have you logged out and logged in?
<zeorin>
patching file create_manpage_completions.pyHunk #1 FAILED at 776.1 out of 1 hunk FAILED -- saving rejects to file create_manpage_completions.py.rejbuilder for '/nix/store/6q0bkrhpk33n5xvh1p1190s03wgwa6y9-fish_patched-completion-generator.drv' failed with exit code 1cannot build derivation
<zeorin>
'/nix/store/7kx3ggg8jdhr57w45kp4wi8y65wg0fd7-NetworkManager-fortisslvpn-gnome-1.2.10_fish-completions.drv': 1 dependencies couldn't be built
<zeorin>
When I try to switch after setting up the config
<zeorin>
Is this due to my setup or is it likely to be a temporary error with the current unstable version of the fish derivation?
<{^_^}>
[nixpkgs] @nh2 merged pull request #98140 → ntfy: Switch to python3. Also fixes test failure → https://git.io/JURsJ
<zeorin50>
V I tried to just set `users.users.zeorin.shell = unstable.fish`, but after logging in again `fish --version` prints `fish, version 3.0.2` (unstable has version `3.1.2`)
<{^_^}>
[nixpkgs] @marsam pushed commit from @raboof to master « pythonPackages.grpcio-tools: add setuptools dependency (#98157) »: https://git.io/JURDk
<{^_^}>
[nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « until we have some nice text show bigger videos »: https://git.io/JURDq
<zeorin50>
Would I need to reboot?
redkahuna has joined #nixos
zakame has quit [Quit: WeeChat 2.9]
<mvnetbiz_>
I have set programs.fish.enable = true; and the I have user.shell = "/run/current-system/sw/bin/fish" but I don't know why
mmohammadi98127 has joined #nixos
mmohammadi9812 has quit [Read error: Connection reset by peer]
mmohammadi98127 is now known as mmohammadi9812
<ixxie>
I tried a simple overlay to bump a package version, but the build is running rediculously long so I must be doing something wrong:
<tobiasBora>
Hello, is there a way to remove the quotes in nix-instantiate expressions? I tried nix-instantiate --eval -E 'builtins.fetchTarball {url = https://github.com/NixOS/nixpkgs/archive/925ae0dee63.tar.gz; sha256 = "1g3kkwyma23lkszdvgb4dn91g35b082k55ys8azc7j4s6vxpzmaw"; }';
<zeorin50>
I'm still a little new to nix, but I think that the first enables the fish _module_, which will do things like set up the default config files and completions
<tobiasBora>
but it writes `"/nix/store/m59d3v89nhp9207hgvf6v21wxq7lhq64-source"
<zeorin50>
Whereas the second actually sets the login shell for your user in `/etc/passwd` or its equivalent
<tobiasBora>
and I'd like it without the ""
<zeorin50>
`pkgs.fish` would likely evaluate to the "hard-coded" path you've got.
<tobiasBora>
nix eval has a --raw option, but can't find it here
<mvnetbiz_>
right i have it set to the current symlink of whats in environment.systemPackagges but idk why vs setting it to the nix stre :/
<zeorin50>
Or rather, that symlink chain that `/run/current-system/sw/bin/fish` points to will be the same as what `pkgs.fish` evaluates to.
<{^_^}>
[nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « shorted text works better. need to learn how to show things for some resolutions »: https://git.io/JURDw
<{^_^}>
[nixos-homepage] @garbas pushed 11 commits to feature/2020-redesign: https://git.io/JURDM
<{^_^}>
[nixos-homepage] @garbas pushed 0 commits to feature/2020-r/frontpage-banner: https://git.io/JURDD
<xensky>
evanjs: (which nixos-rebuild) ?
<evanjs>
from a nix expression tho?
<xensky>
oh
<ToxicFrog>
evanjs: (source /etc/*release && echo $NAME) will be "NixOS"
<ToxicFrog>
Oh.
<evanjs>
lollll
<zalaare>
what is the difference between channels 20.03 and 20.03-small or 20.09 and 20.09-small ?
<xensky>
shell mind
<evanjs>
(builtins.tryEval system == true) ? :P
<evanjs>
don't want to do that to my NixOS systems tho haha
philr has quit [Ping timeout: 240 seconds]
xd1le has quit [Ping timeout: 240 seconds]
<ToxicFrog>
zalaare: -small tests a smaller subset of packages, so the tests complete faster and the channel updates more frequently.
<evanjs>
was poking around stdenv but not seeing anything I can use. hrm
<ToxicFrog>
It's useful on e.g. servers where you want security patches with minimal latency and are ok with a lower binary cache hit rate (i.e. you have a small installed system or lots of build capacity)
redkahuna has quit [Ping timeout: 264 seconds]
<ToxicFrog>
It's less useful on laptops/desktops because (IIRC) it doesn't include any GUI/DE stuff, so the -small channel might advance to a version that's fine for headless use but breaks KDE or something.
cantstanya has quit [Ping timeout: 240 seconds]
joesventek has joined #nixos
nikivi has joined #nixos
<zalaare>
thanks!
<mvnetbiz_>
evanjs, can you do builtins.readfile orwhatever?
<mvnetbiz_>
/etc/NIXOS but if its not tthere it errors
<mvnetbiz_>
evanjs, builtins.readDir /etc ? NIXOS
cr4y1_ has quit [Remote host closed the connection]
<evanjs>
gah why does tryEval never work how I want it to lol
<zeorin50>
I fixed my fish issue.
xd1le has joined #nixos
<evanjs>
or is there something else I should be using to handle the error?
mariatsji has quit [Remote host closed the connection]
<mvnetbiz_>
just do readDir ^
<mvnetbiz_>
builtins.readDir /etc ? NIXOS
<mvnetbiz_>
returns true if /etc/NIXOS exists
<zeorin50>
First I tried to disable the stable fish module and import the unstable one. The unstable module relied on some nixos option that didn't exist yet in 20.03.
<evanjs>
ohhh I misread your initial statement lol
<mvnetbiz_>
Initially I did try readFile, that was my 2nd statement
<evanjs>
didn't parse the optional haha
nixuser has quit [Read error: Connection reset by peer]
<zeorin50>
Setting the user shell to `unstable.fish` and actually manually also including it in `environment.systemPackages` as `unstable.fish` did the trick.
<iwq>
how often is the nixpkgs-unstable branch updated?
<evanjs>
seeing true and false on the expected systems. sweet!
<evanjs>
mvnetbiz_++
<{^_^}>
mvnetbiz_'s karma got increased to 2
zeorin50 has quit [Remote host closed the connection]
mariatsji has joined #nixos
cosimone has quit [Quit: Quit.]
mariatsji has quit [Remote host closed the connection]
<simonpe^^>
I'm using a binary cache that is inside my clients VPN, when I'm not connected to the VPN Nix basically breaks completely because it cannot reach the server. Whan can I do about this?
<jumper149>
I am trying to host nextcloud on NixOS-20.03 but I'm running into some problems: nextcloud-setup.service fails with `Nextcloud is not installed - only a limited number of commands available`, `Command "upgrade" is not defined`
zalaare has quit [Remote host closed the connection]
fendor_ has quit [Ping timeout: 256 seconds]
<lordcirth>
jumper149, nextcloud 19?
<tobiasBora>
jumper149: it usually occurs when you have an issue during install. You need to clean the folder and restart
* tobiasBora
is searching for the issue
<jumper149>
tobiasBora: You are saying it doesnt have anything to do with nix?
<tobiasBora>
(in my case it was because the secret file had bad permission during the first install I think)
<lordcirth>
It should have done "occ maintenance:install" first
mariatsji has joined #nixos
<lordcirth>
Probably that failed or there is a flawed conditional for it
<tobiasBora>
jumper149: well, it does have a link with nix, in the sense that nix tries to do everything in one go, and if the password files has wrong permission (which is not surprising), it fails. Here is the issue: https://github.com/NixOS/nixpkgs/issues/48045
<arianvp>
we shouldn't epically fail in this scenario :/
<tobiasBora>
jumper149: but yes, for me the first step is to make sure you don't have a broken config (bad password file permission...) and then rm -rf /var/lib/nextcloud, and then rebuild the system
<abathur>
arianvp: huh, wonder why a second run worked
<arianvp>
my buffer isnt large enough to find what the original error message was unfortunately
arianvp has quit [Quit: WeeChat 2.7.1]
arianvp has joined #nixos
<{^_^}>
[nixpkgs] @ehmry merged pull request #97394 → dnscontrol: 3.2.0 -> 3.3.0, add me as maintainer → https://git.io/JUZdi
<evanjs>
abathur: arianvp eh that's usally what I end up doing lol. Sometimes multiple runs work, sometimes I actually need to delete something outside the store :P
fendor__ has quit [Ping timeout: 272 seconds]
bahamas has quit [Ping timeout: 256 seconds]
<{^_^}>
[nixos-search] @garbas pushed to fix-187 « By mistake the default analyzer was used for query »: https://git.io/JURQC
<{^_^}>
[nixos-search] @garbas opened pull request #195 → By mistake the default analyzer was used for query → https://git.io/JURQ8
<{^_^}>
[nixos-search] @garbas pushed to master « By mistake the default analyzer was used for query (#195) »: https://git.io/JURQD
<{^_^}>
[nixos-search] @garbas merged pull request #195 → By mistake the default analyzer was used for query → https://git.io/JURQ8
<{^_^}>
[nixos-search] @garbas pushed 0 commits to fix-187: https://git.io/JURQS
nikivi has quit [Client Quit]
nikivi has joined #nixos
Maxdamantus has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
civodul has quit [Read error: Connection reset by peer]
civodul has joined #nixos
<{^_^}>
[nixos-homepage] @ajs124 opened pull request #537 → add Helsinki Systems → https://git.io/JUR7O
megfault has joined #nixos
<lordcirth>
Trying to add a custom flake to my system flake, and "nixos-rebuild build" throws "The option `inputs' defined in `<unknown-file>' does not exist." Except the only place I'm using "inputs" is right next to the existing ones that worked fine
<spease>
"/nix/store/ddm1y988d42mxmz62fzg8xz3ladxz8vq-stdenv-darwin/setup: line 90: cd: too many arguments"
<cole-h>
regnat++ Thanks for reviewing that PR :) I'll see if I can't come up with a good solution, thanks to your help.
<{^_^}>
regnat's karma got increased to 3
<brano543>
Good evening. Can anyone please tell me how to get path to cross compiler? I would like to combine Nix features with Conan as Nix doesn't support Windows. I would like to create a profile for Conan which needs path to MingW compiler. I am unable to get the path though https://pastebin.pl/view/1bf8c35a
<cole-h>
regnat: And super-thanks for the example code -- it's been a long time since I've done anything quite so complex in C++ :^)
<brano543>
Could any good soul assist please?
<spease>
brano543 you might try nix repl and introspect into the package attributes (it has autocomplete)
<spease>
brano543 do you know the package name you are trying to get the path to?
fendor has quit [Remote host closed the connection]
<brano543>
spease: that is the problem that I am not sure how exactly should be the package called. I have consulted the documentation and it says only that you should use crossSystem and you would have correct compiler while running mkDerivation. When I try to reference this guy it tells me it is Windows specific and refuses to build.
<ixxie>
I'm wondering if I should make my overlay fetch the binary instead of building from source
<ixxie>
but I am not sure how
<brano543>
spease: Can you help me how do I use that nix repl to execute this so I can search within that cross packages as you suggested? pkgsCross = import sources.nixpkgs { crossSystem = (import sources.nixpkgs { }).lib.systems.examples.mingwW64; };
D_ has joined #nixos
<brano543>
spease: I have tried like this but it doesn't work. nix repl '<nixpkgs> {crossSystem = (import <nixpkgs/lib>).systems.examples.mingwW64}'
MtotheM has joined #nixos
jDally987 has joined #nixos
<cole-h>
regnat: I think one problem with the suggested approach is the fact that libutil has no way to access the global `settings` (e.g. to check `settings.logFormat`), unless my inexperience is getting to me.
<cole-h>
regnat: We'd then have to link libmain into libutil (99% sure that is totally undesirable) for access to the global `settings`?
civodul has quit [Ping timeout: 244 seconds]
<brano543>
spease: Thank you so much for the idea ! This variation worked nix repl '<nixpkgs>' --arg crossSystem '(import <nixpkgs/lib>).systems.examples.mingwW64'. Now I can see the path is pkgsCross.migwW64, but whenever I try to use the same in derivation I get error.
Pwnna has quit [Quit: Bye]
spease has quit [Remote host closed the connection]
Pwnna has joined #nixos
qqqqqq has joined #nixos
<qqqqqq>
Proof that Jesus worshiped one God same as muslims do: - Jesus identifying the commandment: "The Lord our God is One Lord" (Mark 12:29) to be the most important of all; As stated in (Mark 12:29): Jesus was asked "Which commandment is the most important of all?" Jesus replied, "This is the most important: Hear O Israel, the Lord our God is One Lord" (Mark 12:29) as in Quran: {Say He is God the one (Allah)} [Quran chapter 112].
<qqqqqq>
so the above qoute(mark12:29) is a clear evidence that Jesus was directing us towards monothiesm belief and to consider it as the very first of all commandments; also here is the firsts of the The Ten Commandments(to moses) which is similar to what he was directing us towards: [ 1 - I am the LORD your God who brought you out of the land of Egypt, out of the house of bondage. You shall have no other gods before Me.]
qqqqqq has left #nixos [#nixos]
<justanotheruser>
thanks
<simpson>
As the saying goes, "one person's modus ponens is another's modus tollens"
<jDally987>
lmao^
morr has quit [Quit: WeeChat 2.3]
<cransom>
and today i learned about MPMT.
<jDally987>
hey so where is $XDG_DATA_DIRS defined
<jDally987>
cuz I'm trying to install flatpak apps and it wants me to add stuff to the path there
<jDally987>
not sure if it's system-level somewhere or per user
<V>
if you want to set env vars, look in environment.*variables
morr has joined #nixos
<V>
there's profile-relative env vars
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}>
[nixpkgs] @blitz opened pull request #98167 → cpuid: init at 20200427 → https://git.io/JURd0
Mateon1 has quit [Quit: Mateon1]
Mateon1 has joined #nixos
<jDally987>
V ah great thanks
arjen-jonathan has joined #nixos
<jDally987>
so that would be profile-specific then?
spease has joined #nixos
<V>
well, if you want stuff relative to their $HOME or such
<jDally987>
looks like XDG_DATA_DIRS is under environment.profileRelativeSessionVariables
<V>
ah
<V>
I don't remember what exactly it uses, I've just been in that file enough times to know where it is :)
<jDally987>
yeah I'm just not completely sure how flatpak is supposed to be set up tbh
<jDally987>
or really where any nix-installed package is supposed to go (system vs user)
<V>
there's a flatpak module
<V>
see `man configuration.nix`
<jDally987>
I did actually do flatpak under the global configuration.nix
<jDally987>
yup
<jDally987>
so would that cause problems if I stuck whatever it wanted onto the end of DATA_DIRS in the "profileRelative" vars
Darkmatter66 has quit [Ping timeout: 260 seconds]
<V>
jDally987: look in $XDG_DATA_DIRS, they're already set - you can put stuff into /etc/profiles/per-user/<username>/share
<jDally987>
I guess the env var itself is global and thus seen by everyone
<V>
and such
<jDally987>
o well it was just telling me this when I tried to `flatpak install kdeconnect/<whatever>`
<jDally987>
```Note that the directories '/var/lib/flatpak/exports/share''/home/jdnixx/.local/share/flatpak/exports/share'are not in the search path set by the XDG_DATA_DIRS environment variable, soapplications installed by Flatpak may not appear on your desktop until thesession is restarted.```
<V>
ah
Darkmatter66 has joined #nixos
<V>
see, .local/share is covered by $XDG_DATA_HOME
<V>
(or, that's the default for it)
igghibu has joined #nixos
<V>
so /home/jdnixx/.local/share/flatpak/exports/share should be fine IMO? unless flatpak explicitly ignores those
<jDally987>
am I supposed to have an $XDG_HOME on a fresh nixos installation?
<regnat>
cole-h: Nice 👍 that sounds pretty darn cool:)
Darkmatter66 has quit [Ping timeout: 272 seconds]
<cole-h>
I'm a little unhappy with adding `createDefaultLogger()` and friends to globals.{cc,hh}, but I guess it's better than libstore depending on libmain x)
<cole-h>
regnat++ Thanks again for the extremely actionable suggestions <3
<{^_^}>
[nixpkgs] @bjornfor merged pull request #98105 → kicad: remove gettext from buildInputs, add to nativeBuildInputs → https://git.io/JUBA3
<{^_^}>
[nixpkgs] @bjornfor pushed commit from @hannesweisbach to master « kicad: remove gettext from buildInputs, add to nativeBuildInputs »: https://git.io/JURbu
<cole-h>
regnat: Struggling with the lambda -- isn't `std::function<void(Logger*)>` saying it's a function that returns void and takes in a logger as an argument? Is that what I really want?
<cole-h>
(I only ask, because `could not convert ‘<lambda closure object>nix::<lambda()>{}’ from ‘nix::<lambda()>’ to ‘std::function<void(nix::Logger*)>’`)
<cole-h>
This is when I miss Rust's error messages 😬 Sorry to keep pinging you. (At this point, you could probably write this yourself haha)
joesventek has quit [Client Quit]
joesventek has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<regnat>
cole-h: Hm, I might have inverted the arguments, never remember whether it's <arg(return)> or <return(arg)>
<regnat>
(sorry, my review isn't that actionnable after all 🙃)
sigmundv_ has quit [Read error: Connection reset by peer]
<cole-h>
Hahaha, it's all good. Looks like OnStartup is the only way to go, however -- I get incomplete type errors when trying `static auto l1 = registerLogger(....);`
<acowley>
Huh, in a nix-shell -A for that derivation, the script loads and runs. So I guess the wrapper I'm getting isn't quite right. In the nix-shell I run into `TLS/SSL support not available; install glib-networking`, even though that is in the propagatedBuildInputs.
<acowley>
So maybe this is hopeless.
<acowley>
The alternative is to do a buildFHSUserEnv for the whole thing
<acowley>
Huh, yuck. The wrapped script looks like it should be doing things correctly, so gi failing to load Gtk is troubling. The failure of the nix-shell execution to find glib-networking feels like yet more load path trouble.
<{^_^}>
[nixpkgs] @Ericson2314 merged pull request #96693 → adobe-reader: add gkd-pixbuf-xlib based on issue: #96683 → https://git.io/JUtxn
mariatsji has quit [Remote host closed the connection]
<lordcirth>
Why is it that "nix flake update" does nothing, but "rm flake.lock; nix flake update" updates? Isn't that what it's supposed to do?
alp has joined #nixos
alp_ has quit [Ping timeout: 272 seconds]
fendor has joined #nixos
<NieDzejkob>
A program I'm packaging complains about: (sameboy:27805): GLib-GIO-ERROR **: 20:27:57.237: No GSettings schemas are installed on the system
<NieDzejkob>
This is followed by a SIGTRAP in gtk logging code, so I'd assume that this is important. Any idea how to fix this?
<cole-h>
regnat: Hm. Do you have any idea why the vector would be emptying itself? If I breakpoint `registerLogger`, I can see all the loggers being registered, but when I enter `makeDefaultLogger`, registeredLoggers is of size and length 0...
<NieDzejkob>
symphorien[m]: I added gsettings-desktop-schemas and wrapGAppsHook to buildInputs and the wrapper only sets GIO_EXTRA_MODULES (no XDG_DATA_DIRS), the error message persists
redkahuna has joined #nixos
<symphorien[m]>
wrapGAppsHook goes to nativeBuildInputs
<symphorien[m]>
is it a python package ?
<symphorien[m]>
if so add `strictDeps = false;`
irccat42 has joined #nixos
stiell has joined #nixos
<NieDzejkob>
symphorien[m]: not a python package, it's written in C. I moved the hook to nativeBuildInputs, and now the GIO_EXTRA_MODULES wrapping line is repeated. XDG_DATA_DIRS is still not set, the error persists
<NieDzejkob>
the application loads gtk with dlopen, could that be relevant?
<jtojnar>
dlopen should not matter, as long the environments get passed to the program
sangoma has joined #nixos
<NieDzejkob>
okay, I was wondering if maybe it's trying to detect usage of gtk with dynamic linking data
jDally987 has joined #nixos
<NieDzejkob>
adding glib made it set the env var, now the error's different and it's not fatal...
<NieDzejkob>
failed to commit changes to dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
<jtojnar>
then you are missing the dconf systemd service on your system
<cole-h>
regnat: Unfortunately, I don't think your "listLogFormats" idea will work -- in the generated nix.conf.5 manpage, bar and bar-with-logs won't show up because they're declared outside of libutil :( (since progress-bar is also outside libutil)
mallox has quit [Quit: WeeChat 2.9]
<{^_^}>
[nixos-homepage] @garbas pushed to feature/2020-redesign « use gutter and revert pane button change »: https://git.io/JURjx
ixxie has joined #nixos
redkahuna has joined #nixos
<cole-h>
At least, not in globals.hh (which impacts the generation of the manpage)
<{^_^}>
[nixpkgs] @superherointj closed pull request #98175 → [20.03] dmidecode version bump to 3.2.8 → https://git.io/JURAw
knupfer has quit [Quit: knupfer]
knupfer1 has joined #nixos
Fare has quit [Ping timeout: 244 seconds]
<{^_^}>
[nixpkgs] @superherointj closed pull request #98173 → [20.09] dmidecode version bump to 3.2.8 → https://git.io/JURAg
mmk2410 has quit [Quit: ERC (IRC client for Emacs 27.1)]
thc202 has quit [Ping timeout: 240 seconds]
meh` has joined #nixos
<ixxie>
jtojnar: I'm having trouble with Inkscape and I suspect its because I recently update my channel
<silver-fox84>
I'm trying to add a custom profile-set for pulseaudio but haven't had any luck so far.I've found the location in the nix store, but I'm not sure what derivation created the folder, nor how to add custom files to it.
Yaniel has joined #nixos
<{^_^}>
[nixos-homepage] @garbas pushed to feature/2020-redesign « minor fixes for screen-sm »: https://git.io/JU0v1
<jasom>
can I set environment variables from nix-shell?
<silver-fox84>
jasom: you can use a shellHook
<symphorien[m]>
yes, any "unused" argument to mkShell/mkDerivation will set the corresponding env var
<regnat>
cole-h: Waaaah sorry looks like I sent you into a much bigger rabbit hole than what I intended to
<{^_^}>
[nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JU0v7
<cole-h>
regnat: Hehe, no worries. At least it "works". I'll push my local changes in a little bit.
<cole-h>
(after I clean up the diff)
eoli3n_ has quit [Ping timeout: 246 seconds]
__monty__ has joined #nixos
<regnat>
It's strange that all the options don't show-up in the manual as it's generated by nix show-config --json. So libmain should definitely be loaded at that point
<regnat>
(going to bed right now, happy to look at the changes tomorrow morning :) )
<cole-h>
The generated nix.json does include those options, but not the manpage :(
<ornxka>
Problem: libstdc++.so.6: cannot open shared object file: No such file or directory
<clueclue>
Hi folks, I want to package spotdl but it returns 'pathlib-1.0.1 not supported for interpreter python3.8' could some Python guru suggest a path forward? Thank you.
ericsagnes has joined #nixos
<worldofpeace>
clueclue: the pathlib module was introduced into python 3.4
<worldofpeace>
I believe that's why u will see that error, it's because you don't need it
gustavderdrache has quit [Quit: Leaving.]
<worldofpeace>
what's likely is that spotdl wants to use a pathlib module from pypi to backport the functionality to support older python versions. though, I don't think we support any in nixpkgs anymore
kenran has joined #nixos
<evanjs>
Mrm pretty sure I saw something like this with asyncio
<cole-h>
fzakaria: Is there a reason you wave every so often? :P
elsanchez has joined #nixos
<fzakaria>
I like saying hi.
<fzakaria>
if i were to walk up to a group of people in real life; i'd say hello.
<fzakaria>
I try to do the same virtually :)
<cole-h>
I see. Interesting.
<fzakaria>
I like to also show that i'd like to be part of the group socially rather than just blasting in with a question and leaving ;) (which I still might do lol)
<{^_^}>
[nixpkgs] @jorsn opened pull request #98185 → python: fix passing wrong qt5 version to pythonInterpreters → https://git.io/JU0Th
jumper149 has quit [Quit: WeeChat 2.9]
stiell has quit [Ping timeout: 240 seconds]
<cole-h>
Heh, fair. But you can also do that by hanging around and answering questions ;)
philr has joined #nixos
ransom has joined #nixos
alp has joined #nixos
<fzakaria>
i try to do that too.
<fzakaria>
I'm on discord more so though;
<fzakaria>
and discourse. I like the async nature of discourse.
<fzakaria>
(I'm a sucker for e-mail lists)
<samueldr>
(and here I tought you were trying to start one of those stadium waves)