sphalerite changed the topic of #nixos to: NixOS stable: 19.03 \o/ https://discourse.nixos.org/t/nixos-19-03-release/2652 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2018
dansho has quit [Ping timeout: 258 seconds]
___laika has quit [Ping timeout: 248 seconds]
stepcut has quit [Remote host closed the connection]
<clever> Ralith: .out depends on .dev, and .dev depends on .out
<clever> Ralith: and a path cant exist until its deps exist, so its imposible for nix to download such a loop
<Ralith> would it have killed whoever wrote that to print *where* the dependencies were found >:|
<clever> Ralith: yes, because nix doesnt know
<clever> Ralith: nix is serializing the entire dir into a std::string containing a nar, and then basically doing a grep against that whole string
<clever> so it doesnt know which file is to blame
<Ralith> it could perfectly well maintain an index to find out
<clever> but nix also leaves those 2 paths in /nix/store/ (as invalid paths) so you can just grep -r both yourself
___laika has joined #nixos
<jonreeve[m]> This is a very newbie question, but if I have a nix expression like the one here: https://nixos.org/nix/manual/#ex-hello-nix how can I build that?
<clever> ,callPackage jonreeve[m]
<{^_^}> jonreeve[m]: If a Nix file foo.nix starts with something like `{ stdenv, cmake }:`, you can build it with `nix-build -E '(import <nixpkgs> {}).callPackage ./foo.nix {}'`
<jonreeve[m]> <{^_^} "jonreeve: If a Nix file foo.nix "> Great, thanks. Is there a way to put that in the .nix file itself?
<clever> jonreeve[m]: everything inside the quotes for -E can also just be put into a nix file
___laika has quit [Ping timeout: 258 seconds]
<jonreeve[m]> clever: Hm I must be doing something wrong: https://gist.github.com/JonathanReeve/0a1818713e98a3b63e128ce7b8a0c342
<clever> jonreeve[m]: a seperate nix file, and no ; at the end
<clever> jonreeve[m]: or change it around, with import <nixpkgs> {}; stdenv.mkDerivation { ....
___laika has joined #nixos
wildtrees has quit [Quit: Leaving]
Ariakenom has quit [Quit: Leaving]
hamishmack has joined #nixos
anton_ has quit [Read error: Connection reset by peer]
anton_ has joined #nixos
<{^_^}> [nixpkgs] @arianvp opened pull request #64405 → nixos/systemd-confinement: Fix DynamicUser support → https://git.io/fjitZ
<jonreeve[m]> <clever "jonreeve: or change it around, w"> I'm almost there, I think. https://gist.github.com/JonathanReeve/0a1818713e98a3b63e128ce7b8a0c342 But can you not put the contents of builder.sh inside the nix file?
___laika has quit [Ping timeout: 272 seconds]
<clever> jonreeve[m]: 99% of the time, you dont want to change builder.sh, the default one works fine
orivej has joined #nixos
<jonreeve[m]> clever: Ah. I guess what I'm really trying to do is to download some metadata files, and unzip them, and then have those files available on the system somewhere
stepcut has joined #nixos
<jonreeve[m]> Then I can refer to those files with another nix package, I think
pie__ has joined #nixos
<clever> jonreeve[m]: the default unpackPhase will untar it for you, so just src src= on something and you can then use it
<clever> jonreeve[m]: and the poorly named fetchzip will both download and untar for you, you could replace that entire thing with just a fetchzip call
<jonreeve[m]> clever: Oh sweet.
stepcut has quit [Ping timeout: 248 seconds]
day|flip has joined #nixos
m0rphism has quit [Ping timeout: 258 seconds]
<jonreeve[m]> clever: That seems to work. But then it complains about there being no makefile.
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/fjitB
<clever> jonreeve[m]: what are you trying to do with the files after you unpack them?
<jonreeve[m]> clever: I'm trying to write a nix setup to load these files into Fuseki (a triplestore database), and then serve them using Fuseki
<jonreeve[m]> Maybe I'm going about it the wrong way
<clever> jonreeve[m]: you probably want to store the result of fetchzip in a variable in a let block `let foo = fetchzip {...}; in ..`, then create a systemd service to load the data, `script = ''do-something-with ${foo}'';`
<jonreeve[m]> Aha, cool. I'll try that. Thanks!
hamishmack has quit [Ping timeout: 245 seconds]
day|flip has quit [Remote host closed the connection]
johnnyfive has quit [Quit: I quit now.]
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to master: https://git.io/fjita
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63979 → accountsservice: cleanup → https://git.io/fjKt1
domogled has quit [Ping timeout: 272 seconds]
shabius_ has joined #nixos
<arcnmx> given a .drvPath is there a builtin or some way to parse that in a nix expression? something kind of like nix-store --query but without needing to call out to a process
<clever> arcnmx: run import on the drv
shabius has quit [Ping timeout: 252 seconds]
<arcnmx> oh huh yeah that's exactly what I needed, thanks!
<gchristensen> clever: wat? what does importing a drv do?
<arcnmx> apparently gives you a derivation
<gchristensen> I shouldn't have asked
<gchristensen> I didn't want to know!
<arcnmx> :p
<{^_^}> [nixpkgs] @edef1c pushed to master « nixos/networking: filter out empty entries »: https://git.io/fjito
johnnyfive has joined #nixos
day|flip has joined #nixos
johnnyfive has quit [Client Quit]
ris has quit [Ping timeout: 252 seconds]
johnnyfive has joined #nixos
<{^_^}> [nixpkgs] @dasJ opened pull request #64407 → nixos/icingaweb: Fix module path; Add test → https://git.io/fjit5
is_null has quit [Quit: Lost terminal]
superbaloo has joined #nixos
<gyroninja___> ryantm: infinisil I see you are listed as maintainers of the minecraft package. I currently have nix expressions for the current launcher and for a minecraft pe launcher. Would you guys be interested in having the nix expressions for those and potentially upstream them?
amakthel has joined #nixos
<infinisil> gyroninja___: pe = pocket edition?
<gyroninja___> Yes, it runs the x86 build of pocket edition
<gyroninja___> well the bedrock version for andriod x86
<infinisil> Huh, no idea why anybody would want that on NixOS but if it works
<gyroninja___> Well you can't get the W10 version to run
Okinan has joined #nixos
<gyroninja___> so this is the next best option
<infinisil> gyroninja___: And by the current launcher you mean the new one, not the old java-based one?
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to master: https://git.io/fjiqJ
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63824 → nixos/zoneminder: Fix package and service build → https://git.io/fjrFo
<gyroninja___> correct
<gyroninja___> the electron(?) based one
zacts has joined #nixos
<infinisil> I thought it was something C++, but not sure
xcthulhu has quit [Quit: xcthulhu]
<infinisil> Well you must know since you packaged it :)
<gyroninja___> yeah I'm not sure
<infinisil> So yeah I wouldn't mind having those in nixpkgs
<gyroninja___> okay I'll upload the 4 packages in a tarball and send you a link
<gyroninja___> note that they do need some work to be done, but they do actually build and run the game (at least the last time I tested it)
mexisme_ has quit [Ping timeout: 252 seconds]
<gyroninja___> like the download link for minecraft isn't a download link which isn't specific to the version of the launcher so it will break when they upgrade it on their end
jluttine has joined #nixos
mexisme_ has joined #nixos
xcthulhu has joined #nixos
<gyroninja___> infinisil: https://0x0.st/zLAg.gz minecraft: Java Edition, minecraft-pe: A game launcher for PE (this handles stuff like logging in and downloading the apk for what version you want), mcpelauncher: This is what's responsible for actually running the game, msa: A daemon for logging into microsoft accounts (you are going to need this for multiplayer)
<gyroninja___> Technically you can also make a package for a server for the pe / bedrock version, but I had no need for it
Netsu44 has joined #nixos
pie__ has quit [Read error: Connection reset by peer]
pie__ has joined #nixos
Netsu44 has quit [Remote host closed the connection]
iqubic has quit [Ping timeout: 252 seconds]
mexisme_ has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #64403 → jellyfin: 10.3.5 -> 10.3.6 → https://git.io/fjiLk
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjiqW
xkapastel has quit [Quit: Connection closed for inactivity]
iyzsong has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #64377 → kbfs: 2.11.0 -> 4.1.0 → https://git.io/fj6h5
<{^_^}> [nixpkgs] @kalbasit pushed 3 commits to master: https://git.io/fjiq8
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/799a080ba1b (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
acarrico has quit [Ping timeout: 246 seconds]
stepcut has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/4a405d89950 (from 71 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
ilmu has quit [Ping timeout: 252 seconds]
ilmu has joined #nixos
thc202 has quit [Ping timeout: 252 seconds]
aexoxea has joined #nixos
<switchy> can I make nix-shell find derivations in my local ~/nixpkgs? something like `nix-env -f.'
<clever> switchy: nix-shell -I nixpkgs=~/nixpkgs
leothrix has quit [Quit: ZNC 1.7.3 - https://znc.in]
zacts has quit [Quit: WeeChat 2.4]
r0bby has quit [Quit: Updating details, brb]
<switchy> aha! nixpkgs=... was the missing link. thanks clever
r0bby has joined #nixos
<clever> switchy: its mostly like gcc -I
<clever> so -I /foo will make it look for <nixpkgs> at /foo/nixpkgs
<switchy> ah, so `-I ~' would do the same thing?
<switchy> (seems to work, anyway)
mexisme_ has joined #nixos
<clever> switchy: yep
mexisme_ has quit [Read error: Connection reset by peer]
gyroninja___ has quit [Ping timeout: 258 seconds]
gyroninja___ has joined #nixos
zacts has joined #nixos
codedmart has quit [Ping timeout: 244 seconds]
grenade has quit [Ping timeout: 264 seconds]
codedmart has joined #nixos
sindrip has quit [Remote host closed the connection]
grenade has joined #nixos
amakthel has quit [Ping timeout: 252 seconds]
is_null has joined #nixos
rvenyze has quit [Ping timeout: 272 seconds]
marcusr has quit [Ping timeout: 244 seconds]
rvenyze has joined #nixos
marcusr has joined #nixos
marcusr has joined #nixos
marcusr has quit [Changing host]
zacts has quit [Quit: WeeChat 2.4]
stepcut has quit [Remote host closed the connection]
drewr has joined #nixos
Riley has joined #nixos
phreedom_ has quit [Quit: No Ping reply in 180 seconds.]
_e has quit [Quit: WeeChat 2.4]
<Riley> Hello all! I'm trying to install NixOS on my laptop but facing a bit of an issue... it's a model that only has an nvme drive (which comes up as /dev/nvme0n1) but the installer usb seems to be looking for /dev/sda
_e has joined #nixos
cantstanya has quit [Ping timeout: 260 seconds]
<Riley> I just get "open failed: no medium found" a bunch, then a prompt to reboot or try again
phreedom has joined #nixos
<day|flip> are you mounting in /mnt?
<Riley> Mounting? This is during the stage 1 initialization, at this point there's not even a command line
cantstanya has joined #nixos
_e has quit [Client Quit]
_e has joined #nixos
stepcut has joined #nixos
<day|flip> ok your installing the iso to your usb?
<Riley> Yep, just installed it in dd mode... I tried with the minimal and then the graphical iso and got the same results
<day|flip> ok. so your trying to make your partition?
<Riley> No, the iso won't boot
<Riley> I haven't gotten to partitioning yet
<day|flip> uefi laptop? if you try turning off fast boot and maybe secure boot?
<Riley> Both done
<day|flip> s/if/have
<Riley> The issue is it's trying to use /dev/sda when it needs to be using /dev/nvme0n1
<lordcirth__> Riley, the installer USB doesn't need to find your disk in stage 1, it needs to find itself
<Riley> Oh really? In that case I think the installer drive is mounting on /dev/sdb
<Riley> It's always been that way for some reason, I've never had a /dev/sda on this computer
<Riley> Is there some kind of kernel parameter I can use to override the drive it looks for?
<lordcirth__> Riley, root=
<Riley> That makes sense! I'll have to log out to go try it but hopefully that will work
<Riley> Thanks for the help :)
<lordcirth__> np
Riley has left #nixos [#nixos]
Riley has joined #nixos
<Riley> lordcirth__ Trying that gave me a kernel panic :|
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/799a080ba1b (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
deech has joined #nixos
<lordcirth__> Riley, that was with 'root=/dev/sda'?
<Riley> root=/dev/sda or sda1 gave me the same results as before, root=/dev/sdb1 panicked
ddellacosta has quit [Ping timeout: 258 seconds]
<day|flip> Riley: question. do you used dd bs= option?
<lordcirth__> why would that matter, except for copy speed?
stepcut has quit [Remote host closed the connection]
<Riley> I think I used 4M but I'm not sure how that would impact anything
<day|flip> 4M is still find
shabius has joined #nixos
stepcut has joined #nixos
<day|flip> lordcirth__: im thinking like a old fard back when you need to go slow on both cd and dvd. not taking about usb.
<lordcirth__> Ah :)
shabius_ has quit [Ping timeout: 245 seconds]
<Riley> Does the installer have a debug terminal of some kind? That would make debugging easier
<Riley> Otherwise I'm not sure how I'd ever figure out what's going on here
<lordcirth__> Well, I know there's a kernel boot command to stop at the initramfs shell... I just can't remember what it is
stepcut has quit [Ping timeout: 244 seconds]
<day|flip> you could try booting with nomodeset
<Riley> That doesn't have anything to do with the problem .-.
dansho has joined #nixos
<siraben> How do folks with iOS devices manage them with NixOS?
<siraben> Run iTunes via Wine?
vxzero[m] has joined #nixos
Myhlamaeus1 has quit [Remote host closed the connection]
<Riley> A friend suggested the init=/bin/sh flag, I'll try that
dansho has quit [Ping timeout: 272 seconds]
Riley has left #nixos [#nixos]
Eru[m] is now known as Shem[m]
deech has quit [Ping timeout: 248 seconds]
leothrix has joined #nixos
aexoxea has quit [Quit: Goodbye!]
Supersonic has quit [Ping timeout: 252 seconds]
Supersonic has joined #nixos
<yunratobe> is there a way to force nixos to use source instead binary package? just curious tho
<clever> yunratobe: why do you want to force it to use src?
<yunratobe> clever: nah, I'm just curious
<clever> yunratobe: most of the time, its not nessesary, since the builds are so pure
<clever> yunratobe: and if you do change the source with an override, nix will automatically know it needs to be rebuilt
mexisme_ has joined #nixos
___laika has joined #nixos
mexisme_ has quit [Ping timeout: 252 seconds]
___laika has quit [Ping timeout: 244 seconds]
<DigitalKiwi> siraben: i keep a different os around for ios >.>
<DigitalKiwi> sometimes use the icloud website, and documents by readdle is useful. i use it to import books and other files
<DigitalKiwi> (it has sftp or slt )
<siraben> DigitalKiwi: What about backup and such?
<DigitalKiwi> icloud
<DigitalKiwi> (itunes might work under wine idk i've never tried)
<clever> i would expect the usb drivers to not work under wine
dansho has joined #nixos
madhukar93 has joined #nixos
<madhukar93> Hi. How do I get bash completions to work with zsh? There is a compatibility layer built into zsh, but it doesn't work out of the box in nixos
init_6 has joined #nixos
b has quit [Ping timeout: 246 seconds]
pie___ has joined #nixos
tmaekawa has joined #nixos
pie___ has quit [Remote host closed the connection]
pie___ has joined #nixos
xcthulhu has quit [Quit: xcthulhu]
xcthulhu has joined #nixos
pie__ has quit [Ping timeout: 252 seconds]
xcthulhu has quit [Client Quit]
xcthulhu has joined #nixos
xcthulhu has quit [Client Quit]
xcthulhu has joined #nixos
xcthulhu has quit [Client Quit]
xcthulhu has joined #nixos
xcthulhu has quit [Client Quit]
xcthulhu has joined #nixos
xcthulhu has quit [Client Quit]
<{^_^}> [nixpkgs] @scubed2 opened pull request #64408 → nxengine: init at 1.0.0.6 → https://git.io/fjimP
palo1 has joined #nixos
<hyper_ch> why not just use bash?
palo has quit [Ping timeout: 245 seconds]
palo1 is now known as palo
<infinisil> hyper_ch: Because bash isn't zsh?
<hyper_ch> infinisil: but that begs the question why then use bash completion :)
<hyper_ch> infinisil: good that you're here :) now you can look at my super important PR :)
<infinisil> I'd assume he'd want to have completions for packages that only provides ones for bash
<infinisil> It's a valid question, and saying "just use bash" doesn't help at all
<day|flip> bash is ok for most user that don't care to move or try something different for the heck of it
<hyper_ch> :)
<day|flip> zsh is good once you find a good script for it. like 'oh my zsh'
<day|flip> but for my taste. i like using mksh
<infinisil> Aw, was hoping mksh would be some shell you could compile into an executable with all the config you need
<infinisil> I want such a thing to exist ^^
<infinisil> I want 0 startup time for my shell
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/16aa35572b6 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<day|flip> idk. i just have simple .mkshrc that im happy with
init_6 has quit [Ping timeout: 248 seconds]
<day|flip> that and your a super freak on need to used as little ram as you can.
<day|flip> my simple .mkshrc https://pastebin.com/h66MTA3i
Riley has joined #nixos
<Riley> lordcirth__ success! Turns out I was at fault all along - side effects of how I was starting NixOS over refind
recj has joined #nixos
orivej has quit [Ping timeout: 245 seconds]
<Riley> The kernel parameters weren't even necessary once I bypassed refind and used the included boot menu
day|flip has quit [Remote host closed the connection]
Diagon has joined #nixos
<betaboon> Riley: you're using nixos with refind ?
<bsima> is the nix manual available in the terminal?
<bsima> theres 'nixos-help', but thats the nixos manual, not the nix manual
<bsima> i guess i'll just use w3m
<betaboon> infinisil: regarding https://github.com/NixOS/nixpkgs/pull/58121 should i fix the assertion in systemd-boot as well? (yeah i know it's an old PR, but i didnt find the time till today :( )
<{^_^}> #58121 (by betaboon, 15 weeks ago, open): nixos/refind: init
Drakonis has quit [Quit: WeeChat 2.4]
<Riley> betaboon my existing install was using refind, so I was trying to launch the bzimage from there
madhukar93 has quit [Ping timeout: 260 seconds]
<Riley> I've never tried to use refind with NixOS directly
<betaboon> Riley: are you using a dual-boot? I'm just asking because of the afore-mentioned PR, which i would be glad if someone would be able to test it :)
Supersonic has quit [*.net *.split]
r0bby has quit [*.net *.split]
fusion809 has quit [*.net *.split]
emptyflask has quit [*.net *.split]
yunratobe has quit [*.net *.split]
Okinan has quit [*.net *.split]
dftxbs3e has quit [*.net *.split]
saykhan has quit [*.net *.split]
zimbatm has quit [*.net *.split]
Lisanna[m] has quit [*.net *.split]
witchof0x20 has quit [*.net *.split]
mingc has quit [*.net *.split]
meck has quit [*.net *.split]
Cale has quit [*.net *.split]
jeregrine has quit [*.net *.split]
Dagger has quit [*.net *.split]
rajivr___ has quit [*.net *.split]
jkachmar has quit [*.net *.split]
Yakulu[m] has quit [*.net *.split]
Ashy has quit [*.net *.split]
shlevy has quit [*.net *.split]
TaoHansen[m] has quit [*.net *.split]
kjuvi[m] has quit [*.net *.split]
kimboking[m] has quit [*.net *.split]
gudea[m] has quit [*.net *.split]
Josh[m]1 has quit [*.net *.split]
balsoft[m] has quit [*.net *.split]
fasd has quit [*.net *.split]
AntonSchirg[m] has quit [*.net *.split]
Woland[m] has quit [*.net *.split]
jasonk000[m] has quit [*.net *.split]
matthewbauer has quit [*.net *.split]
das-g[m] has quit [*.net *.split]
icetan has quit [*.net *.split]
alexoundos[m] has quit [*.net *.split]
Obscurity[m] has quit [*.net *.split]
haslersn[m] has quit [*.net *.split]
uvnikita[m] has quit [*.net *.split]
alj[m] has quit [*.net *.split]
saikrishi1109[m] has quit [*.net *.split]
derangednerd[m] has quit [*.net *.split]
craigevil[m] has quit [*.net *.split]
DanP[m] has quit [*.net *.split]
TravisRt2botio[m has quit [*.net *.split]
bbigras has quit [*.net *.split]
schmittlauch[m] has quit [*.net *.split]
worldofpeace has quit [*.net *.split]
nilsirl[m] has quit [*.net *.split]
atopuzov[m] has quit [*.net *.split]
rdes[m] has quit [*.net *.split]
alienpirate5 has quit [*.net *.split]
Dandellion[m] has quit [*.net *.split]
bennofs[m] has quit [*.net *.split]
simbergm has quit [*.net *.split]
domenkozar[m] has quit [*.net *.split]
colemickens has quit [*.net *.split]
nwspk has quit [*.net *.split]
hexa- has quit [*.net *.split]
AstroBadger has quit [*.net *.split]
sorear has quit [*.net *.split]
codezero has quit [*.net *.split]
lpsmith has quit [*.net *.split]
grumble has quit [*.net *.split]
mq32 has quit [*.net *.split]
rj1 has quit [*.net *.split]
nh2 has quit [*.net *.split]
akaWolf has quit [*.net *.split]
Fulgen has quit [*.net *.split]
srhb has quit [*.net *.split]
jfroche has quit [*.net *.split]
makefu has quit [*.net *.split]
shad has quit [*.net *.split]
srhb has joined #nixos
<Riley> betaboon no dual boot on this machine, but I am trying it on my desktop... I might be able to help out
Riley has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mmahut opened pull request #64409 → soundtouch: 2.0.0 -> 2.1.2 → https://git.io/fjimx
Riley has joined #nixos
<{^_^}> [nixpkgs] @mmahut closed pull request #64354 → soundtouch: CVE-2018-1000223 CVE-2018-14044 CVE-2018-14045 → https://git.io/fj6db
<Riley> betaboon sorry, did my last message send?
<betaboon> Riley: yeah, that would be nice :)
ericnoan has quit [Ping timeout: 270 seconds]
<Riley> I'm not a frequent IRC person, this is me using some weird web interface so it's a bit strange
<Riley> I think I lost history, could you link the issue again
<Riley> No promises on time though, I'm missing some important things like a monitor atm
martyet-o has quit [Ping timeout: 248 seconds]
ericnoan has joined #nixos
<{^_^}> #58121 (by betaboon, 15 weeks ago, open): nixos/refind: init
pie___ has quit [*.net *.split]
alp has quit [*.net *.split]
anton_ has quit [*.net *.split]
tokudan has quit [*.net *.split]
ericsagnes has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
stigo has quit [*.net *.split]
qyliss^work has quit [*.net *.split]
AluisioASG has quit [*.net *.split]
mthst has quit [*.net *.split]
rizary_ has quit [*.net *.split]
lordcirth__ has quit [*.net *.split]
lordcirth has quit [*.net *.split]
bgamari has quit [*.net *.split]
datakurre has quit [*.net *.split]
tboston has quit [*.net *.split]
joepie91[m] has quit [*.net *.split]
b42 has quit [*.net *.split]
hexo has quit [*.net *.split]
EB[m] has quit [*.net *.split]
amorosa1984[m] has quit [*.net *.split]
grahamc[m] has quit [*.net *.split]
jonreeve[m] has quit [*.net *.split]
bkchr has quit [*.net *.split]
hackeryarn[m] has quit [*.net *.split]
MiloIgnis[m] has quit [*.net *.split]
kuznero[m] has quit [*.net *.split]
bee[m]1 has quit [*.net *.split]
submoo[m] has quit [*.net *.split]
ArtemVorotnikov[ has quit [*.net *.split]
sonercirit[m] has quit [*.net *.split]
slabity has quit [*.net *.split]
luftmensch[m] has quit [*.net *.split]
am3on[m] has quit [*.net *.split]
manveru[m] has quit [*.net *.split]
rihardsk[m] has quit [*.net *.split]
abbafei[m] has quit [*.net *.split]
olejorgenb[m] has quit [*.net *.split]
Pneumaticat has quit [*.net *.split]
sphalerit has quit [*.net *.split]
bachp has quit [*.net *.split]
laas has quit [*.net *.split]
dtz has quit [*.net *.split]
bendlas has quit [*.net *.split]
nh2[m] has quit [*.net *.split]
timokau[m] has quit [*.net *.split]
musicmatze has quit [*.net *.split]
simpson has quit [*.net *.split]
akapav has quit [*.net *.split]
xacktm has quit [*.net *.split]
dukedave has quit [*.net *.split]
ptotter[m] has quit [*.net *.split]
georgyo has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
Khetzal has quit [*.net *.split]
eeva has quit [*.net *.split]
aristid has quit [*.net *.split]
scott has quit [*.net *.split]
glowpelt has quit [*.net *.split]
zgrep has quit [*.net *.split]
nimblepoultry has quit [*.net *.split]
yorick has quit [*.net *.split]
c00w has quit [*.net *.split]
coderobe has quit [*.net *.split]
stramble-M has quit [*.net *.split]
drvirgilio_ has quit [*.net *.split]
Luker has quit [*.net *.split]
chaker has quit [*.net *.split]
otwieracz has quit [*.net *.split]
mk_modrzew has quit [*.net *.split]
globin has quit [*.net *.split]
myme has quit [*.net *.split]
martyet-o has joined #nixos
hamishmack has joined #nixos
silver_hook has quit [Ping timeout: 248 seconds]
b42 has joined #nixos
alp has joined #nixos
anton_ has joined #nixos
pie___ has joined #nixos
datakurre has joined #nixos
lordcirth__ has joined #nixos
tboston has joined #nixos
AluisioASG has joined #nixos
mthst has joined #nixos
stigo has joined #nixos
lordcirth has joined #nixos
bgamari has joined #nixos
qyliss^work has joined #nixos
tokudan has joined #nixos
rizary_ has joined #nixos
lopsided98 has joined #nixos
ericsagnes has joined #nixos
submoo[m] has joined #nixos
amorosa1984[m] has joined #nixos
musicmatze has joined #nixos
grahamc[m] has joined #nixos
ArtemVorotnikov[ has joined #nixos
hackeryarn[m] has joined #nixos
EB[m] has joined #nixos
bachp has joined #nixos
rihardsk[m] has joined #nixos
slabity has joined #nixos
jonreeve[m] has joined #nixos
luftmensch[m] has joined #nixos
akapav has joined #nixos
bendlas has joined #nixos
sphalerit has joined #nixos
timokau[m] has joined #nixos
MiloIgnis[m] has joined #nixos
bkchr has joined #nixos
ptotter[m] has joined #nixos
manveru[m] has joined #nixos
Pneumaticat has joined #nixos
sonercirit[m] has joined #nixos
xacktm has joined #nixos
yorick has joined #nixos
bee[m]1 has joined #nixos
kuznero[m] has joined #nixos
am3on[m] has joined #nixos
dtz has joined #nixos
abbafei[m] has joined #nixos
joepie91[m] has joined #nixos
olejorgenb[m] has joined #nixos
nh2[m] has joined #nixos
laas has joined #nixos
hexo has joined #nixos
dukedave has joined #nixos
eeva has joined #nixos
simpson has joined #nixos
Khetzal has joined #nixos
thoughtpolice has joined #nixos
c00w has joined #nixos
georgyo has joined #nixos
scott has joined #nixos
glowpelt has joined #nixos
zgrep has joined #nixos
nimblepoultry has joined #nixos
drvirgilio_ has joined #nixos
coderobe has joined #nixos
mk_modrzew has joined #nixos
stramble-M has joined #nixos
myme has joined #nixos
chaker has joined #nixos
globin has joined #nixos
aristid has joined #nixos
otwieracz has joined #nixos
Luker has joined #nixos
j4m3s__ has quit [Ping timeout: 244 seconds]
r0bby has joined #nixos
Supersonic has joined #nixos
emptyflask has joined #nixos
Dagger has joined #nixos
dftxbs3e has joined #nixos
saykhan has joined #nixos
Lisanna[m] has joined #nixos
Okinan has joined #nixos
jkachmar has joined #nixos
zimbatm has joined #nixos
yunratobe has joined #nixos
rajivr___ has joined #nixos
jasonk000[m] has joined #nixos
Cale has joined #nixos
witchof0x20 has joined #nixos
Josh[m]1 has joined #nixos
shlevy has joined #nixos
meck has joined #nixos
Yakulu[m] has joined #nixos
jeregrine has joined #nixos
mingc has joined #nixos
nilsirl[m] has joined #nixos
TaoHansen[m] has joined #nixos
kimboking[m] has joined #nixos
Obscurity[m] has joined #nixos
Ashy has joined #nixos
Woland[m] has joined #nixos
schmittlauch[m] has joined #nixos
haslersn[m] has joined #nixos
balsoft[m] has joined #nixos
simbergm has joined #nixos
rdes[m] has joined #nixos
AntonSchirg[m] has joined #nixos
craigevil[m] has joined #nixos
gudea[m] has joined #nixos
icetan has joined #nixos
worldofpeace has joined #nixos
derangednerd[m] has joined #nixos
fasd has joined #nixos
uvnikita[m] has joined #nixos
atopuzov[m] has joined #nixos
alexoundos[m] has joined #nixos
kjuvi[m] has joined #nixos
domenkozar[m] has joined #nixos
das-g[m] has joined #nixos
alj[m] has joined #nixos
alienpirate5 has joined #nixos
saikrishi1109[m] has joined #nixos
Dandellion[m] has joined #nixos
DanP[m] has joined #nixos
TravisRt2botio[m has joined #nixos
AstroBadger has joined #nixos
sorear has joined #nixos
colemickens has joined #nixos
lpsmith has joined #nixos
matthewbauer has joined #nixos
bbigras has joined #nixos
hexa- has joined #nixos
codezero has joined #nixos
bennofs[m] has joined #nixos
nh2 has joined #nixos
jfroche has joined #nixos
nwspk has joined #nixos
grumble has joined #nixos
mq32 has joined #nixos
rj1 has joined #nixos
shad has joined #nixos
makefu has joined #nixos
Fulgen has joined #nixos
akaWolf has joined #nixos
silver_hook has joined #nixos
rj1 has quit [Max SendQ exceeded]
rj1 has joined #nixos
rj1 has joined #nixos
rj1 has quit [Changing host]
<typetetris> Which nix package contains the ghc user guide ?
v88m has quit [Ping timeout: 248 seconds]
v88m has joined #nixos
kgz has quit [Ping timeout: 246 seconds]
kgz has joined #nixos
andreas303 has quit [Remote host closed the connection]
knupfer has joined #nixos
<jonreeve[m]> Has anyone here managed to get Virtuoso working? It looks like there are options here: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/virtuoso.nix but then trying to access that port just gives a 404.
Riley has quit [Remote host closed the connection]
andreas303 has joined #nixos
linarcx has joined #nixos
noudle has joined #nixos
<infinisil> betaboon: Yeah I'd fix the assertion there too in a separate commit
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/799a080ba1b (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
<betaboon> infinisil: do the nixos-boot-tests cover this ? oO
domogled has joined #nixos
knupfer has quit [Ping timeout: 252 seconds]
tmaekawa has quit [Quit: tmaekawa]
Chiliparrot has joined #nixos
jedai has quit [Ping timeout: 258 seconds]
alex`` has joined #nixos
domogled has quit [Quit: domogled]
wfranzini has joined #nixos
mniip has quit [Quit: This page is intentionally left blank.]
anon has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
anon is now known as Guest34945
mniip has joined #nixos
domogled has joined #nixos
hax404 has quit [Ping timeout: 258 seconds]
alp has quit [Ping timeout: 252 seconds]
domogled has quit [Client Quit]
<{^_^}> [nixpkgs] @LnL7 merged pull request #64060 → pythonPackages.python-language-server: fix python2.7 build → https://git.io/fjKEJ
<{^_^}> [nixpkgs] @LnL7 pushed 2 commits to master: https://git.io/fjiYu
rauno has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #64378 → travis: 1.8.9 -> 1.8.10 → https://git.io/fj6jG
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjiYo
Miyu-chan has joined #nixos
Miyu-chan is now known as Guest14751
gagbo has joined #nixos
m0rphism has joined #nixos
lambda-11235 has quit [Quit: Bye]
Guest14751 is now known as Miyu-chan
Miyu-chan has joined #nixos
Miyu-chan has quit [Changing host]
marius851000[m] has quit [Remote host closed the connection]
corpix[m] has quit [Remote host closed the connection]
lel[m] has quit [Remote host closed the connection]
Sabbat[m] has quit [Remote host closed the connection]
byzoni[m] has quit [Read error: Connection reset by peer]
altavista[m] has quit [Write error: Connection reset by peer]
retrry[m] has quit [Read error: Connection reset by peer]
Brio[m] has quit [Write error: Connection reset by peer]
jschievink[m] has quit [Read error: Connection reset by peer]
li_matrix has quit [Write error: Connection reset by peer]
aquarial has quit [Remote host closed the connection]
flip[m] has quit [Remote host closed the connection]
Noughtmare[m] has quit [Write error: Connection reset by peer]
iceychris[m] has quit [Read error: Connection reset by peer]
joepie91[m] has quit [Remote host closed the connection]
Smith[m] has quit [Write error: Connection reset by peer]
aterius has quit [Write error: Connection reset by peer]
rizary has quit [Read error: Connection reset by peer]
badmutex[m] has quit [Remote host closed the connection]
bohan[m] has quit [Write error: Connection reset by peer]
cgm[m] has quit [Write error: Connection reset by peer]
otini has quit [Write error: Connection reset by peer]
makaveli[m] has quit [Write error: Connection reset by peer]
arthur[m]1 has quit [Write error: Connection reset by peer]
ayyjayess[m] has quit [Write error: Connection reset by peer]
is0x3F has quit [Write error: Connection reset by peer]
ninjatrappeur[m] has quit [Write error: Connection reset by peer]
freddie_freeload has quit [Write error: Connection reset by peer]
sylvie[m] has quit [Write error: Connection reset by peer]
bpye has quit [Write error: Connection reset by peer]
rycee has quit [Write error: Connection reset by peer]
timclassic has quit [Write error: Connection reset by peer]
KarelWDingeldey[ has quit [Write error: Connection reset by peer]
bkl[m] has quit [Write error: Connection reset by peer]
tomberekn[m] has quit [Write error: Connection reset by peer]
seese[m] has quit [Write error: Connection reset by peer]
bdesham[m] has quit [Write error: Connection reset by peer]
frederic_chopwn[ has quit [Write error: Connection reset by peer]
leons has quit [Write error: Connection reset by peer]
laas has quit [Remote host closed the connection]
YanMinari[c][m] has quit [Write error: Connection reset by peer]
sphalerit has quit [Remote host closed the connection]
bendlas has quit [Write error: Connection reset by peer]
nh2[m] has quit [Remote host closed the connection]
hackeryarn[m] has quit [Write error: Connection reset by peer]
luftmensch[m] has quit [Read error: Connection reset by peer]
timokau[m] has quit [Read error: Connection reset by peer]
am3on[m] has quit [Write error: Connection reset by peer]
slabity has quit [Read error: Connection reset by peer]
clacke[m] has quit [Write error: Connection reset by peer]
pinage404[m] has quit [Write error: Connection reset by peer]
Moredread[m] has quit [Remote host closed the connection]
Gopal[m] has quit [Remote host closed the connection]
v0id72[m] has quit [Read error: Connection reset by peer]
escaP[m] has quit [Read error: Connection reset by peer]
Torus[m] has quit [Write error: Connection reset by peer]
wak-work has quit [Write error: Connection reset by peer]
weebull[m] has quit [Remote host closed the connection]
thequux[m] has quit [Read error: Connection reset by peer]
contrun[m] has quit [Read error: Connection reset by peer]
thefloweringash has quit [Read error: Connection reset by peer]
jak[m] has quit [Write error: Connection reset by peer]
alexarice[m] has quit [Read error: Connection reset by peer]
cornu has quit [Read error: Connection reset by peer]
ndarwincorn has quit [Read error: Connection reset by peer]
harkenedraven has quit [Write error: Connection reset by peer]
M0ddba11[m] has quit [Write error: Connection reset by peer]
Ralith has quit [Write error: Connection reset by peer]
MarkOtaris has quit [Write error: Connection reset by peer]
peterhoeg[m] has quit [Write error: Connection reset by peer]
BinkyTheClown has quit [Write error: Connection reset by peer]
hiroshi[m] has quit [Write error: Connection reset by peer]
malteof[m] has quit [Write error: Connection reset by peer]
MerlinGttlinger[ has quit [Write error: Connection reset by peer]
pingveno[m] has quit [Write error: Connection reset by peer]
mariusz-kowalski has quit [Write error: Connection reset by peer]
kaychaks[m] has quit [Read error: Connection reset by peer]
MichalLaskus[m] has quit [Read error: Connection reset by peer]
GerdFlaig[m] has quit [Remote host closed the connection]
blitzclone[m] has quit [Read error: Connection reset by peer]
NickHu has quit [Write error: Connection reset by peer]
HappyEnt[m] has quit [Write error: Connection reset by peer]
spacekitteh[m] has quit [Write error: Connection reset by peer]
ejpcmac has quit [Read error: Connection reset by peer]
wuji[m] has quit [Remote host closed the connection]
jsquared71[m] has quit [Remote host closed the connection]
kevincox[m] has quit [Remote host closed the connection]
ma27[m] has quit [Remote host closed the connection]
nyanloutre[m] has quit [Remote host closed the connection]
IslandUsurper has quit [Remote host closed the connection]
roadt[m] has quit [Write error: Connection reset by peer]
Vskilet has quit [Remote host closed the connection]
yangm97 has quit [Read error: Connection reset by peer]
momack2[m] has quit [Write error: Connection reset by peer]
tet[m] has quit [Write error: Connection reset by peer]
zurdo has quit [Read error: Connection reset by peer]
Nover[m] has quit [Remote host closed the connection]
smolboye[m] has quit [Read error: Connection reset by peer]
Dan[m]6 has quit [Read error: Connection reset by peer]
Ericson2314 has quit [Write error: Connection reset by peer]
Florian[m] has quit [Write error: Connection reset by peer]
nocent has quit [Write error: Connection reset by peer]
attente[m] has quit [Read error: Connection reset by peer]
Thinkofname[m] has quit [Write error: Connection reset by peer]
Notkea[m] has quit [Read error: Connection reset by peer]
alan[m] has quit [Read error: Connection reset by peer]
Lev[m] has quit [Read error: Connection reset by peer]
greenerworld[m] has quit [Read error: Connection reset by peer]
hbunke[m] has quit [Read error: Connection reset by peer]
tokudan[m] has quit [Read error: Connection reset by peer]
zik[m] has quit [Read error: Connection reset by peer]
EuAndreh[m] has quit [Write error: Connection reset by peer]
Minijackson[m] has quit [Write error: Connection reset by peer]
Lisanna[m] has quit [Remote host closed the connection]
Yakulu[m] has quit [Remote host closed the connection]
TaoHansen[m] has quit [Write error: Connection reset by peer]
balsoft[m] has quit [Write error: Connection reset by peer]
jasonk000[m] has quit [Write error: Connection reset by peer]
rdes[m] has quit [Write error: Connection reset by peer]
icetan has quit [Write error: Connection reset by peer]
alexoundos[m] has quit [Remote host closed the connection]
craigevil[m] has quit [Write error: Connection reset by peer]
schmittlauch[m] has quit [Write error: Connection reset by peer]
haslersn[m] has quit [Write error: Connection reset by peer]
domenkozar[m] has quit [Write error: Connection reset by peer]
gudea[m] has quit [Remote host closed the connection]
TravisRt2botio[m has quit [Remote host closed the connection]
simbergm has quit [Remote host closed the connection]
worldofpeace has quit [Remote host closed the connection]
colemickens has quit [Remote host closed the connection]
kimboking[m] has quit [Remote host closed the connection]
uvnikita[m] has quit [Write error: Connection reset by peer]
AntonSchirg[m] has quit [Write error: Connection reset by peer]
atopuzov[m] has quit [Write error: Connection reset by peer]
fasd has quit [Write error: Connection reset by peer]
nilsirl[m] has quit [Write error: Connection reset by peer]
Josh[m]1 has quit [Write error: Connection reset by peer]
Woland[m] has quit [Write error: Connection reset by peer]
bennofs[m] has quit [Remote host closed the connection]
Dandellion[m] has quit [Write error: Connection reset by peer]
matthewbauer has quit [Write error: Connection reset by peer]
bbigras has quit [Write error: Connection reset by peer]
alj[m] has quit [Write error: Connection reset by peer]
alienpirate5 has quit [Write error: Connection reset by peer]
das-g[m] has quit [Write error: Connection reset by peer]
DanP[m] has quit [Write error: Connection reset by peer]
kjuvi[m] has quit [Remote host closed the connection]
saikrishi1109[m] has quit [Write error: Connection reset by peer]
Obscurity[m] has quit [Read error: Connection reset by peer]
derangednerd[m] has quit [Write error: Connection reset by peer]
vxzero[m] has quit [Remote host closed the connection]
Shem[m] has quit [Remote host closed the connection]
roitme[m] has quit [Remote host closed the connection]
riottest000[m] has quit [Remote host closed the connection]
isgy[m] has quit [Remote host closed the connection]
fabianhjr[m] has quit [Remote host closed the connection]
MayeulC_backup has quit [Write error: Connection reset by peer]
pop[m]1 has quit [Write error: Connection reset by peer]
SebastianHasler[ has quit [Write error: Connection reset by peer]
Manish[m] has quit [Write error: Connection reset by peer]
rnhmjoj has quit [Write error: Connection reset by peer]
nbardiuk has quit [Write error: Broken pipe]
xenofungus[m] has quit [Write error: Connection reset by peer]
nrdxpmatrixorg[m has quit [Write error: Connection reset by peer]
marko[m]1 has quit [Write error: Connection reset by peer]
orospakr[m] has quit [Write error: Connection reset by peer]
regnat[m] has quit [Write error: Connection reset by peer]
ploupiboulba[m] has quit [Write error: Connection reset by peer]
zaphar_ps[m] has quit [Write error: Connection reset by peer]
Tony[m] has quit [Write error: Connection reset by peer]
neonfuz2 has quit [Write error: Connection reset by peer]
roberth has quit [Write error: Connection reset by peer]
apx[m] has quit [Write error: Connection reset by peer]
siraben has quit [Write error: Connection reset by peer]
tilpner[m] has quit [Remote host closed the connection]
philipp[m] has quit [Write error: Connection reset by peer]
codyopel has quit [Write error: Connection reset by peer]
JaakkoLuttinen[m has quit [Write error: Connection reset by peer]
macerbi[m] has quit [Write error: Connection reset by peer]
bricewge has quit [Write error: Connection reset by peer]
jonge[m] has quit [Write error: Broken pipe]
danielrf[m] has quit [Write error: Connection reset by peer]
abbec has quit [Write error: Connection reset by peer]
jasongrossman[m] has quit [Write error: Broken pipe]
vaibhavsagar has quit [Write error: Connection reset by peer]
Seb[m] has quit [Write error: Connection reset by peer]
fgaz has quit [Write error: Broken pipe]
bb010g has quit [Write error: Connection reset by peer]
copy` has quit [Write error: Connection reset by peer]
craige[m] has quit [Write error: Connection reset by peer]
clefru has quit [Write error: Connection reset by peer]
sputny[m] has quit [Write error: Connection reset by peer]
jgosset[m] has quit [Write error: Connection reset by peer]
Deathmist[m] has quit [Write error: Connection reset by peer]
goibhniu has quit [Remote host closed the connection]
ptotter[m] has quit [Write error: Connection reset by peer]
bee[m]1 has quit [Write error: Connection reset by peer]
bachp has quit [Write error: Broken pipe]
Pneumaticat has quit [Read error: Connection reset by peer]
rihardsk[m] has quit [Read error: Connection reset by peer]
dtz has quit [Remote host closed the connection]
musicmatze has quit [Write error: Connection reset by peer]
MiloIgnis[m] has quit [Remote host closed the connection]
manveru[m] has quit [Write error: Connection reset by peer]
submoo[m] has quit [Write error: Connection reset by peer]
sonercirit[m] has quit [Write error: Connection reset by peer]
bkchr has quit [Read error: Connection reset by peer]
jonreeve[m] has quit [Read error: Connection reset by peer]
amorosa1984[m] has quit [Read error: Connection reset by peer]
EB[m] has quit [Read error: Connection reset by peer]
ArtemVorotnikov[ has quit [Read error: Connection reset by peer]
abbafei[m] has quit [Read error: Connection reset by peer]
grahamc[m] has quit [Read error: Connection reset by peer]
kuznero[m] has quit [Read error: Connection reset by peer]
olejorgenb[m] has quit [Read error: Connection reset by peer]
v88m has quit [Read error: Connection reset by peer]
abaiste^ has quit [Max SendQ exceeded]
mexisme_ has joined #nixos
irdr has quit [Remote host closed the connection]
abaiste^ has joined #nixos
wavirc22 has joined #nixos
v88m has joined #nixos
irdr has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #62455 → ocamlPackages.opium: init at 0.17.1 → https://git.io/fjERF
<{^_^}> [nixpkgs] @vbgl pushed 2 commits to master: https://git.io/fjiYX
kgz has quit [Ping timeout: 246 seconds]
mexisme_ has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @flokli pushed 4 commits to release-19.03: https://git.io/fjiY1
kgz has joined #nixos
elvishjerricco has quit [Ping timeout: 250 seconds]
FRidh has joined #nixos
<ivan> does nix have a __FILE__ equivalent?
bachp has joined #nixos
elvishjerricco has joined #nixos
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #64397 → neovim: 0.3.7 -> 0.3.8 → https://git.io/fjikB
<{^_^}> [nixpkgs] @teto pushed commit from @rvolosatovs to master « neovim: 0.3.7 -> 0.3.8 »: https://git.io/fjiYD
oharvey has quit [Ping timeout: 250 seconds]
oharvey has joined #nixos
zimbatm has quit [Ping timeout: 252 seconds]
r0bby has quit [Ping timeout: 252 seconds]
nh2 has quit [Ping timeout: 252 seconds]
ilikeheaps has joined #nixos
r0bby has joined #nixos
nh2 has joined #nixos
dukedave has quit [Ping timeout: 252 seconds]
kai_w has joined #nixos
zimbatm has joined #nixos
turbo_MaCk has joined #nixos
jchw has quit [Ping timeout: 250 seconds]
dukedave has joined #nixos
jchw has joined #nixos
o1lo01ol1o has joined #nixos
dozn_ has joined #nixos
wildsebastian has quit [Ping timeout: 250 seconds]
georgyo has quit [Ping timeout: 252 seconds]
georgyo has joined #nixos
dmj` has quit [Ping timeout: 250 seconds]
saykhan has quit [Ping timeout: 252 seconds]
wildsebastian has joined #nixos
bgamari has quit [Ping timeout: 252 seconds]
o1lo01ol1o has quit [Ping timeout: 276 seconds]
bgamari has joined #nixos
emptyflask has quit [Ping timeout: 252 seconds]
saykhan has joined #nixos
dmj` has joined #nixos
emptyflask has joined #nixos
orivej has joined #nixos
mexisme_ has joined #nixos
alp has joined #nixos
domogled has joined #nixos
Lisanna[m] has joined #nixos
<Lisanna[m]> jonreeve: what to you have as your httpListenAddress value and what are you putting in your browser, and on what machine is the browser
Izorkin has quit [Quit: ZNC 1.7.4 - https://znc.in]
Izorkin has joined #nixos
wavirc22 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fendor has joined #nixos
dontdieych has joined #nixos
dozn_ has quit [Read error: Connection reset by peer]
jkachmar has quit [Quit: Connection closed for inactivity]
cornu has joined #nixos
Guest75852 has joined #nixos
bennofs[m] has joined #nixos
zurdo has joined #nixos
Ericson2314 has joined #nixos
dtz has joined #nixos
bb010g has joined #nixos
BinkyTheClown has joined #nixos
Dandellion[m] has joined #nixos
copy` has joined #nixos
clacke[m] has joined #nixos
abbafei[m] has joined #nixos
bbigras has joined #nixos
attente[m] has joined #nixos
domenkozar[m] has joined #nixos
alj[m] has joined #nixos
flip[m] has joined #nixos
M0ddba11[m] has joined #nixos
Noughtmare[m] has joined #nixos
aquarial has joined #nixos
v88m has quit [Read error: Connection reset by peer]
das-g[m] has joined #nixos
escaP[m] has joined #nixos
am3on[m] has joined #nixos
laas has joined #nixos
craige[m] has joined #nixos
alienpirate5 has joined #nixos
Brio[m] has joined #nixos
MiloIgnis[m] has joined #nixos
tet[m] has joined #nixos
ndarwincorn has joined #nixos
Minijackson[m] has joined #nixos
Florian[m] has joined #nixos
alexoundos[m] has joined #nixos
DanP[m] has joined #nixos
atopuzov[m] has joined #nixos
colemickens has joined #nixos
alexarice[m] has joined #nixos
clefru has joined #nixos
is0x3F has joined #nixos
bendlas has joined #nixos
bohan[m] has joined #nixos
EuAndreh[m] has joined #nixos
Deathmist[m] has joined #nixos
craigevil[m] has joined #nixos
byzoni[m] has joined #nixos
bdesham[m] has joined #nixos
altavista[m] has joined #nixos
derangednerd[m] has joined #nixos
danielrf[m] has joined #nixos
frederic_chopwn[ has joined #nixos
arthur[m]2 has joined #nixos
abbec has joined #nixos
haslersn[m] has joined #nixos
hiroshi[m] has joined #nixos
HappyEnt[m] has joined #nixos
greenerworld[m] has joined #nixos
harkenedraven has joined #nixos
rycee has joined #nixos
goibhniu has joined #nixos
nyanloutre[m] has joined #nixos
simbergm has joined #nixos
leons has joined #nixos
sphalerit has joined #nixos
philipp[m] has joined #nixos
olejorgenb[m] has joined #nixos
timokau[m] has joined #nixos
Ralith has joined #nixos
vaibhavsagar has joined #nixos
Vskilet has joined #nixos
kaychaks[m] has joined #nixos
ejpcmac has joined #nixos
ptotter[m] has joined #nixos
Seb[m] has joined #nixos
bkl[m] has joined #nixos
thequux[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
jak[m] has joined #nixos
wak-work has joined #nixos
nh2[m] has joined #nixos
contrun[m] has joined #nixos
momack2[m] has joined #nixos
slabity has joined #nixos
bee[m]1 has joined #nixos
IslandUsurper has joined #nixos
uvnikita[m] has joined #nixos
isgy[m] has joined #nixos
thefloweringash has joined #nixos
worldofpeace has joined #nixos
codyopel has joined #nixos
rdes[m] has joined #nixos
nocent has joined #nixos
badmutex[m] has joined #nixos
macerbi[m] has joined #nixos
neonfuz2 has joined #nixos
ninjatrappeur[m] has joined #nixos
weebull[m] has joined #nixos
musicmatze has joined #nixos
bricewge has joined #nixos
icetan has joined #nixos
malteof[m] has joined #nixos
submoo[m] has joined #nixos
bkchr has joined #nixos
hackeryarn[m] has joined #nixos
Thinkofname[m] has joined #nixos
sylvie[m] has joined #nixos
jschievink[m] has joined #nixos
Tony[m] has joined #nixos
jonge[m] has joined #nixos
luftmensch[m] has joined #nixos
EB[m] has joined #nixos
siraben has joined #nixos
MarkOtaris has joined #nixos
pinage404[m] has joined #nixos
JaakkoLuttinen[m has joined #nixos
NickHu has joined #nixos
manveru[m] has joined #nixos
spacekitteh[m] has joined #nixos
roberth has joined #nixos
Sabbat[m] has joined #nixos
ayyjayess[m] has joined #nixos
rizary has joined #nixos
timclassic has joined #nixos
pingveno[m] has joined #nixos
rihardsk[m] has joined #nixos
jasongrossman[m] has joined #nixos
alan[m] has joined #nixos
fabianhjr[m] has joined #nixos
kuznero[m] has joined #nixos
roadt[m] has joined #nixos
freddie_freeload has joined #nixos
amorosa1984[m] has joined #nixos
apx[m] has joined #nixos
aterius has joined #nixos
saikrishi1109[m] has joined #nixos
regnat[m] has joined #nixos
MayeulC_backup has joined #nixos
Torus[m] has joined #nixos
otini has joined #nixos
Smith[m] has joined #nixos
joepie91[m] has joined #nixos
Shem[m] has joined #nixos
gudea[m] has joined #nixos
grahamc[m] has joined #nixos
iceychris[m] has joined #nixos
nrdxpmatrixorg[m has joined #nixos
TravisRt2botio[m has joined #nixos
li_matrix has joined #nixos
ArtemVorotnikov[ has joined #nixos
sonercirit[m] has joined #nixos
GerdFlaig[m] has joined #nixos
corpix[m] has joined #nixos
schmittlauch[m] has joined #nixos
Obscurity[m] has joined #nixos
Notkea[m] has joined #nixos
nbardiuk has joined #nixos
nilsirl[m] has joined #nixos
Pneumaticat has joined #nixos
bpye has joined #nixos
Dan[m]6 has joined #nixos
ma27[m] has joined #nixos
Moredread[m] has joined #nixos
SebastianHasler[ has joined #nixos
cgm[m] has joined #nixos
tokudan[m] has joined #nixos
matthewbauer has joined #nixos
balsoft[m] has joined #nixos
marius851000[m] has joined #nixos
zaphar_ps[m] has joined #nixos
fasd has joined #nixos
yangm97 has joined #nixos
YanMinari[c][m] has joined #nixos
smolboye[m] has joined #nixos
blitzclone[m] has joined #nixos
rnhmjoj has joined #nixos
Josh[m]1 has joined #nixos
jonreeve[m] has joined #nixos
jasonk000[m] has joined #nixos
retrry[m] has joined #nixos
marko[m]1 has joined #nixos
sputny[m] has joined #nixos
orospakr[m] has joined #nixos
hbunke[m] has joined #nixos
Woland[m] has joined #nixos
makaveli[m] has joined #nixos
riottest000[m] has joined #nixos
mariusz-kowalski has joined #nixos
TaoHansen[m] has joined #nixos
lel[m] has joined #nixos
v0id72[m] has joined #nixos
kimboking[m] has joined #nixos
kjuvi[m] has joined #nixos
Nover[m] has joined #nixos
Manish[m] has joined #nixos
peterhoeg[m] has joined #nixos
MichalLaskus[m] has joined #nixos
ploupiboulba[m] has joined #nixos
seese[m] has joined #nixos
pop[m]1 has joined #nixos
kevincox[m] has joined #nixos
roitme[m] has joined #nixos
vxzero[m] has joined #nixos
Lev[m] has joined #nixos
xenofungus[m] has joined #nixos
jsquared71[m] has joined #nixos
KarelWDingeldey[ has joined #nixos
wuji[m] has joined #nixos
tomberekn[m] has joined #nixos
zik[m] has joined #nixos
AntonSchirg[m] has joined #nixos
Gopal[m] has joined #nixos
jgosset[m] has joined #nixos
tilpner[m] has joined #nixos
o1lo01ol1o has joined #nixos
Yakulu[m] has joined #nixos
calbrecht[mb] has quit [Remote host closed the connection]
calbrecht[mb] has joined #nixos
alp has quit [Ping timeout: 252 seconds]
<colemickens> How does flatpak interact with nixpkgs? It'd be nice to be able to use some of the isolation/portals technology, while still retaining the single-source-of-pkgs and rebuildability offered by nixpkgs.
v88m has joined #nixos
v88m has quit [Ping timeout: 245 seconds]
<yorick> colemickens: they would need the host permission
<yorick> or even --filesystem=/nix:ro
ilmu has quit [Ping timeout: 258 seconds]
Ariakenom has joined #nixos
adamantium has joined #nixos
lpil has joined #nixos
v88m has joined #nixos
dansho has quit [Remote host closed the connection]
<manveru> ivan: well, kinda
<Niall__> colemickens: with appimage files (I've not had a lot of experience with them or flatpacks/snaps) I've found they may not always work because they're relying on the paths more traditional distros have but it's just a case of editing the file itself
phreedom has quit [Remote host closed the connection]
<Niall__> but if you've used shell scripts that call '#!/usr/bin/bash' you've ran into similar issues before
<manveru> > (builtins.unsafeGetAttrPos "a" {a=1;}).file
<{^_^}> "(string)"
kraem has quit [Ping timeout: 246 seconds]
rfold has joined #nixos
pie___ has quit [Ping timeout: 252 seconds]
thc202 has joined #nixos
phreedom has joined #nixos
init_6 has joined #nixos
<betaboon> infinisil: done
tobiasBora has quit [Read error: Connection reset by peer]
alex`` has quit [Ping timeout: 258 seconds]
o1lo01ol1o has quit [Ping timeout: 258 seconds]
turbo_Ma1 has joined #nixos
<ldlework> I've got a simple overrideAttrs derivation but I'm getting the error: cannot coerce a set to a string https://gist.github.com/dustinlacewell/8abdb01d678625ceeb28c8d96c5e02ce
<ldlework> Anyone know what I'm doing wrong?
<ldlework> Why is it trying to coerce the `src = {}` to a string...?
<yorick> ldlework: src = fetchurl {
<ldlework> oh thanks
ilmu has joined #nixos
<m1cr0man> Ugh dep2nix is so outdated I can't even update its dependencies to include https://github.com/golang/dep/pull/2176 because the whole dep/gps API has changed.
<{^_^}> golang/dep#2176 (by kevinburke, 3 weeks ago, merged): gps: pass correct arguments to "git clean"
kraem has joined #nixos
ilmu has quit [Ping timeout: 244 seconds]
zaeph has quit [Ping timeout: 276 seconds]
mexisme_ has quit [Ping timeout: 252 seconds]
grumble has quit [Quit: inside their machines there is one empty file]
<ivan> manveru: interesting! Thanks
gurmble has joined #nixos
gurmble is now known as grumble
<yorick> m1cr0man: just convert to go mod :P
alp has joined #nixos
<m1cr0man> yorick, ...I was about to point out that im trying to build chronograf but then I just spotted they have a go.mod in their repo too
<m1cr0man> time to try vgo2nix I guess
<kraem> m1cr0man: sorry for the late reply about the timesyncd issue. I never solved it in any other way than removing the symlink and removing everything under `/var/lib/private/systemd/timesync`
<yorick> m1cr0man: no, there's a new buildGoModule architecture
<yorick> no need for vgo2nix
<m1cr0man> kraem, Yeah I think I figured out why it existed in the end. I did a channel update + switch and I think there must've been a change in the location of /var/lib/private/systemd to just /var/lib/systemd and the symlink wasn't being removed during update
<yorick> m1cr0man: it just hashes all the modules into a fixed-output modSha256
<m1cr0man> yorick, Ah, ok. I was using influxdb as my reference since it's the same vendor https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/nosql/influxdb/default.nix
<yorick> influxdb is not yet converted, yeah
<m1cr0man> This is only step 1 aswell because chronograf contains a yarn project too that gets compiled into the binary :P
<yorick> m1cr0man: it wants yarn and node, that'll be a challenge
<yorick> m1cr0man: vault does something similar, we made https://github.com/serokell/nix-npm-buildpackage for that
<m1cr0man> yeah I have that partially solved already. Plan is to build the ui into its own derivation then symlink into the repo during preBuild
<{^_^}> [nixpkgs] @teto opened pull request #64411 → vimPlugins.coc-nvim: 0.0.71 -> 0.0.72 → https://git.io/fjiO7
linarcx has quit [Read error: Connection reset by peer]
<m1cr0man> woah that is one complex nix
<m1cr0man> I'm REALLY hoping yarn2nix will save me a bit of hassle
linarcx has joined #nixos
<m1cr0man> yorick, how do I generate the modSha256? is there a prefetcher?
<ldlework> just type some fake sha
<m1cr0man> ok grand
<yorick> so I'm hacking on nix, and it looks like RemoteFSAccessor has an in-memory cache of all the nars it has seen
<yorick> isn't that *huge*?
MmeQuignon has joined #nixos
<kraem> m1cr0man: yeah that's how I understood as well - and the patch that was supposed to fix it only got applied to systems having systemVersion < 19.03
<m1cr0man> kraem, Ah ok. I didn't go on the hunt for the changelog but that makes sense
ris has joined #nixos
zaeph has joined #nixos
linarcx has quit [Ping timeout: 272 seconds]
<m1cr0man> This build is taking some amount of time, lol. There's a lot of node modules in here for what's really a go package.
<ldlework> What is the general strategy in having two versions of something installed? I'd like to have the dotnet 2.2 and dotnet 3.0 previews installed at the sametime but nix complains about collisions
o1lo01ol1o has joined #nixos
<ldlework> collision between `/nix/store/m07my15z68idhf8fap5zfshhnj9dcpf4-dotnet-sdk-2.2.203/bin/dotnet' and `/nix/store/q62566rxb4scvngr8g10n5ladvvgy1yi-dotnet-sdk-3.0.100-preview6/bin/dotnet'
Diagon has quit [Quit: Leaving]
<ldlework> do I just have to override the install phase and use a different binary path?
<LnL> yorick: it's only narinfo content, mine is 11mb over half a year
<ldlework> hmm when i do that i get: collision between `/nix/store/m07my15z68idhf8fap5zfshhnj9dcpf4-dotnet-sdk-2.2.203/env-vars' and `/nix/store/53syvfb2i1bka7fm8ib2wqfgrn30dd45-dotnet-sdk-3.0.100-preview6/env-vars'
<ldlework> but "env-vars" isn't mentioned in the nix expression
<yorick> LnL: nars.emplace(storePath, narAccessor);, where narAccessor has a ref to std::string nar (which is the entire nar)
linarcx has joined #nixos
o1lo01ol1o has quit [Ping timeout: 245 seconds]
* ldlework is stumped :D
<{^_^}> [nixpkgs] @domenkozar merged pull request #63193 → add polybarFull to all-packages → https://git.io/fjaq7
<{^_^}> [nixpkgs] @domenkozar pushed 2 commits to master: https://git.io/fjiOj
__monty__ has joined #nixos
<LnL> yorick: oh that, are you sure it's set by default?
<Miyu-chan> Hm. Lorri doesn't seem to callPackage on nixos-19.03.
<Miyu-chan> I last updated at most a month ago.
<Miyu-chan> (I'd rather callPackage than use import)
<{^_^}> [nixpkgs] @peti pushed 5 commits to haskell-updates: https://git.io/fji3J
deech has joined #nixos
bart` has joined #nixos
<bart`> hi. Is anyone using autologin together with physlock? That combo is broken for me.
bart` is now known as magnetophon
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/fji3I
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/fji3L
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken Haskell builds »: https://git.io/fji3q
brett-soric has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/fji3m
<nervengift> is there a provided function for stripping the nix store part from $out? e.g. /nix/store/<foo>/lib/ -> lib/
<immae> nervengift: $out only contains /nix/store/<foo>, not the lib part
<nervengift> ok, I had the question wrong: I want to remove the $out path from another path
<immae> lib.strings.removePrefix out "your-other-path" ?
<nervengift> immae: that sounds exactly like what I want, thanks!
<Miyu-chan> nervengift: May I ask why you need to do that?
<immae> nervengift: there is probably a better way to do what you want though, but I lack details of your siutation
<nervengift> immae: yes, probably... I'm trying to build a package with plugins. The plugins get their expected install path via pkgconfig, but that path contains the base package's $out (e.g. /nix/store/<basepkg>/lib/plugins). But I need the plugin dir relative to the plugins $out
magnetophon has quit [Remote host closed the connection]
<nervengift> (now that I think of it, your solution wouldn't work, because its another package's $out in the prefix)
<immae> nervengift: And what do you want to do of that path?
<nervengift> immae: use it so plugins will be in e.g. /nix/store/<plugin>/lib/plugins
<immae> hmm
<immae> It’s not clear sorry
<immae> you already know that it is in lib/plugins, don’t you?
<bohan> immae: what language is it developped in?
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
<nervengift> immae: yes, but I get that path via pkgconfig so I don't want to assume it's always lib/plugins
<immae> ok
<bohan> sorry, my question was to nervengift
<immae> So suppose you have some /nix/store/abcd-foo/lib/someUnpredictablePath/foo.h file. you want to extract lib/someUnpredictablePath/foo.h, but what do you want to do then with that path?
<linarcx> Guys, i want to set multiple fonts for multiple langues in my system. in arch just modifing : `/etc/fonts/local.conf` sufficient. HowEver in nixos i can't figure out how to do that.
<nervengift> immae: I want to install my plugin to /nix/store/plugin-for-abcd-foo/lib/someUnpredictablePath/ so I can combine them later via buildEnv
<immae> ok I see
<nervengift> bohan: c and autotools (its rofi-blezz, plugin for rofi)
<immae> Then I don’t have better than the removePrefix I suggested above, but you’ll have to figure out by yourself the /nix/store/abcd-foo part if it’s not "out"
<immae> If you’re sure it’s only one level (lib/oneSubFolder/foo.h) then you can find something with dirname and such
<__monty__> immae, nervengift: Can't you just strip up to the 4th /?
<nervengift> __monty__: I think I'll have to count the levels in $out to be sure
<nervengift> $out doesn't have to be exactly 3 levels of directories I guess
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/88c2586958f (from 2 days ago, history: https://channels.nix.gsc.io/nixos-unstable)
<__monty__> $out always points to /nix/store/hash-name-version afaik?
<immae> __monty__: not necessarily, you can chose another location (but it’s quite rare)
<nervengift> still, I should support it
<yorick> LnL: it looks like this function is never called, I'll just patch it out
<__monty__> immae: TIL. I thought $out was a variable set by nix, so you didn't have control over it.
<immae> It’s nice if you find a way to take that into account nervengift, but I think there are a lot of derivations in nixpkgs that will completely break if the store is not in /nix/store, so I think it’s not worth bothering too much.
<immae> nervengift: I assume you have no way to know the /nix/store/abcd-foo part another way? Can you pass rofi to the rofi-blezz plugin arguments to get that path maybe?
<clever> __monty__: it is a variable set by nix, based on the name attribute on your derivation
<immae> This way you could use the lib.strings.removePrefix rofi "your-other-path"
<clever> __monty__: its always in the form of <hash>-${name}, and name typically has -1.2.3 at the end
gentauro has quit [Read error: Connection reset by peer]
<__monty__> clever: Yeah, that's what I thought. Didn't think of relocatable store though, since that's mostly a pipe dream afaict?
gentauro has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/d567c486ca5 (from 28 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<clever> __monty__: youll get zero support from the binary cache, so it will take a lot longer to doooo antyhing, and a lot of things will break
<immae> I think nothing in the CI’s tests that relocatable path works, so probably many things break
<clever> > builtins.storeDir
<{^_^}> "/nix/store"
<clever> in theory, proper nix derivations should use this to get the store path
<clever> but a lot just assume /nix/store/
<nervengift> clever: oh right, I forgot that packages evaluate as their path
<nervengift> obviously I have access to rofi in my derivation
<m1cr0man> oh man why did they use parcel to compile chronograf's frontend q_q
<m1cr0man> I think this is a lost cause
<ldlework> I am trying to overrideAttrs on this package: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/jetbrains/default.nix#L355 but it says: while evaluating the attribute 'jetbrains.rider.overrideAttrs' at undefined position:
<nervengift> * that sould have been to immae
<ldlework> attribute 'overrideAttrs' missing, at /nixcfg/modules/home/linux/workstation/rider/default.nix:15:11
<clever> m1cr0man: ive sometimes given up on using the upstream build framework, and just rewrote it in cmake, lol
<m1cr0man> clever, I'm very close to doing that now (I'm not a cmake user though). Ugh it's like they've used every fancy little build system available on NPM in one package.
<m1cr0man> I could rewrite it like I've done enough js/ts dev to know what to do but I don't have the time right now
<clever> m1cr0man: just find whatever file defines main(), build that by itself, and then chase the link errors to find out what else you need
<m1cr0man> clever, The problem is more on the javascript frontend side of things, which is compiled into the Go app. The Go side of it is actually fine
<clever> ah
<m1cr0man> I'm tackling them as two separate derivations and then symlinking one into the other. It would work in theory if the js project would build
<{^_^}> [nixpkgs] @davidtwco opened pull request #64412 → nixos/lidarr: re-add home attribute → https://git.io/fji31
<{^_^}> [nixpkgs] @davidtwco opened pull request #64413 → nixos/jackett: add package option → https://git.io/fji3M
hexa- has quit [Quit: WeeChat 2.4]
<ldlework> pls
hexa- has joined #nixos
<gchristensen> ldlework: (I don't know) can you share more of the errror?
NightTrain has joined #nixos
<ldlework> not sure how to override attrs on this jetbrain's rider package since it seems to be generated in the expression
<__monty__> ldlework: I don't think rider passes through stdenv.mkDerivation. So it doesn't have an overrideAttrs function.
<ldlework> in which case i don't have any idea of how to update the version :)
<clever> ldlework: .overrideDerivation
<ldlework> :O
<immae> nervengift: good then :)
<__monty__> You do jetbrains.overrideAttrs and then override the "rider" attribute. Or listen to clever, which is probably a better idea.
jedai has joined #nixos
<nervengift> immae: still have to figure out how to manipulate the variable after the configurePhase, but that should be possible in make
<ldlework> that worked, thanks clever
polman has quit [Ping timeout: 244 seconds]
<ldlework> niiiiiiice
polman has joined #nixos
brett-soric has left #nixos [#nixos]
<{^_^}> [nixpkgs] @marsam merged pull request #63672 → cargo-inspect: init at 0.10.1 → https://git.io/fjwz0
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fji3d
<{^_^}> [nixpkgs] @marsam closed pull request #64160 → python37Packages.telethon: 1.6.2 -> 1.8.0 → https://git.io/fjK9d
Thra11 has joined #nixos
<laalf> hello! i am trying to get the documentation to work in qtcreator. 'nix-shell -p qt5Full -p "(qtcreator.override {withDocumentation = true; })" --run qtcreator' looks like its what i want to do, yet the build stops with "ln: failed to create symbolic link '/share': Permission denied", which sounds like $NIX_QT5_TMP is not set in the build environment. can someone confirm? is there some way i can fix that?
linarcx has quit [Quit: WeeChat 2.4]
<clever> laalf: last time i looked, you had to run one of the configure hools before starting qtcreator, and it was a pain to deal with
<rprije> Is there a way to transfer a machine from one deployment to another in nixops?
<gchristensen> how did you make the machine?
linarcx has joined #nixos
<rprije> I deployed it using nixops. In particular, I'd like to transfer it to another nixops deployment without destroying/recreating the original machine if possible
<laalf> clever: so ther answer is no? that sounds like it would just belong in postInstall
adamantium has quit [Ping timeout: 258 seconds]
<clever> laalf: it was something like the configure hooks creating $out/share or something and adding it to a search path
<clever> laalf: which makes nix-shell difficult to use without root
<laalf> oh god
<clever> laalf: it was also creating things in the current dir, and failing if they already existed
<clever> so you had to wipe those temp files every time you reopen the shell
<laalf> soooo
<laalf> fhsenv of flatpak or something
<clever> and there was a qmake wrapper (to support the other things in buildInputs), in /tmp/randompath/, which qtcreator needed
<clever> so every time you reboot, you have to re-configure qtcreator to find the right qmake
<{^_^}> [nixpkgs] @grahamc merged pull request #63457 → snapTools.makeSnap: init → https://git.io/fjVJV
<{^_^}> [nixpkgs] @grahamc pushed 2 commits to master: https://git.io/fjisO
madhukar has joined #nixos
madhukar is now known as madhukar93
kraem has quit [Ping timeout: 248 seconds]
kraem has joined #nixos
mexisme_ has joined #nixos
<madhukar93> Just that zsh isn't running completions like bash was. I found bash completions at ` /var/run/current-system/sw/share/bash-completion/completions/`, so at least I'll have the ones that were working earlier up again
mexisme_ has quit [Ping timeout: 252 seconds]
NightTrain has quit [Quit: Lost terminal]
rprije has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @domenkozar pushed to master « cachix: 0.2.1 »: https://git.io/fjisW
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/10a866602cd (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
b has joined #nixos
<Thra11> Why is my /etc/nixos/configuration.nix readonly? Should it be? (running nixos on a raspberry pi from sd-card: is it because computers like this don't follow the normal pattern of 1. Install NixOS on bootable media 2. Use media to install NixOS on internal storage)
<siraben> say I can install a package by running nix-env -if <url to tar.gz file> , how would I specify this in my configuration.nix?
<clever> Thra11: likely just a bug, it gets copied from /nix/store/ on the first boot
<clever> ,unstable siraben
MmeQuignon has quit [Ping timeout: 248 seconds]
<infinisil> siraben: systemPackages = [ (import (fetchTarball { url = ...; sha256 = "..."; }) {}) ]
<siraben> By the way, why the extra {}? I see this in the manual too
<siraben> to call the function?
<infinisil> Well, it depends, you might not need it
<infinisil> nix-env and co auto-call functions with empty attrsets
MmeQuignon has joined #nixos
<infinisil> If your tarball is a function (e.g. nixpkgs), you need the {} (or whatever args you need to pass)
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/c7a4a0c852e (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
madhukar93 has quit [Ping timeout: 260 seconds]
<siraben> I have a swap partition, where do I specify to use it?
<siraben> how*
o1lo01ol1o has joined #nixos
irl25519 has joined #nixos
stepcut has joined #nixos
<Thra11> siraben: I believe you need to add it to fileSystems
<{^_^}> [nixpkgs] @teto merged pull request #64404 → [r19.03] wireshark: 2.6.6 -> 2.6.9, security release → https://git.io/fjiLQ
<{^_^}> [nixpkgs] @teto pushed commit from @risicle to release-19.03 « wireshark: 2.6.6 -> 2.6.9 »: https://git.io/fjisg
<Thra11> siraben: or maybe it's swapDevices
<infinisil> siraben: Did you get what I said?
<siraben> infinisil: Yes, thanks.
<{^_^}> [nixpkgs] @teto merged pull request #64398 → newsboat: 2.15 -> 2.16.1 → https://git.io/fjikw
<{^_^}> [nixpkgs] @teto pushed commit from @dywedir to master « newsboat: 2.15 -> 2.16.1 »: https://git.io/fjis2
o1lo01ol1o has quit [Ping timeout: 245 seconds]
<siraben> Thra11: I'll take a look. Thanks.
<{^_^}> [nixpkgs] @teto merged pull request #64390 → nixos/graylog: use `types.lines` for extraConfig → https://git.io/fjiUp
<{^_^}> [nixpkgs] @teto pushed commit from @Ma27 to master « nixos/graylog: use `types.lines` for extraConfig »: https://git.io/fjisa
irl25519 has quit [Quit: Textual IRC Client: www.textualapp.com]
polman has quit [Ping timeout: 244 seconds]
ambro718 has joined #nixos
turbo_Ma1 has quit [Ping timeout: 245 seconds]
acarrico has joined #nixos
polman has joined #nixos
slack1256 has joined #nixos
acarrico has quit [Ping timeout: 244 seconds]
civodul has joined #nixos
o1lo01ol1o has joined #nixos
deech has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/10a866602cd (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
polman has quit [Ping timeout: 244 seconds]
polman has joined #nixos
<{^_^}> [nixpkgs] @edolstra opened pull request #64414 → Rust 1.36 → https://git.io/fjish
fenedor has joined #nixos
bakakuna has joined #nixos
fendor has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @jabranham opened pull request #64415 → emacs: Silence compiler warnings in site-start.el → https://git.io/fjiGJ
pie_ has joined #nixos
ambro718 has quit [Quit: Konversation terminated!]
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/aa2a7e49b82 (from 24 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
o1lo01ol1o has quit [Remote host closed the connection]
ilmu1 has joined #nixos
bakakuna has quit [Ping timeout: 248 seconds]
v88m has quit [Read error: Connection reset by peer]
v88m has joined #nixos
o1lo01ol1o has joined #nixos
<exarkun> I nixos-in-place'd an ubuntu 16.04 machine, seemed to work, but nixos-in-place wants to set up nixos 16.09
<exarkun> so I switched the nixos channel to https://nixos.org/channels/nixos-19.03 and `nixos-rebuild test --upgrade`
<exarkun> syntax errors in some part of 19.03?
<avn> exarkun: you need 17.09 as intermediate stop
<exarkun> ah
<exarkun> thanks
katyucha has joined #nixos
<avn> exarkun: nix have some backward incompatible changes, you need backport fresh nix, or do intermediate stop
o1lo01ol1o has quit [Remote host closed the connection]
<DigitalKiwi> nixos-infect might work better
<avn> I have last debian machine, very old and like to infect/inplace it
<DigitalKiwi> on digitalocean i had good luck with nixos-infect by using the version of ubuntu it said was supported
knupfer has joined #nixos
Okinan has quit [Quit: Konversation terminated!]
o1lo01ol1o has joined #nixos
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
iyzsong has quit [Ping timeout: 276 seconds]
alp has quit [Ping timeout: 252 seconds]
simon_weber has joined #nixos
acarrico has joined #nixos
<exarkun> well looks like I messed it up good
<exarkun> now I can't nixos-rebuild because it complains about nix version being too old
<exarkun> I guess I only ever `nixos-rebuild test`'d so maybe I can go back to 16.09 and try again
polman has quit [Ping timeout: 244 seconds]
<simon_weber> I'm having trouble with some tests during a nixops deployment (https://github.com/NixOS/nixpkgs/issues/64416). Curiously, it seems like I can disable them with overrideAttrs, but only when I'm not also overriding buildInputs (to add pydrive). What am I missing here? https://gist.github.com/simon-weber/3023d783d1952dc0814ee80e724cb63a
<{^_^}> #64416 (by simon-weber, 10 minutes ago, open): duplicity: newly-enabled tests all fail
<exarkun> ... nope
selfsymmetric-mu has quit [Remote host closed the connection]
mkoenig has quit [Ping timeout: 246 seconds]
polman has joined #nixos
<simon_weber> in case it's relevant, this is from a `nixops deploy --build-only`
o1lo01ol1o has quit [Remote host closed the connection]
Okinan has joined #nixos
jackdk has quit [Quit: Connection closed for inactivity]
o1lo01ol1o has joined #nixos
logzet has joined #nixos
tokudan has quit [Quit: ZNC 1.7.3 - https://znc.in]
init_6 has quit []
tokudan has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
_ris has joined #nixos
<{^_^}> [nixpkgs] @xrelkd opened pull request #64417 → dunst: 1.4.0 -> 1.4.1 → https://git.io/fjiZT
zacts has joined #nixos
ris has quit [Ping timeout: 246 seconds]
zacts has quit [Client Quit]
fenedor has quit [Quit: Leaving]
ZaraChimera has joined #nixos
zacts has joined #nixos
fendor has joined #nixos
fendor has quit [Remote host closed the connection]
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/beff2f8d75e (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
logzet has joined #nixos
ilmu1 is now known as ilmu
mkoenig has joined #nixos
sindrip has joined #nixos
linarcx has quit [Ping timeout: 245 seconds]
linarcx has joined #nixos
ZaraChimera has left #nixos [#nixos]
v88m has quit [Remote host closed the connection]
v88m has joined #nixos
<lpil> Hi friends. I have a git repository containing multiple projects, each test and build scripts. Would Nix be a good tool for running these test/build scripts so that on CI only the projects that have changed since the previous run are executed? It seems like I could use a private cache to avoid rebuilding if not needed. Thank you.
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Ping timeout: 245 seconds]
vruh has joined #nixos
linarcx has quit [Quit: WeeChat 2.4]
linarcx has joined #nixos
linarcx has quit [Client Quit]
polman has quit [Ping timeout: 244 seconds]
linarcx has joined #nixos
<{^_^}> [nixpkgs] @risicle opened pull request #64418 → cgit: add patch fixing remote DoS → https://git.io/fjiZM
_ris has quit []
_ris has joined #nixos
_ris is now known as ris
ris has quit [Client Quit]
ris has joined #nixos
Drakonis has joined #nixos
<vruh> hello, i need help i just installed nixos with xfce and i'm trying to mount nextcloud webdav and i've enabled davfs services and install davfs2 i can mount davs to local folder via terminal but not in thunar i can't access davs location in it, is there something i'm missing? thanks
polman has joined #nixos
linarcx has quit [Quit: WeeChat 2.5]
<simpson> lpil: Sure. Depends on the nature of your CI and how reproducible/stable your build process is.
OmnipotentEntity has quit [Ping timeout: 268 seconds]
<lpil> It should all be stable and reproducible. Thank you :)
<{^_^}> [nixpkgs] @gebner opened pull request #64419 → More OctoPrint plugins → https://git.io/fjiZ9
<lpil> NixOps looks great though it seems that it doesn't have any functionality for doing things like blue-green or rolling deployments of networked services before a load balancer. I guess I'd need to use another tool alongside it?
Soo_Slow has joined #nixos
Soo_Slow has quit [Remote host closed the connection]
<__monty__> lpil: Maybe look into disnix as well.
linarcx has joined #nixos
linarcx has quit [Client Quit]
rfold has quit [Ping timeout: 248 seconds]
Guest34945 has quit [Ping timeout: 272 seconds]
Guest34945 has joined #nixos
mexisme_ has joined #nixos
zacts has quit [Ping timeout: 250 seconds]
wfranzini has quit [Remote host closed the connection]
alex`` has joined #nixos
wfranzini has joined #nixos
vruh has quit [Remote host closed the connection]
mexisme_ has quit [Ping timeout: 246 seconds]
stranger___ has joined #nixos
<stranger___> makes sense? #63024
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63024 (by gnidorah, 3 weeks ago, open): midisheetmusic: always bring timidity dependency
zacts has joined #nixos
zacts has quit [Client Quit]
zacts has joined #nixos
deech has joined #nixos
sindrip has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/af5178cf779 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
<chrisaw> I'm building a package right now and it's insisting on installing a python dependency: "Installing /build/source/pygobject/XApp.py to /nix/store/j5bg4mmkf3hc2jnkmhwif0780dvd9c2f-python3.7-pygobject-3.32.1/lib/python3.7/site-packages/gi/overrides" - obviously this fails because it's trying to write to another package dir. Does anyone know how I can fix this one?
<zacts> hi, can I run NixOS unstable alongside NixOS stable?
<zacts> and switch between them reliably?
<zacts> I have a use-case for this
ddellacosta has joined #nixos
<zacts> Or maybe there is a better solution for my particular problem
<zacts> I'm doing `nmcli dev wifi con WiFi-Hotspot`
<zacts> when I go into the sign on with firefox, it doesn't complete the sign on
<zacts> I noticed this with previous versions of Ubuntu, the LTS release
<zacts> when I upgraded to a newer Ubuntu, the issue went away
<zacts> so I'm wondering if I try out either unstable NixOS, or the unstable versions of the networking tools, I wonder if it might work
knupfer has quit [Remote host closed the connection]
alex`` has quit [Ping timeout: 245 seconds]
lvo has quit [Ping timeout: 244 seconds]
alex`` has joined #nixos
katyucha has quit [Ping timeout: 258 seconds]
<harkenedraven> Are there any plans to pull the open openvswitch pull (needs updating to 2.11.1 however) https://github.com/NixOS/nixpkgs/pull/53032 ; I would really also appreciate seeing this and the libvirt pull https://github.com/NixOS/nixpkgs/pull/61011 backported to 19.03 if at all possible.
<{^_^}> #53032 (by netixx, 27 weeks ago, open): openvswitch: 2.5.4 -> 2.11.0
<{^_^}> #61011 (by volth, 8 weeks ago, merged): libvirt: 4.10.0 -> 5.3.0
MmeQuignon has quit [Ping timeout: 245 seconds]
knupfer has joined #nixos
<{^_^}> [nixpkgs] @risicle opened pull request #64420 → cloudfoundry-cli: 6.41.0 -> 6.45.0 (fixes CVE-2019-3781) → https://git.io/fjinl
<lpil> Thank you __monty__
MmeQuignon has joined #nixos
<simpson> lpil: Note that CI != CD. There are things like Hydra or Cachix which might form part of a CI solution, but figuring out (continuous) deployment is something else entirely.
<__monty__> zacts: I'd add an overlay that gets just the network tools from unstable.
<simpson> That said, nixops has a pretty reasonable deployment story. I'd rather use k8s, though, and I've played with kubenix a bit for doing Nix with k8s.
<zacts> __monty__: ok
<zacts> which network tools would this be for nmcli?
<zacts> would it just be all of network manager?
<__monty__> Yeah, though what you experienced may have been due to kernel patches, in which case you'd have to get a kernel from unstable.
deech has quit [Ping timeout: 248 seconds]
rfold has joined #nixos
lambda-11235 has joined #nixos
<zacts> ok
<zacts> thanks. I'll try the network-manager first and then I'll do the kernel if that doesn't work
simon_weber has quit [Quit: Connection closed for inactivity]
stepcut has quit [Remote host closed the connection]
<zacts> Ok, I'm also about to try to package my first Nix package
<zacts> so I'm reading the doc
<zacts> I want to eventually add a pull request to maintain it
<zacts> it's a ruby interpreter
Neo-- has joined #nixos
stepcut has joined #nixos
mkoenig_ has joined #nixos
stepcut has quit [Ping timeout: 245 seconds]
mkoenig has quit [Ping timeout: 272 seconds]
markasoftware_ is now known as markasoftware
<{^_^}> [nix] @yorickvP opened pull request #2981 → replace in-memory nar caching with on-disk nar caching when >256MB → https://git.io/fjinS
stepcut has joined #nixos
Guest34945 has quit [Ping timeout: 248 seconds]
shibboleth has joined #nixos
Intensity has joined #nixos
Intensity has quit [Changing host]
Intensity has joined #nixos
stepcut has quit [Ping timeout: 248 seconds]
Guest34945 has joined #nixos
zacts has quit [Quit: WeeChat 2.4]
v0|d has quit [Read error: Connection reset by peer]
ddellacosta has quit [Quit: WeeChat 2.2]
stepcut has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #64295 → libgdata: 0.17.9 -> 0.17.10 → https://git.io/fj68F
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to staging: https://git.io/fjicU
selfsymmetric-mu has joined #nixos
<{^_^}> [nixpkgs] @jacobgreenleaf closed pull request #63554 → keybase: add git-remote-keybase to build → https://git.io/fjVoE
logzet has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Guanin has joined #nixos
bakakuna has joined #nixos
katyucha has joined #nixos
o1lo01ol1o has joined #nixos
leothrix has quit [Read error: Connection reset by peer]
<aminechikhaoui> is there anyway I can have a writable nix store in a nixos test vm with larger size than the default one ?
leothrix has joined #nixos
Izorkin has quit [Quit: ZNC 1.7.4 - https://znc.in]
Izorkin has joined #nixos
Chiliparrot has joined #nixos
ornx has joined #nixos
mexisme_ has joined #nixos
Grauwolf has joined #nixos
slack1256 has quit [Ping timeout: 245 seconds]
<aminechikhaoui> hm ok looks like the only way is to currently do changes in modules/virtualisation/qemu-vm.nix by adding an option size=X to /nix/.rw-store
bakakuna has quit [Ping timeout: 268 seconds]
<marek> so, I thought propagatedBuildInputs are runtime depdencies, am I wrong?
<symphorien> when A has B as buildInput, adding C as propagatedbuildInputs of B is equivalent to adding C as buildInputs to A
<symphorien> and B
endformationage has joined #nixos
<symphorien> it has no effect outside of the build environment (or nix-shell)
<marek> oh ok, so my package scripts requries autossh for example, how to make sure it will pull it up?
<symphorien> patch the source to mention the full path
<marek> I see, ok
<symphorien> for example: sed -i /usr/bin/autossh ${pkgs.autossh}/bin/autossh $out/bin/foo.sh
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
alex`` has quit [Ping timeout: 248 seconds]
Riley has joined #nixos
<Riley> If anyone else is using sway, I'm having a curious problem. Trying to use mako as a notification daemon gives me an error about not being able to connect to the user bus, and swaybar also gives this error in the log at launch
<Riley> Running mako via `dbus-launch --autolaunch=$(dbus-uuidgen --get) mako` seems to make it work fine, but I'd rather figure out what's causing it then hack around the problem
alex`` has joined #nixos
__monty__ has quit [Ping timeout: 245 seconds]
Supersonic has quit [Quit: Bye]
Supersonic has joined #nixos
katyucha has quit [Ping timeout: 268 seconds]
buckley310 has joined #nixos
winem_ has joined #nixos
<{^_^}> [nixpkgs] @bjornfor merged pull request #64418 → cgit: add patch fixing remote DoS → https://git.io/fjiZM
<{^_^}> [nixpkgs] @bjornfor pushed commit from @risicle to master « cgit: add patch fixing remote DoS »: https://git.io/fjicK
__monty__ has joined #nixos
<buckley310> is it possible to do boot-on-zfs with an ecrypted zfs dataset? (on nixos-unstable)
<ar> buckley310: no, grub2 doesn't support zfs encryption from ZoL/openzfs
stranger___ has quit [Quit: Connection closed for inactivity]
<ar> buckley310: it is, however, able to read zfs from luks
<buckley310> what if there is a separate /boot filesystem? i would be using EFI anyways
<gchristensen> buckley310: should be fine
<buckley310> neat, so the initrd knows to just ask for the password and everything i assume?
Riley has left #nixos [#nixos]
<buckley310> i guess if it should be possible ill give it a try and see :P
<gchristensen> yeah give it a go
__monty__ has quit [Quit: leaving]
<gchristensen> the nixos.wiki might have something this though
<srhb> Yeah, it works. You need to set the option to ask for the passphrase though.
<gchristensen> nice
katyucha has joined #nixos
MmeQuignon has quit [Ping timeout: 272 seconds]
<ar> gchristensen: nope
<gchristensen> noL
<gchristensen> ?
<ar> buckley310: grub2 will bail on trying to read zfs, because it'll see that there's a flag enabled (encryption) on the pool that it doesn't know about
<srhb> ar: I think buckley310 meant they would be using a separate vfat /boot partition, not a zfs dataset.
<ar> oh
<ar> yeah, that'd work
MmeQuignon has joined #nixos
<buckley310> yep
<buckley310> hopefully ^_^
<gchristensen> good luck :)
<ashkitten> is there an x86 bootloader that's just linux yet
simukis_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Miyu-chan has quit [Ping timeout: 246 seconds]
<buckley310> you can use the kernel as an EFI stub, so theres that...
<ashkitten> interesting
<gchristensen> power9 has a linux based bootloader
bakakuna has joined #nixos
<ashkitten> i know power9 does
<gchristensen> can probably make it work for x86
simukis_ has joined #nixos
__monty__ has joined #nixos
<buckley310> a long time ago on an arch machine i tried setting it up without a bootloader, just the EFI firmware directly loading the kernel, but its slightly annoying because you have to configure the kernel command line in flash. a bit more involved than just editing a text file
<ashkitten> yeah
<gchristensen> I think that is what my secureboot branch does actually: creting the kernel as a EFI stub, chain-loaded by systemd
<gchristensen> -boot
Netsu has quit [Remote host closed the connection]
<laalf> hello! has anyone built a package for devilutionx yet?
<srhb> laalf: grep -ri devilution says no.
<{^_^}> [nixpkgs] @rycee opened pull request #64421 → trivial-builders: support '/' in writeTextDir → https://git.io/fjicx
<{^_^}> [nixpkgs] @bhipple opened pull request #64422 → pythonPackages.myfitnesspal: init at 1.13.3 → https://git.io/fjicp
<{^_^}> [nixpkgs] @etu merged pull request #64413 → nixos/jackett: add package option → https://git.io/fji3M
<{^_^}> [nixpkgs] @etu pushed 2 commits to master: https://git.io/fjicj
<{^_^}> [nixpkgs] @etu merged pull request #64412 → nixos/lidarr: re-add home attribute → https://git.io/fji31
<{^_^}> [nixpkgs] @etu pushed 2 commits to master: https://git.io/fjiCe
Riley has joined #nixos
<{^_^}> [nixpkgs] @etu merged pull request #64389 → php73: 7.3.6 -> 7.3.7, 7.2.19 -> 7.2.20 [19.03 backport] → https://git.io/fjiUr
<{^_^}> [nixpkgs] @etu pushed 3 commits to release-19.03: https://git.io/fjiCJ
__monty__ has quit [Ping timeout: 248 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
zaeph has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @bjornfor pushed commit from @risicle to release-19.03 « cgit: add patch fixing remote DoS »: https://git.io/fjiCq
<{^_^}> [nixpkgs] @risicle opened pull request #64423 → [r19.03] cgit: add patch fixing remote DoS → https://git.io/fjiCm
__monty__ has joined #nixos
<laalf> in a nixos config file, is there some way i can specify commands to run before the system gets installed? like installing git or adding the unstable channel?
Riley has quit [Remote host closed the connection]
Neo-- has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #64149 → python37Packages.python-jsonrpc-server: 0.1.2 -> 0.2.0 → https://git.io/fjKya
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjiCY
o1lo01ol1o has joined #nixos
kai_w has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #64141 → python37Packages.marshmallow-sqlalchemy: 0.16.3 -> 0.17.0 → https://git.io/fjKXK
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjiCO
Ralith_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @marsam merged pull request #64119 → python37Packages.altair: 3.0.1 -> 3.1.0 → https://git.io/fjKr4
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjiC3
zaeph has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #64335 → gotools: 2019-06-03 -> 2019-07-06 → https://git.io/fj6MQ
<{^_^}> [nixpkgs] @kalbasit pushed 3 commits to master: https://git.io/fjiCs
<{^_^}> [nixpkgs] @risicle closed pull request #64423 → [r19.03] cgit: add patch fixing remote DoS → https://git.io/fjiCm
<{^_^}> [nixpkgs] @marsam merged pull request #64022 → flashrom: 1.0.1 -> 1.1 → https://git.io/fjKcT
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjiCn
zaeph has quit [Ping timeout: 258 seconds]
ZaraChimera has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #64059 → leatherman: 1.6.0 -> 1.7.0 → https://git.io/fjK0D
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjiCW
zaeph has joined #nixos
zacts has joined #nixos
Ralith_ has joined #nixos
zaeph has quit [Ping timeout: 248 seconds]
zaeph has joined #nixos
katyucha has quit [Ping timeout: 258 seconds]
alex`` has quit [Quit: WeeChat 2.5]
andreas303 has quit [Remote host closed the connection]
winem__ has joined #nixos
winem_ has quit [Ping timeout: 248 seconds]
andreas303 has joined #nixos
katyucha has joined #nixos
<sonercirit[m]> is there any way to speed up downloads from cache?
bakakuna has quit [Ping timeout: 246 seconds]
katyucha has quit [Ping timeout: 248 seconds]
alp has joined #nixos
<{^_^}> [nixpkgs] @mguentner opened pull request #64424 → mxisd: 1.4.4 -> 1.4.5 → https://git.io/fjiCd
<{^_^}> [nixpkgs] @abbradar opened pull request #64425 → kvmgt service: use modprobe, force-load module → https://git.io/fjiCb
katyucha has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
katyucha has quit [Ping timeout: 246 seconds]
phreedom_ has joined #nixos
phreedom has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/10a866602cd (from 13 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
knupfer has quit [Ping timeout: 264 seconds]
mexisme_ has quit [Ping timeout: 250 seconds]
<zacts> hi I'm trying to create a nixpkg
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/af5178cf779 (from 8 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
<zacts> the package I'm trying to build doesn't follow the traditional ./configure;make;make install
<zacts> it uses a ./build.sh to do everything
<zacts> I'm following the nixpkgs guide on how to add a package
<zacts> s/guide/manual/
<clever> zacts: buildPhase = "./build.sh";
<zacts> thanks
<zacts> '/usr/bin/env bad interpreter' what might I need to include for it to find this?
<zacts> and is there another channel for nixpkgs?
<zacts> another irc channel
<clever> zacts: patchShebangs . first
<zacts> clever: I don't understand that line
<risson> Hi guys
<clever> buildPPhase = ''
<clever> patchShebangs .
<zacts> oh
<clever> ./build.sh
<clever> '';
<risson> I need to sort a set, I'm trying to use mkOrder but I'm a bit confused
<risson> stuff = (builtins.concatStringsSep " " (builtins.attrNames (lib.mkOrder modulesConfig)));
<clever> risson: mkOrder only works on nixos options
knupfer has joined #nixos
<risson> clever: even if in my set, the attributes are a subset containing an order = 42; and config = { someting } ?
<zacts> clever: I'm still getting the same error. I have: buildPhase = '' patchShebangs . ./build.sh '';
<risson> Wait, nvm I think I got it
* zacts is reading the doc for patchShebangs
<risson> thanks!
<zacts> this isn't within nix-shell either
<zacts> I'm doing this all within a nixpkgs git repo
xcthulhu has joined #nixos
<zacts> I'm using nix-build -A to build this
hmpffff has joined #nixos
<zacts> oh wait
<zacts> just a sec, I think I might have it figured out
__monty__ has quit [Ping timeout: 268 seconds]
<zacts> the '' '' are multiline quotes
<zacts> I'm still getting the same /usr/bin/env error though
MichaelRaskin has left #nixos [#nixos]
aswanson has joined #nixos
<clever> zacts: which file has #!/usr/bin/env?
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/9ec7625cee5 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
<zacts> ./configure has #!/usr/bin/env ruby
<zacts> ./build.sh calls ./configure
<zacts> this package must be build via ./build.sh and not manually via configure
<clever> zacts: is ruby in the buildInputs?
<zacts> { stdenv, fetchurl, ruby }:
<clever> thats not the buildInputs
<zacts> it will need more build inputs for clang and llvm
<zacts> oh
<clever> if you want clang, then you want the clangStdenv.mkDerivation
<clever> that will get you clang and llvm automatically
<zacts> clever: what is the line I posted?
<{^_^}> [nixpkgs] @rvolosatovs opened pull request #64426 → vimPlugins: Init various coc extension plugins → https://git.io/fjiWu
<clever> the function arguments
<zacts> so buildInputs is what is needed to build the package, but the above are whare are needed to run the package once it's built?
<clever> nope
<clever> the function arguments are needed to get the variables into scope
<clever> so you can then use them in something, like buildInputs
<zacts> oh
<zacts> so would clangStendv.mkDerivation go in the line I posted, and then I add [clang llvm] to buildInputs?
dansho has joined #nixos
__monty__ has joined #nixos
<zacts> let me read the doc a bit more
linarcx has joined #nixos
<zacts> I've only read a quick start to adding a package
<zacts> this is as you can see my first attempt at making a package :-)
<clever> zacts: just change stdenv to clangStdenv
<clever> and clang will be provided automatically
shibboleth has quit [Quit: shibboleth]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
<zacts> ok
wfranzini has quit [Remote host closed the connection]
<zacts> that part is working now
<zacts> I still get the /usr/bin/env error though
<zacts> should I pastebin my default.nix?
<clever> sure
<clever> looks like its fine
<zacts> clever: is there a logfile of the build output I can search through?
<zacts> ^^ the actual error I'm getting
civodul has quit [Quit: ERC (IRC client for Emacs 26.2)]
knupfer has quit [Ping timeout: 264 seconds]
day|flip has joined #nixos
<selfsymmetric-mu> Witcher 3 isn't starting up anymore. I think I'm hitting this: https://discuss.getsol.us/d/1583-steam-will-not-launch-with-use-native-runtime-in-the-integration-app-engaged
<selfsymmetric-mu> I have the same version ID anyway.
MmeQuignon has quit [Ping timeout: 268 seconds]
mexisme_ has joined #nixos
MmeQuignon has joined #nixos
selfsymmetric-mu has quit [Remote host closed the connection]
chris| has quit [Quit: ZNC 1.7.2 - https://znc.in]
chris| has joined #nixos
selfsymmetric-mu has joined #nixos
<selfsymmetric-mu> For the record, downgrading to steam 19.03 from unstable and rebooting made Witcher 3 start again for me.
xcthulhu has quit [Quit: xcthulhu]
xcthulhu has joined #nixos
Guest34945 has quit [Quit: WeeChat 2.4]
domogled has quit [Quit: domogled]
domogled has joined #nixos
mexisme_ has quit [Ping timeout: 248 seconds]
linarcx has quit [Quit: WeeChat 2.5]
turbo_MaCk has quit [Ping timeout: 250 seconds]
rprije has joined #nixos
<zacts> I figured out the issue
<zacts> within nix-shell
<zacts> it's looking for llvm-config
rfold has quit [Ping timeout: 272 seconds]
mexisme_ has joined #nixos
fusion809 has joined #nixos
ZaraChimera has left #nixos ["WeeChat 2.5"]
<clever> ,tofy
<{^_^}> clever: Did you mean tofu?
<{^_^}> 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.
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/af5178cf779 (from 10 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
Thra11 has quit [Ping timeout: 245 seconds]
azdle has quit [Remote host closed the connection]
<avn> clever: would be nice to have "template" hash full of zeros somewhere in doc/ ;)
<clever> avn: or just modify fetchurl to map "" to that
azdle has joined #nixos
azdle has quit [Remote host closed the connection]
<avn> clever: good idea btw ;)
<qyliss> There's lib.fakeSha256
winem__ has quit [Ping timeout: 250 seconds]
<clever> qyliss: ah!
xcthulhu has quit [Quit: xcthulhu]
Netsu has joined #nixos
<Cale> It would be even nicer if just using an empty string or other gibberish worked as well as an all-zero hash at getting you the expected hash ;)
<Cale> ah, clever already pretty much suggested that
azdle has joined #nixos
__monty__ has quit [Quit: leaving]
__monty__ has joined #nixos
__monty__ has quit [Client Quit]
xcthulhu has joined #nixos
Soo_Slow has joined #nixos
mbrgm_ has joined #nixos
<zacts> odd, I seem to be able to build this package in nix-shell but not via nix-build -A
FRidh has quit [Quit: Konversation terminated!]
mbrgm has quit [Ping timeout: 244 seconds]
mbrgm_ is now known as mbrgm
o1lo01ol1o has quit [Remote host closed the connection]
stepcut has quit [Remote host closed the connection]
<zacts> nix-build -A still throws the /usr/bin/env error
<zacts> patchShebangs . in nix-shell-$ worked for me there
qqii has joined #nixos
<clever> zacts: /usr/bin/env exists when using nix-shell, so thats not a valid test
averell has quit [Ping timeout: 272 seconds]
OmnipotentEntity has joined #nixos
<zacts> oh, good to know
<OmnipotentEntity> How does one run citrix receiver? I'm getting an error regarding missing libstdc++.so.6. And I wanted to make sure I wasn't doing it wrong.
<OmnipotentEntity> My command looks like this: https://pastebin.com/d6j1w7st
<zacts> I wonder if ./build.sh is creating a new configure with a new /usr/bin/env _after_ patchShebangs is run
<zacts> let me check it out
<OmnipotentEntity> My error is this: https://pastebin.com/66hWUbHs
<OmnipotentEntity> ldd on the executable says: https://pastebin.com/Uz8p3zbF
<OmnipotentEntity> ldd on the so file that's complaining says: https://pastebin.com/YXWY98uM (missing libstdc++.so.6 and libX11.so.6)
<clever> omnipotententity: both will have to be patchelf'd to fix it
<OmnipotentEntity> clever, drat, I have no idea how to do that, are there instructions I can see?
<clever> omnipotententity: the nixpkgs manual
<OmnipotentEntity> roger thanks.
m0rphism has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @ambrop72 opened pull request #64427 → chromium: Strip with --strip-unneeded to reduce binary size. → https://git.io/fjild
Okinan has quit [Quit: Konversation terminated!]
day|flip has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @risicle opened pull request #64428 → [r18.09] graphicsmagick: 1.3.31 -> 1.3.32 (security release) → https://git.io/fjilA
Ariakenom has quit [Quit: Leaving]
xcthulhu has quit [Quit: xcthulhu]
xcthulhu has joined #nixos
<OmnipotentEntity> clever, I have a somewhat stupid question. It looks like something was pushed back in October specifically to prevent the .so files in this package from being patched using patchelf.
<OmnipotentEntity> What the fuck? is my question I suppose
<clever> yeah, id ask on that PR or poke that user
<OmnipotentEntity> sorry, last June, not last October.
<clever> and try an older nixpkgs
<OmnipotentEntity> obadz, actually you're here
<OmnipotentEntity> what the fuck? *gestures incoherently*
<OmnipotentEntity> It's less of a "what the fuck you are so stupid don't you understand?" It's more of a "what the fuck I don't understand any of this please help me I'm stupid. :("
jluttine has quit [Ping timeout: 245 seconds]
<OmnipotentEntity> (reference another: https://github.com/NixOS/nixpkgs/issues/41729 )
<{^_^}> #41729 (by obadz, 1 year ago, open): file 5.33 confuses ELF shared libraries as executables [was: patchelf: cannot find section .interp on Citrix Receiver after some upgrades]
<clever> ah
<clever> the rpath on the libs needs to be set, but not the interp
clacke_movim has left #nixos [#nixos]
<OmnipotentEntity> ok, I think I have it figured out, just going to test.
<OmnipotentEntity> then I'll make a PR
zacts has quit [Quit: WeeChat 2.4]
o1lo01ol1o has joined #nixos
clacke_movim has joined #nixos
day|flip has joined #nixos
mexisme has joined #nixos
o1lo01ol1o has quit [Ping timeout: 245 seconds]
lpil has left #nixos ["The Lounge - https://thelounge.chat"]
day|flip has quit [Remote host closed the connection]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/c4b2a3f92ad (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/9ec7625cee5 (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
mexisme_ has quit [Ping timeout: 272 seconds]
juliusdeane has joined #nixos
<juliusdeane> When I run `alsamixer` there's only one audio level to adjust
deech has joined #nixos
<juliusdeane> But I want to play around with levels like bass and treble
<clever> juliusdeane: hit f6 i believe
<juliusdeane> Yeah there's only a master volume
<clever> juliusdeane: when you use f6, you can change to another device
<clever> by default, alsamixer is opening the pulse compat layer
<juliusdeane> Yeah that's what I did
<juliusdeane> There's only one or two devices and they don't have bass or whatever
<clever> the driver may not have an option to change that
<juliusdeane> Yeah that's what I suspected
juliusdeane has quit [Quit: ERC (IRC client for Emacs 26.1)]
inquisitiv3 has joined #nixos
<inquisitiv3> Wh