fhoffmeyer1 has quit [(Ping timeout: 240 seconds)]
Rizy has quit [(Quit: Rizy)]
<NixOS_GitHub> [nixpkgs] volth opened pull request #24145: stdenv: do not overwrite "$NIX_BUILD_TOP/env-vars" on each phase (master...stdenv-env-vars) https://git.io/vyNyG
<_deepfire> if anyone fought qt5base recently: https://github.com/NixOS/nixpkgs/issues/24144
_deepfire has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] basvandijk opened pull request #24146: wordpress: replace the dbPassword option with dbPasswordFile (master...wordpress-dbPasswordFile) https://git.io/vyNSF
kampfschlaefer has quit [(Ping timeout: 264 seconds)]
Rizy has joined #nixos
Rizy has quit [(Quit: Rizy)]
mojjo has quit [(Ping timeout: 240 seconds)]
Rotaerk has joined #nixos
<sophiag> c74d: i mean just whether i can place the :def hoogle and :def docs keys inside configuration.nix instead of having a separate file. it's fine that it'll be global since this is my personal machine
<c74d> sophiag: can GHCi use a global configuration file in `/etc` rather than one in your homedir?
<c74d> alternatively, can it take a configuration file on the command line?
<sophiag> probably, but i'm saying i'd prefer to keep everything in one file since that's what i'm doing with all my other configs so far (emacs for example)
dhess2`` has joined #nixos
mudri has quit [(Quit: WeeChat 1.7)]
<c74d> yes
<c74d> one can define the contents of files in /etc from within configuration.nix
<sophiag> well, this is in ~/.ghc
<c74d> it looks to me like GHCi won't read a config file from /etc, but it can take one on the command line
<c74d> sophiag: are you installing GHCi by putting it in environment.systemPackages?
<sophiag> yes, but through myHaskellEnv
<sophiag> it would be convenient if you could set keys inside that
dhess2`` has quit [(Ping timeout: 260 seconds)]
<sophiag> mostly unrelated, but the reason why i set up an environment for haskell was to install ghc-core but it's throwing an error from runInteractiveProcess when trying to call less (which i do have installed). i'm unclear as to whether this is a bug in ghc-core that just hasn't been pushed to the version installed by nix (i found one PR possibly related to it) or something on the OS side
<c74d> sophiag: what's the attribute path for the GHCi package?
markus1199 has joined #nixos
markus1219 has joined #nixos
dpren has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to master: https://git.io/vyN7n
<NixOS_GitHub> nixpkgs/master 818a375 Jörg Thalheim: wireguard: 0.0.20170223 -> 0.0.20170320.1
<sophiag> c74d: it's installed as part of self.haskellPackages.ghcWithHoogle
griff_ has joined #nixos
<sophiag> i used to have ghc in my package list, but now am going this route. either way, ghci isn't a separate package
markus1189 has quit [(Ping timeout: 240 seconds)]
markus1209 has quit [(Ping timeout: 246 seconds)]
<c74d> hm
Rizy has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.03: https://git.io/vyN70
<NixOS_GitHub> nixpkgs/release-17.03 a334a17 Jörg Thalheim: wireguard: 0.0.20170223 -> 0.0.20170320.1...
<c74d> one can wrap packages to add arguments (in this case, `-ghci-script`), but I think it would be a lot of work for a package containing many things
<sophiag> hmm
<c74d> simpler solution: a shell alias
<c74d> sophiag: try: environment.shellAliases.ghci = "ghci -ghci-script ${pkgs.writeText "ghci.conf" ''...''}";
<sophiag> i'm trying to avoid imperative hacks that i'll forget to replicate when i inevitably switch machines. that was how the folks on #haskell recommended fixing the ghc-core issue (that or just installing it straight from github) and i was like, ugh not worth it
<c74d> where ... is the lines that you would have in ghci.conf
<sophiag> oh...ok, i see what you're saying
<sophiag> lemme give it a shot
<c74d> `pkgs.writeText name text` creates a file named <name> containing <text>
<c74d> it might need to be `toString (pkgs.writeText ...)` if you get a "cannot coerce ... to string" error
RchrdB has quit [(Ping timeout: 260 seconds)]
takle has quit [(Remote host closed the connection)]
<sophiag> this is inside nixpkgs.config = {..}?
takle has joined #nixos
<c74d> oh
<joncfoo> Anyone use multiple video cards with NixOS? What does your configuration look like?
<c74d> sophiag: I thought this was in configuration.nix
<c74d> oh wait
<sophiag> no it is. i mean inside that statement
<c74d> nixpkgs.config, not ~/.nixpkgs/config
fhoffmeyer1 has joined #nixos
<c74d> apologies
<sophiag> yup
<c74d> no, environment.shellAliases is at the same level as nixpkgs.config
<sophiag> ah ok
<c74d> i.e. at the top-level of the attribute set that constitutes most of one's configuration.nix, unless one's using the `options`/`config` split
johbo has quit [(Quit: Bye)]
<c74d> <https://nixos.org/nixos/options.html> shows most of the options that are available (on stable NixOS)
RchrdB has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
johbo has joined #nixos
<contrapumpkin> that withPlugins works great until someone calls (buildbot.overrideAttrs (...)).withPlugins [ ... ]
<contrapumpkin> how do I refer to myself post-override?
<contrapumpkin> it seems tricky
carlosdagos has quit [(Ping timeout: 260 seconds)]
fhoffmeyer1 has quit [(Ping timeout: 260 seconds)]
<andymandias> is there a common explanation for why the cups daemon (or one of the driver packages it has installed) might not be able to see a file that exists when looking from the terminal?
<sophiag> c74d: are you sure that snippet was correct in terms of closer the ${ ? i'm getting an unexpected $end error
<c74d> hm, I'll try it myself
<sophiag> i may have made a typo, but not sure. it's single quotes for each string and then another set of single quotes for all the strings?
eacameron has joined #nixos
takle has joined #nixos
<c74d> double quotes for "ghci -ghci-script ...", double quotes for "ghci.conf", and double single quotes for ''the contents of the config file''
calvertvl has quit [(Quit: Leaving)]
<sophiag> oh ok. that was it re: the syntax error
<sophiag> still not working when i reload ghci tho :/
griff_ has quit [(Quit: griff_)]
<sophiag> yeah that's what i have
<sophiag> it's rebuilding fine, just not working in ghci
<c74d> sophiag: you'll need to restart your shell, if you haven't
takle has quit [(Ping timeout: 246 seconds)]
drakonis has joined #nixos
<sophiag> i have
<sophiag> err, well i'm in emacs so killed ghci and launched it again
<sophiag> another sidenote i'm sure you can answer...i tried pulling up "nix-env --list-generations" for the first time yesterday and it only had two builds. i always call "nixos-rebuild switch" and was under the impression it was creating a new one each time
Rizy has quit [(Quit: Rizy)]
spacekitteh has quit [(Ping timeout: 240 seconds)]
<c74d> sophiag: nix-env manages per-user profiles, whereas nixos-rebuild affects the system profile; their generations are separate
<sophiag> ah ok
<c74d> sophiag: what does `alias ghci` say?
griff_ has joined #nixos
spacekitteh has joined #nixos
takle has joined #nixos
<sophiag> not found
<sophiag> re: --list-generations, that makes sense since i was watching a video on using nix with haskell NOT nixos. but is there a similar flag for system builds?
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vyNdl
<NixOS_GitHub> nixpkgs/master c808801 Robin Gloster: nix-daemon: fix autoOptimiseStore option
<sophiag> i know i can see them in grub
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyNdR
<NixOS_GitHub> nixpkgs/release-17.03 e87e108 Robin Gloster: nix-daemon: fix autoOptimiseStore option...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyNdE
<NixOS_GitHub> nixpkgs/release-17.03 1afee76 Joachim Schiele: Update python.md (#23669)...
<c74d> sophiag: I don't know, I use `ls /nix/var/nix/profiles` but there may well be a proper Nix command for it
<sophiag> thanks. i'll look it up
RchrdB has quit [(Ping timeout: 246 seconds)]
<c74d> if you're running ghci through some Emacs plugin, I doubt the shell alias will work
<sophiag> oh right...i didn't even think of that
<c74d> can you configure what program the plugin uses as "ghci"?
<sophiag> i may wait until i meet up with some friends who use nixos for work this weekend and ask them this stuff
<sophiag> um, there's no plugin
<c74d> ah
<sophiag> it just launches ghci
takle has quit [(Ping timeout: 260 seconds)]
<sophiag> it's emacs
RchrdB has joined #nixos
<c74d> it's not some Haskell, uh, mode?
<sophiag> yeah i think ghci is part of haskell-mode, but you still have to set what to launch. for example, if you're using stack (i'm not)
<c74d> okay, so you can set what it will launch as "ghci"?
<c74d> can that be configured from configuration.nix?
<sophiag> no
<sophiag> and that's not where you set ghci flags
<sophiag> you just tell it what version to launch
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to master: https://git.io/vyNdQ
<NixOS_GitHub> nixpkgs/master 8eabb34 Nikolay Amiantov: odroid-xu3-bootloader: use 1MB-capable bootloader...
<c74d> I think I'm out of suggestions then
ashkitten has left #nixos ["http://quassel-irc.org - Chat comfortably. Anywhere."]
<sophiag> yeah, i'll ask some friends when i get a chance
<sophiag> i'm more annoyed that ghc-core isn't working tbh
<sophiag> but don't really want to waste more time trying things
<c74d> if you (a) can name the derivation that provides ghci in configuration.nix and (b) can modify the relevant elisp files from configuration.nix, you could set something to `pkgs.writeScriptBin "ghci" "${pkgs.foo}/bin/ghci -ghci-script ${pkgs.writeText "ghci.conf" ''...''}"`
<NixOS_GitHub> [nixpkgs] volth opened pull request #24147: babelstone-han: init at 9.0.2 (master...babelstone-han-9.0.1) https://git.io/vyNFe
<c74d> you could also make a systemd service that runs at boot and writes the options to ~/.ghc/ghci.conf
<sophiag> this has nothing to do with elisp tho
<c74d> (or possibly something called an activation script, which I think is deep dark magic I don't know)
<c74d> oh? apologies; I assumed that ghci was getting invoked from elisp
<sophiag> it is. but emacs doesn't set keys for applications it calls. that just doesn't make sense
<c74d> it doesn't need to, here
takle has joined #nixos
<sophiag> yes, it doesn't
dhess2`` has joined #nixos
<sophiag> which is why "modify the relevant elisp files from configuration.nix" makes no sense
<sophiag> there no relevant elisp files
<c74d> okay, how does Emacs call ghci?
<c74d> or, how do you start ghci from within Emacs?
<NixOS_GitHub> [nixpkgs] volth opened pull request #24148: libvirt: 3.0.0 -> 3.1.0 (master...libvirt-3.1.0) https://git.io/vyNFc
<c74d> (this is likely not going to be productive, though)
<c74d> my second-to-last suggestion was to, from within configuration.nix, modify Emacs (whatever part of it that invokes ghci) to invoke a different program, that being a wrapped ghci
cptchaos has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] volth opened pull request #24149: virt-manager: 1.4.0 -> 1.4.1 (master...virt-manager-1.4.1) https://git.io/vyNFV
cptchaos has joined #nixos
takle has quit [(Ping timeout: 264 seconds)]
dhess2`` has quit [(Ping timeout: 240 seconds)]
drakonis_ has joined #nixos
drakonis__ has joined #nixos
drakonis__ has quit [(Remote host closed the connection)]
drakonis_ has quit [(Read error: Connection reset by peer)]
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vyNFp
<NixOS_GitHub> nixpkgs/master 1cd8add Peter Hoeg: syncthing: 0.14.24 -> 0.14.25
drakonis has quit [(Ping timeout: 264 seconds)]
takle has joined #nixos
RchrdB has quit [(Ping timeout: 268 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
pie__ has quit [(Ping timeout: 258 seconds)]
<c74d> what happened to nix-prefetch-zip?
fhoffmeyer1 has joined #nixos
alx741 has quit [(Quit: alx741)]
<dpren> is there anywhere I can see a complete list of pythonPackages?
Supersonic112 has quit [(Disconnected by services)]
spinus has quit [(Ping timeout: 256 seconds)]
Supersonic112_ has joined #nixos
<c74d> but nix-prefetch-url doesn't give the same hash that fetchzip expects
Supersonic112_ is now known as Supersonic112
<c74d> oh, --unpack
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vyNbx
<NixOS_GitHub> nixpkgs/master 497b34c Peter Hoeg: qtox: 1.8.1 -> 1.9.0
fhoffmeyer1 has quit [(Ping timeout: 264 seconds)]
takle has joined #nixos
ndowens08 has quit [(Ping timeout: 246 seconds)]
gbbrt_ has joined #nixos
Zer000 has joined #nixos
<Zer000> Working with bleeding edge is a pain in the ass but I want to do it anyway. Is there a way for me to get a nix-shell environment with nightly rust? My end game is to compile Ruma (https://github.com/ruma/ruma)
takle has quit [(Ping timeout: 260 seconds)]
gbbrt has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] 8573 opened pull request #24150: rustfmt: 0.7.1 -> 0.8 (master...8573/pkg/update/rustfmt/0.8/1) https://git.io/vyNNz
griff_ has quit [(Quit: griff_)]
mbrgm has quit [(Ping timeout: 240 seconds)]
mbrgm has joined #nixos
griff_ has joined #nixos
<Zer000> My bad, I didn't search the docs. I think having a copy of nixpkgs locally and grepping is key (https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/rust.md#using-the-rust-nightlies-overlay)
ndowens08 has joined #nixos
takle has joined #nixos
ndowens08 has quit [(Client Quit)]
takle has quit [(Ping timeout: 240 seconds)]
sophiag has quit [(Quit: ERC (IRC client for Emacs 24.5.2))]
dhess2`` has joined #nixos
takle has joined #nixos
eacameron has quit [(Quit: Leaving...)]
takle has quit [(Ping timeout: 268 seconds)]
smw_ has joined #nixos
cptchaos has quit [(Ping timeout: 258 seconds)]
dhess2`` has quit [(Ping timeout: 260 seconds)]
<globin> Zer000: those docs only got merged today :)
takle has joined #nixos
<Zer000> globin, well I lucked out. I don't think I can use overlays though
<c74d> hm, I think I'd like to install the Mozilla Rust overlay to get nightly Rust builds but
<c74d> I don't want my Nix store to fill up with a new system generation with a new Rust platform every night
<globin> Zer000: why not?
<Zer000> I'm on 19.09 can I even use the overlay?
<Zer000> I don't really want to switch my channel to unstable
<c74d> I don't suppose there's a supported way to uh… auto-GC old system generations that differ from the current one in only a given derivation?
takle has quit [(Ping timeout: 260 seconds)]
<Zer000> c74d, why not just run nix-collect-garbage?
<c74d> I don't like to delete old derivations without testing that my current one boots successfully, and I'm too (laz|bus)y to reboot regularly
<c74d> s/derivations/generations/
leothrix has quit [(Quit: ZNC 1.6.4 - http://znc.in)]
<smw_> Hi all, I have a nixos sd card image running, but I can't seem to get openssh to start. I added services.openssh.enable = true; and when I do a ps -ef | grep ssh I can't find it.
<globin> Zer000: 17.03-beta should be quite stable as long as you do a nixos-rebuild boot or login again after switching
<smw_> I am also importing <nixpkgs/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix> if that helps
<globin> smw_: the installer disables the wantedBy multi-user.target by default
<Zer000> globin, I'll consider it then
<smw_> globin: but, why?
<globin> smw_: you need to systemctl start sshd
<globin> smw_: the sd card image includes the installer profile which ships ssh but does not start it by default
<smw_> globin: how can I disable its disabling?
takle has joined #nixos
<smw_> yay, I am SSHed in
<globin> smw_: you probably don't want to import the sd-image but use the relevant parts you need from that in your own config
<globin> Zer000: final release is slated for 30 March
griff_ has quit [(Quit: griff_)]
<smw_> globin: hm, it isn't obvious waht is needed or, more importantly, how to integrate it. https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix: I see patchedUboot, but no idea how to integrate that
<Zer000> globin, No way, good work!
andymandias has quit [(Quit: Textual IRC Client: www.textualapp.com)]
leothrix has joined #nixos
<NixOS_GitHub> [nixpkgs] volth opened pull request #24151: far2l: init at 2.1 (master...far2l) https://git.io/vyNxy
<globin> smw_: you can probably ignore the sd-image stuff
<smw_> ok
<globin> I think that's all I included
<globin> and a services.openssh.enable obviously :)
<smw_> globin: yes, of course :-)
takle has quit [(Ping timeout: 240 seconds)]
derjohn_mob has quit [(Ping timeout: 260 seconds)]
<smw_> globin: I am stuck configuring from a serial console right now. Will be awesome to have ssh. Then I need to debug why wifi doesn't work XD
Supersonic112 has quit [(Disconnected by services)]
<globin> smw_: rpi3?
<smw_> globin: yep
Supersonic112_ has joined #nixos
takle has joined #nixos
<globin> smw_: probably needs some updated firmware as far as I have debugged so far
Supersonic112_ is now known as Supersonic112
<smw_> globin: hopefully you end up solving it for me ;-)
fhoffmeyer1 has joined #nixos
<globin> smw_: don't think so, release issues are more pressing and I don't really need the wifi ;)
erlandsona has joined #nixos
takle_ has joined #nixos
<smw_> globin: damn, hopefully this isn't also out of my league. Well, time to get back to work
<smw_> hopefully I can make this thing at least give me ssh on ethernet. Would make debugging easier.
erlandsona has left #nixos []
erlandsona has joined #nixos
<PenguinOfDoom> is there an equivalent to debian's build-essential? figuring out which package to install to get ld(1) isn't the best use of time
<erlandsona> Anyone here know how to change the /boot drive on NixOS? I'm tryingt to change the startup drive from an internal ssd to an internal nvme but my machine keeps using the ssd to boot.
andymandias has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
fhoffmeyer1 has quit [(Ping timeout: 260 seconds)]
<Zer000> erlandsona, have you modified /etc/nixos/hardware-configuration.nix and run nixos-rebuild switch?
takle_ has quit [(Ping timeout: 260 seconds)]
<erlandsona> Here's the output from lsblk http://nixpaste.lbr.uno/0b5BGsXM and...
takle has joined #nixos
froglegstew has quit [(Ping timeout: 240 seconds)]
derjohn_mob has joined #nixos
froglegstew has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
mizu_no_oto has joined #nixos
erlandsona has quit [(Ping timeout: 246 seconds)]
jsgrant- has joined #nixos
alunduil has quit [(Quit: leaving)]
<smw_> globin: I just did a build without swap space
<smw_> silly mistake :-P
<Zer000> smw_, you can always use a swapfile
<smw_> Zer000: yep, restarting now
takle has joined #nixos
erlandsona has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
<erlandsona> asdf
takle has joined #nixos
dhess2`` has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
erlandsona has left #nixos []
hexagoxel has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #24119: j4-dmenu-desktop: 2.14 -> 2.15 (master...pkg-update/j4-dmenu-desktop) https://git.io/vyFDm
dhess2`` has quit [(Ping timeout: 260 seconds)]
takle has joined #nixos
MP2E has quit [(Quit: leaving)]
hexagoxel has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
hamishmack has quit [(Quit: hamishmack)]
mguentner has quit [(Quit: WeeChat 1.7)]
takle has joined #nixos
fhoffmeyer1 has joined #nixos
mguentner has joined #nixos
justanotheruser has joined #nixos
justan0theruser has quit [(Ping timeout: 240 seconds)]
fhoffmeyer1 has quit [(Ping timeout: 246 seconds)]
takle has quit [(Ping timeout: 260 seconds)]
AllanEspinosa has quit [(Ping timeout: 260 seconds)]
takle has joined #nixos
froglegstew has quit [(Ping timeout: 240 seconds)]
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
marusich has joined #nixos
froglegstew has joined #nixos
takle has quit [(Ping timeout: 264 seconds)]
takle has joined #nixos
smw_ has quit [(Quit: Computer has gone to sleep)]
smw_ has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
dhess2`` has joined #nixos
smw_ has quit [(Ping timeout: 246 seconds)]
mguentner2 has joined #nixos
<NixOS_GitHub> [nixpkgs] copumpkin pushed 1 new commit to master: https://git.io/vyAJ0
<NixOS_GitHub> nixpkgs/master 93005b8 Dan Peebles: google-gflags: fix on Darwin...
systemfault has joined #nixos
dhess2`` has quit [(Ping timeout: 260 seconds)]
mguentner has quit [(Ping timeout: 240 seconds)]
fhoffmeyer1 has joined #nixos
mexisme2 has joined #nixos
carlosdagos has joined #nixos
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] copumpkin pushed 1 new commit to master: https://git.io/vyAUs
<NixOS_GitHub> nixpkgs/master 7ad3fd7 Dan Peebles: neuron: fix on clang 3.8 and above...
mexisme has quit [(Ping timeout: 260 seconds)]
mexisme2 has quit [(Read error: Connection reset by peer)]
mexisme has joined #nixos
carlosdagos has quit [(Ping timeout: 260 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
Zer000 has quit [(Quit: Leaving)]
dhess` has joined #nixos
takle has joined #nixos
marusich has quit [(Quit: Leaving)]
takle has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
hamishmack has joined #nixos
indi_ has quit [(Remote host closed the connection)]
indi_ has joined #nixos
dpren has quit [(Quit: Connection closed for inactivity)]
takle has quit [(Ping timeout: 246 seconds)]
endformationage has quit [(Quit: WeeChat 1.6)]
indi_ has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
hamishmack has quit [(Quit: hamishmack)]
takle has quit [(Ping timeout: 240 seconds)]
spacekitteh has quit [(Ping timeout: 258 seconds)]
proteusguy has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] copumpkin opened pull request #24152: gfortran/gcc: simplify & clean up on Darwin (master...gcc-simplify) https://git.io/vyAIe
spacekitteh has joined #nixos
hexagoxel has quit [(Ping timeout: 260 seconds)]
dhess2`` has joined #nixos
hexagoxel has joined #nixos
odi has joined #nixos
<hyper_ch> weird, I installed chromium and chromium-beta but I could only find chromium
odi has quit [(Read error: Connection reset by peer)]
odi has joined #nixos
dhess2`` has quit [(Ping timeout: 260 seconds)]
FRidh has joined #nixos
systemfault has quit [(Quit: Bye!)]
<puffnfresh> hyper_ch: I think they have the same binary name
fiddlerwoaroof has quit [(Ping timeout: 260 seconds)]
fiddlerwoaroof has joined #nixos
Mercuria1Alchemi has joined #nixos
carlosdagos has joined #nixos
carlosdagos has quit [(Ping timeout: 240 seconds)]
jb55 has quit [(Quit: WeeChat 1.7)]
odi has quit [(Remote host closed the connection)]
Wizek has joined #nixos
cfricke has joined #nixos
ebzzry has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
ToxicFrog has quit [(Ping timeout: 240 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
filterfish has quit [(Remote host closed the connection)]
filterfish has joined #nixos
takle has joined #nixos
mbdb92 has quit [(Ping timeout: 264 seconds)]
takle has quit [(Ping timeout: 260 seconds)]
mbdb92 has joined #nixos
takle has joined #nixos
takle has quit [(Ping timeout: 246 seconds)]
ToxicFrog has joined #nixos
dhess2`` has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl closed pull request #24130: scalafmt: 0.6.2 -> 0.6.6 (master...scalafmt-066) https://git.io/vybzh
nil has quit [(Ping timeout: 260 seconds)]
nil has joined #nixos
takle has joined #nixos
dhess2`` has quit [(Ping timeout: 240 seconds)]
martinklepsch has quit [(Ping timeout: 246 seconds)]
martinklepsch|BN has joined #nixos
martinklepsch|BN is now known as martinklepsch
RayNbow`TU has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
RayNbow` has quit [(Ping timeout: 240 seconds)]
<clever> ToxicFrog: you could also inspect the env vars of the main steam gui, that should have /steamrt in it
Rizy has joined #nixos
<clever> steveeJ: it looks like busybox has been used to cross-compile in the past: https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/busybox/default.nix#L79
mexisme2 has joined #nixos
takle has joined #nixos
martinb1 has joined #nixos
griff_ has joined #nixos
proteusguy has joined #nixos
carlosdagos has joined #nixos
periklis has joined #nixos
mexisme has quit [(Ping timeout: 260 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
edef has quit [(Ping timeout: 240 seconds)]
carlosdagos has quit [(Ping timeout: 240 seconds)]
griff_ has quit [(Ping timeout: 240 seconds)]
mexisme2 has quit [(Read error: Connection reset by peer)]
mexisme has joined #nixos
<dhess`> I did not realize that GitHub will merge later commits into a PR if the later commits overlap with it.
<dhess`> I guess it makes sense in the case that you're updating a PR... but when the later commits have nothing to do with the original PR, it sucks.
tsmeets[m] has quit [(Ping timeout: 240 seconds)]
martinb1 has quit [(Read error: Connection reset by peer)]
JagaJaga has joined #nixos
wkennington has joined #nixos
freusque has joined #nixos
Rizy has quit [(Ping timeout: 240 seconds)]
mexisme has quit [(Read error: Connection reset by peer)]
dhess` has quit [(Quit: ERC (IRC client for Emacs 25.1.2))]
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/vyAOw
<NixOS_GitHub> nixpkgs/master fb50cde Franz Pletz: nixos/treewide: systemd.time is in manvolume 7...
katyucha is now known as Guest88673
Guest25285 is now known as katyucha
thip has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to release-17.03: https://git.io/vyAOp
<NixOS_GitHub> nixpkgs/release-17.03 21cb5af Franz Pletz: zfs.autoScrub service: init...
<NixOS_GitHub> nixpkgs/release-17.03 0b6812e Franz Pletz: nixos/treewide: systemd.time is in manvolume 7...
JagaJaga has quit [(Ping timeout: 256 seconds)]
<MichaelRaskin> c74d: well, /run/booted-system is a GC root
dhess2`` has joined #nixos
<c74d> MichaelRaskin: ah, so `nix-collect-garbage -d` won't remove the generation I booted from?
freusque has quit [(Ping timeout: 256 seconds)]
<MichaelRaskin> Yes
<c74d> okay, thanks
freusque has joined #nixos
freusque has quit [(Client Quit)]
dhess2`` has quit [(Ping timeout: 264 seconds)]
freusque has joined #nixos
thc202 has joined #nixos
<c74d> I guess I was confused because all but the current system profile get removed from /nix/var/nix/profiles
<c74d> hm, all the deleted generations seem to still have entries in /boot/loader/entries
takle has joined #nixos
carlosdagos has joined #nixos
teknico has joined #nixos
griff_ has joined #nixos
carlosdagos has quit [(Ping timeout: 260 seconds)]
<Criena[m]> Hi there, is there an easy way to use libressl instead of openssl? For example for nginx.
griff_ has quit [(Ping timeout: 256 seconds)]
markus1219 has quit [(Ping timeout: 256 seconds)]
jensens has joined #nixos
odi has joined #nixos
<clever> c74d: nix-collect-garbage doesnt know how to update the bootloader
<clever> c74d: you have to re-run nixos-rebuild switch/boot to regen that
<c74d> ah
<clever> i have also seen problems in the past, where people managed to not mount /boot
<clever> so it updated the grub.conf in the rootfs, and not on the /boot partition
<clever> then it just doesnt know about the only generation left, and cant boot
carlosdagos has joined #nixos
<clever> and similiar problem, the system just rolling back all changes at every reboot
<MichaelRaskin> Not updating the bootloader after GC means you would have a lot of broken entries, but previous boot configuration would still be accessible
lsix_ has quit [(Ping timeout: 260 seconds)]
RchrdB has joined #nixos
<c74d> okay, I see that, now that I've run `nixos-rebuild boot`, the current generation is the only one left to boot, which is what I hoped wouldn't happen
<MichaelRaskin> There should be also default and configuration previous boot
markus1189 has joined #nixos
<MichaelRaskin> Default is the same as current
bkchr has joined #nixos
<clever> but only generations listed in /nix/var/nix/profiles/system* will be in grub.conf
<clever> and /run/booted-system is only a gc root to prevent garbage collection, but it wont force it into the grub.conf
<MichaelRaskin> Oh? Someone has broken this?
<bkchr> Hi, I'm currently struckling with Bluetooth. I have added "
<bkchr> wrapQtProgram "$out/bin/bluedevil-wizard"
<c74d> `nix-collect-garbage -d` leaves only the current generation in /nix/var/nix/profiles, and this is systemd-boot
<bkchr>  wrapQtProgram "$out/bin/bluedevil-sendfile"
<bkchr>  + # Fix the location of logic.js for the plasmoid
<bkchr>  + ln -s $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/code/logic.js $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/ui/logic.js
<bkchr> 
<bkchr> fuck, sry xD
carlosdagos has quit [(Ping timeout: 256 seconds)]
<clever> c74d: same rules should apply with any bootloader
<MichaelRaskin> c74d: ln -s /run/booted-system /nix/var/nix/profiles/system-0-link
<MichaelRaskin> For now
<clever> that should work, though gen 0 will change each time you reboot
<MichaelRaskin> (and re-nixos-rebuild-boot)
<c74d> I'll try that (I think I even have the proper number for it)
<clever> might be better to ln -sv $(readlink /run/booted-system) /nix/var/nix/profiles/system-0-link
<clever> then 0 will always be the one you booted with now
FRidh has quit [(Remote host closed the connection)]
<MichaelRaskin> clever: I am not sure which is better
<clever> depends a lot on what you want also
FRidh has joined #nixos
<clever> do you always want 0 to change to the last thing you booted with?, or do you want to pin the current one as 0?
<MichaelRaskin> I know that when I was cloning boot list generator, it was obvious to me that booted-system had to be included
<MichaelRaskin> I think in some version NixOS did that correctly
<bkchr> Next try :D I'm struckling with bluetooth, added "hardware.bluetooth.enable = true;" that to my configuration.nix and also added bluedevil and bluez tothe packages list. If I'm trying to connect my bluetooth mouse, that did not work :( Any ideas? Did I miss something?
<MichaelRaskin> I have no idea when and why that was dropped
<clever> MichaelRaskin: i have been interested in configuring fallback in grub to make nixos more bullet proof in remote settings
<c74d> I don't especially care which known-good generation I have as a backup, so long as I have one
<clever> c74d: i generaly dont garbage collect everything, there is also --delete-older-than
<clever> c74d: that will leave several backups in place
<MichaelRaskin> I am not sure next collect-garbage won't collect system-0-link
<c74d> but I'll go back to only GCing after reboots, and maybe follow some issues if you know of any
<clever> MichaelRaskin: ahh yeah, the system-0-link will point to the currently booted nixos, not the one the bootloader points to
<clever> MichaelRaskin: so its better to pin an exact build with readlink
odi has quit [(Remote host closed the connection)]
<c74d> clever: my only known-bootable generation is (was) always the oldest, so I don't think --delete-older-than would help
odi has joined #nixos
alebatt has joined #nixos
<c74d> though I suppose it would have had my practice been to GC all generations save the last two known-bootable ones after booting
<clever> c74d: i think --delete-older-than uses the timestamp of generation x+1 to figure out if it should delete x
<clever> c74d: so it knows when you stopped using x
lsix_ has joined #nixos
<MichaelRaskin> Well, you don't know if x+1 was bootable
<clever> yeah, but if you set a 30d limit, it will keep 1 generation from beyond that 30d limit
thip has quit [(Ping timeout: 268 seconds)]
<clever> and i prefer to test rebooting before deleting generations
<MichaelRaskin> I assumed booted-system will be in the GRUB menu anyway
tinkyholloway has joined #nixos
dhess2`` has joined #nixos
<c74d> a record from when booted-system wasn't GC'd: <https://github.com/NixOS/nixpkgs/issues/6175>
<FRidh> how do you think we should override Python libraries? https://github.com/NixOS/nixpkgs/issues/24154
RchrdB has quit [(Ping timeout: 260 seconds)]
<clever> MichaelRaskin: there are also 2 things keeping the boot profile in the store, /run/booted-system is the main one, but the /proc/*/exe symlinks also root anything running, so the old systemd and dbus and stuff that cant easily restart, are rooting their closures
dhess2`` has quit [(Ping timeout: 264 seconds)]
<NixOS_GitHub> [nixpkgs] peti pushed 1 new commit to release-16.09: https://git.io/vyACZ
<NixOS_GitHub> nixpkgs/release-16.09 2acd6ce Peter Simons: esniper: 2.32.0 -> 2.33.0...
<bkchr> If I'm using nix-shell for installing packages, will they be shared between mutliple different nix-shells or does each nix-shell configuration has its own store?
<clever> bkchr: they all go into the main /nix/store/
goibhniu has joined #nixos
<bkchr> clever: thx :)
<bkchr> I'm using plasma5 and want to change my "digital clock settings" (the clock in the taskbar bottom right), but the menu does not load. May I have some packages not installed?
<c74d> why is nixos-unstable not updating again :<
<c74d> Hydra is down?
<clever> c74d: looks like a bunch of qt things are timing out on build slaves
wkennington has quit [(Read error: Connection reset by peer)]
<c74d> I just see 500 Internal Server Error
<clever> 200 here
<c74d> ah, a reload fixed it
MichaelRaskin has quit [(Quit: MichaelRaskin)]
__Sander__ has joined #nixos
nschoe has joined #nixos
griff_ has joined #nixos
layus has joined #nixos
griff_ has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] qknight closed pull request #24149: virt-manager: 1.4.0 -> 1.4.1 (master...virt-manager-1.4.1) https://git.io/vyNFV
<NixOS_GitHub> [nixpkgs] FRidh opened pull request #24155: Python: add buildPythonPackage.overridePythonPackage method. (master...override) https://git.io/vyAlZ
ThatDocsLady has joined #nixos
Rizy has joined #nixos
<goibhniu> hi bkchr, FWIW it also doesn't load for me
Rizy has quit [(Remote host closed the connection)]
<bkchr> goibhniu: Okay, maybe it is really a missing qml file.
<bkchr> goibhniu: I want to change the time format to 24h and as far as I remember, I can change that using that menu^^
takle has quit [(Remote host closed the connection)]
<goibhniu> hrm ... I'm pretty sure I'm using the 24h clock ... but I can't find that setting in other options from the panel
<goibhniu> maybe it worked before
takle has joined #nixos
carlosdagos has joined #nixos
hexagoxel has quit [(Ping timeout: 256 seconds)]
ndowens08 has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
derjohn_mob has quit [(Ping timeout: 260 seconds)]
hexagoxel has joined #nixos
<globin> niksnut: are you aware that hydra no longer keeps the build logs?
takle has joined #nixos
<ndowens08> Hello
dhess2`` has joined #nixos
Wizek has quit [(Ping timeout: 258 seconds)]
<clever> globin: he is, they are now in the binary cache
<clever> globin: "if you urgently need a log, you can find them at URIs like: https://cache.nixos.org/log/l9qmwi2q0dk4ji8pcycc188gank0q5pb-pointedalternative-0.1.0.0.drv"
<globin> ah ok :)
<clever> globin: and the new nixUnstable has "nix log" which i think can query the binary cache for logs
dhess2`` has quit [(Ping timeout: 260 seconds)]
proteusguy has quit [(Remote host closed the connection)]
ThatDocsLady is now known as ThatDocsLady_mtg
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vyAR1
<NixOS_GitHub> nixpkgs/master 9c730bc Robin Gloster: clooj: fix url
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyARD
<NixOS_GitHub> nixpkgs/release-17.03 7c65cc8 Robin Gloster: clooj: fix url...
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to master: https://git.io/vyARj
<NixOS_GitHub> nixpkgs/master 4263c53 Frederik Rietdijk: Python changelog
<ndowens08> I am on unstable-small so why don't I have the new 'nix' cmd
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to release-17.03: https://git.io/vyA0t
<NixOS_GitHub> nixpkgs/release-17.03 5d25fd1 Frederik Rietdijk: Python changelog...
<NixOS_GitHub> [nixpkgs] FRidh closed pull request #22778: Python changelog - do not merge (master...changelog) https://git.io/vD65J
bkchr has quit [(Ping timeout: 240 seconds)]
<avn> ndowens08: newer nix not yet merged nixpkgs, idk about merging plans
<ndowens08> Oh.
bkchr has joined #nixos
nschoe has quit [(Ping timeout: 264 seconds)]
bkchr has quit [(Read error: Connection reset by peer)]
bkchr has joined #nixos
ndowens08 has quit [(Quit: Mutter: www.mutterirc.com)]
<clever> nil: its in the nixUnstable attribute
<clever> oops
<clever> just missed him
mudri has joined #nixos
tsmeets[m] has joined #nixos
justbeingglad has joined #nixos
justbeingglad has left #nixos []
civodul has joined #nixos
Rizy has joined #nixos
alebatt has quit [(Ping timeout: 258 seconds)]
ebzzry has joined #nixos
<NixOS_GitHub> [nixpkgs] smolak opened pull request #24156: nodejs-7_x: 7.7.2 -> 7.7.3 (master...bump-nodejs-version) https://git.io/vyAug
<NixOS_GitHub> [nixpkgs] mdaiter opened pull request #24157: riak: switch interpreter version (master...riakTouchups) https://git.io/vyAud
<NixOS_GitHub> [nix] edolstra pushed 2 new commits to 1.11-maintenance: https://git.io/vyAuN
<NixOS_GitHub> nix/1.11-maintenance 9504bcf Vladimír Čunát: nix-env: respect meta.outputsToInstall...
<NixOS_GitHub> nix/1.11-maintenance 201ad43 Eelco Dolstra: Bump version to 1.11.8
mog has quit [(Ping timeout: 240 seconds)]
[0x4A6F] has quit [(Ping timeout: 240 seconds)]
[0x4A6F] has joined #nixos
<LnL> oh, what's in 1.11.8?
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vyAz4
<NixOS_GitHub> nixpkgs/master b9f56c9 Peter Hoeg: handbrake: force link libx265
<niksnut> netrc support
tsmeets[m] has quit [(Ping timeout: 258 seconds)]
nschoe has joined #nixos
Rizy has quit [(Quit: Rizy)]
Rizy has joined #nixos
tsmeets[m] has joined #nixos
dhess2`` has joined #nixos
<NixOS_GitHub> [hydra] edolstra pushed 1 new commit to master: https://git.io/vyA2I
<NixOS_GitHub> hydra/master 57bc0ea Eelco Dolstra: hydra-queue-runner: Limit concurrent database connections...
civodul has quit [(Remote host closed the connection)]
dhess2`` has quit [(Ping timeout: 240 seconds)]
MinceR has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] mdorman opened pull request #24159: Automated emacs package updates: 2017-03-20 (master...emacs-updates) https://git.io/vyAwe
MinceR has joined #nixos
ThatDocsLady_mtg is now known as ThatDocsLady
<NixOS_GitHub> [nixpkgs] LnL7 pushed 2 new commits to master: https://git.io/vyArx
<NixOS_GitHub> nixpkgs/master 8ebe715 Matthew Daiter: riak: switch interpreter version
<NixOS_GitHub> nixpkgs/master 4ea01af Daiderd Jordan: Merge pull request #24157 from mdaiter/riakTouchups...
<NixOS_GitHub> [nixpkgs] LnL7 closed pull request #24157: riak: switch interpreter version (master...riakTouchups) https://git.io/vyAud
<NixOS_GitHub> [nixpkgs] mdaiter opened pull request #24160: riak: adding myself as maintainer (master...riakMaintain) https://git.io/vyAos
abbradar has joined #nixos
edef has joined #nixos
ebzzry has quit [(Ping timeout: 268 seconds)]
fhoffmeyer1 has quit [(Ping timeout: 240 seconds)]
griff_ has joined #nixos
<NixOS_GitHub> [nix] bjornfor opened pull request #1284: Improve install script (master...install-script) https://git.io/vyAiE
xadi has joined #nixos
<LnL> \o/
<sziszi> hey
dhess2`` has joined #nixos
<sziszi> LnL: few days ago you shared a gist where you explained how to set up a custom neovim installation
<LnL> right
<sziszi> you wrote in the gist "lnl.neovim = ..." and i got it working by "neovim = "
<sziszi> how could I install it with the custom attribute
<sziszi> ?
<LnL> yeah, with the example I made you'd have to use nix-env -f '<nixpkgs>' -iA lnl.neovim, or add pkgs.lnl.neovim to your systemPackages
<sziszi> I tried the former but didnt worked out
<sziszi> i used -f .nixpkgs/config.nix
<sziszi> IIRC
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging: https://git.io/vyAPw
<NixOS_GitHub> nixpkgs/staging 3760c8c Frederik Rietdijk: Python: replace mkPythonDerivation with buildPythonPackage and format="other";...
xadi has quit [(Quit: Leaving.)]
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging: https://git.io/vyAPH
<NixOS_GitHub> nixpkgs/staging 94eb74e Frederik Rietdijk: Merge remote-tracking branch 'upstream/master' into HEAD
dhess2`` has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging-17.03: https://git.io/vyA1P
<NixOS_GitHub> nixpkgs/staging-17.03 504323c Frederik Rietdijk: Python: replace mkPythonDerivation with buildPythonPackage and format="other";...
<FRidh> looks like we're getting a nixpkgs-unstable channel update
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vyA1N
<NixOS_GitHub> nixpkgs/master 37c31c6 Robin Gloster: ponyc: segfaults on i686
<clever> sziszi: nix-env -f .nixpkgs/config.nix just wont work, you have to point -f to the default.nix at the root of a nixpkgs tree, and that nixpkgs then has to load a config.nix
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to master: https://git.io/vyAMc
<NixOS_GitHub> nixpkgs/master 29f57ac Franz Pletz: gitlab: 8.16.6 -> 8.17.4 for CVE-2017-0882
<NixOS_GitHub> nixpkgs/master 4bd12fa Franz Pletz: gitlab module: explicitely create pages shared path...
<NixOS_GitHub> nixpkgs/master 219e91b Franz Pletz: gitlab: add rake task to delete tokens...
deepfire has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to release-17.03: https://git.io/vyADg
<NixOS_GitHub> nixpkgs/release-17.03 cce5458 Franz Pletz: gitlab: 8.16.6 -> 8.17.4 for CVE-2017-0882...
<NixOS_GitHub> nixpkgs/release-17.03 049c9d4 Franz Pletz: gitlab module: explicitely create pages shared path...
<NixOS_GitHub> nixpkgs/release-17.03 fc22149 Franz Pletz: gitlab: add rake task to delete tokens...
mog has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to release-16.09: https://git.io/vyADw
<NixOS_GitHub> nixpkgs/release-16.09 40a64e4 Franz Pletz: gitlab: 8.16.6 -> 8.17.4 for CVE-2017-0882...
<NixOS_GitHub> nixpkgs/release-16.09 49a08ce Franz Pletz: gitlab module: explicitely create pages shared path...
<NixOS_GitHub> nixpkgs/release-16.09 70b2fc1 Franz Pletz: gitlab: add rake task to delete tokens...
spion_ is now known as spion
ThatDocsLady has quit [(Quit: Arma-geddin-outta-here!)]
<sziszi> clever: i'm looking into it, thx
deepfire has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] globin closed pull request #23838: fetch-*: remove md5 support (master...remove-md5) https://git.io/vy6i4
xadi has joined #nixos
<contrapumpkin> in Hydra, I see e.g., "fox.x86_64-darwin" show up in the "now fail" tab: http://hydra.nixos.org/eval/1343096?compare=trunk#tabs-now-fail
<contrapumpkin> but it seems like it fails in nixpkgs/trunk as well
<contrapumpkin> so I'm confused why it's in the "now fail" tag
uralbash has quit [(Ping timeout: 258 seconds)]
amir has quit [(Ping timeout: 260 seconds)]
derjohn_mob has joined #nixos
<NixOS_GitHub> [nixpkgs] pSub pushed 1 new commit to master: https://git.io/vyAyp
<NixOS_GitHub> nixpkgs/master 8aacf21 Pascal Wittmann: fbida: 2.12 -> 2.13
ryanartecona has joined #nixos
derjohn_mobi has joined #nixos
smw_ has joined #nixos
xvapx has quit [(Ping timeout: 240 seconds)]
reinzelmann has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to release-17.03: https://git.io/vyASn
<NixOS_GitHub> nixpkgs/release-17.03 7ea9cdf Robin Gloster: fetch-*: remove md5 support...
<NixOS_GitHub> nixpkgs/release-17.03 36262fc Robin Gloster: fetch-*: add md5 support removal to rl-notes...
<NixOS_GitHub> [nixpkgs] pSub pushed 1 new commit to master: https://git.io/vyAS0
<NixOS_GitHub> nixpkgs/master a20fa00 Pascal Wittmann: fbida: add dependency to lirc
jensens has quit [(Ping timeout: 240 seconds)]
smw_ has quit [(Client Quit)]
<NixOS_GitHub> [nixpkgs] globin closed pull request #23641: security-wrapper: Don't remove the old paths yet as that can create migration pain (master...parnell/fix-wrapper-migration) https://git.io/vyujT
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to master: https://git.io/vyASu
<NixOS_GitHub> nixpkgs/master 4c751ce Parnell Springmeyer: security-wrapper: Don't remove the old paths yet as that can create migration pain
<NixOS_GitHub> nixpkgs/master f2ff646 Robin Gloster: Merge pull request #23641 from awakenetworks/parnell/fix-wrapper-migration...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyASV
<NixOS_GitHub> nixpkgs/release-17.03 cbbb889 Parnell Springmeyer: security-wrapper: Don't remove the old paths yet as that can create migration pain...
<dtzWill> so uh I've been creating derivations with....100k-1million+ files.... turns out that is an even worse idea than it sounds when using auto-optimise-store=true LOL. That said, I wonder why we don't use a tiered heirarchy for /nix/store/.links? Intentionally not done or is that open to discussion? :)
mkoenig has joined #nixos
<dtzWill> in the meantime, once I clean this up :( I'll avoid creating quite so many files lol :P
<NixOS_GitHub> [nix] edolstra pushed 1 new commit to 1.11-maintenance: https://git.io/vyA9o
<NixOS_GitHub> nix/1.11-maintenance 206b61b Eelco Dolstra: useChroot -> useSandbox...
<NixOS_GitHub> [nixpkgs] pSub pushed 1 new commit to master: https://git.io/vyA9D
<NixOS_GitHub> nixpkgs/master 3411061 Pascal Wittmann: xlockmore: 5.50 -> 5.51
<clever> dtzWill: i have also been thinking about tiering, trying to delete even 1 storepath with nix-store --delete takes anywhere from 2 minutes to 30minutes
proteusguy has joined #nixos
<clever> dtzWill: no matter how little you delete, nix wants to review .links for any file with a link-count of 1 (only the .link entry)
<NixOS_GitHub> [nixpkgs] abbradar opened pull request #24162: mesa: enable texture floats by default (master...texture-floats) https://git.io/vyA9x
<dtzWill> clever: yep, and same experience re:deleting (and gc) taking minutes, often much longer
bkchr has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] pSub pushed 1 new commit to master: https://git.io/vyAHO
<NixOS_GitHub> nixpkgs/master e1ac3a9 Pascal Wittmann: pdfpc: 4.0.5 -> 4.0.6
<NixOS_GitHub> [nixpkgs] mdaiter opened pull request #24163: riak: adding Darwin support (master...riakMacSupport) https://git.io/vyAH8
bkchr has joined #nixos
deepfire has joined #nixos
ndowens08 has joined #nixos
freusque has quit [(Ping timeout: 246 seconds)]
dhess2`` has joined #nixos
civodul has joined #nixos
deepfire has quit [(Ping timeout: 246 seconds)]
alebatt has joined #nixos
<NixOS_GitHub> [nixpkgs] copumpkin closed pull request #24152: gfortran/gcc: simplify & clean up on Darwin (master...gcc-simplify) https://git.io/vyAIe
dhess2`` has quit [(Ping timeout: 240 seconds)]
deepfire has joined #nixos
bkchr has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] joachifm pushed 4 new commits to master: https://git.io/vyA7W
<NixOS_GitHub> nixpkgs/master b71b1b6 Michael Alan Dorman: elpa-packages: 2017-03-20
<NixOS_GitHub> nixpkgs/master 2126246 Michael Alan Dorman: melpa-stable-packages: 2017-03-20
<NixOS_GitHub> nixpkgs/master 06795f7 Michael Alan Dorman: melpa-packages: 2017-03-20
alebatt has quit [(Ping timeout: 260 seconds)]
deepfire has quit [(Ping timeout: 264 seconds)]
<NixOS_GitHub> [nixpkgs] HeeL opened pull request #24165: terminal-parrot: init at 1.1.0 (master...init-party-parrot) https://git.io/vyA7K
mudri has quit [(Ping timeout: 256 seconds)]
amir has joined #nixos
revtintin has joined #nixos
griff_ has quit [(Quit: griff_)]
c0bw3b has joined #nixos
bkchr has joined #nixos
jensens has joined #nixos
calvertvl has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 3 new commits to master: https://git.io/vyAdu
<NixOS_GitHub> nixpkgs/master 9634d9e Adelbert Chang: coursier: init at 1.0.0-M15
<NixOS_GitHub> nixpkgs/master 8d182a7 Adelbert Chang: coursier: makeWrapper as nativeBuildInputs, add adelbertc and nequissimus as maintainers
<NixOS_GitHub> nixpkgs/master e361bc4 Tim Steinbach: Merge pull request #24108 from adelbertc/coursier-1-0-0-M15...
odi has quit [(Ping timeout: 264 seconds)]
jensens has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] HeeL opened pull request #24166: Fix mkdir for fetchgx to not throw an exception (master...fix-mkdir-in-fetchgx) https://git.io/vyAdN
<schoppenhauer> hi. I see there is a release-17.03 branch. is this stable yet?
<gchristensen> schoppenhauer: not yet
<schoppenhauer> ok
<contrapumpkin> niksnut: is the order of the binary-caches list significant? I put the one I wanted more earlier in the list and a "fallback" later, but it seems to be moaning about the fallback not responding within 5 seconds (it's actually unreachable right now)
<contrapumpkin> furthermore, it seems to be waiting indefinitely for it
<schoppenhauer> is hydra stuck again? I didnt have an upgrade since a few days
<niksnut> contrapumpkin: well, any paths missing in the first cache will still be looked up in the next
<contrapumpkin> hmm, but it's "still waiting" for nix-cache-info from the second one
<contrapumpkin> the whole thing is offline unfortunately so it'll never get an answer
<contrapumpkin> does download-from-binary-cache.pl wait indefinitely?
<niksnut> don't think so
<niksnut> but in any case, you shouldn't add binary caches that don't work :p
proteusguy has quit [(Ping timeout: 260 seconds)]
deepfire has joined #nixos
<contrapumpkin> niksnut: sure, it's just baked into an image and isn't accessible from this location
<contrapumpkin> and I figured it wouldn't look at the second one if the first one worked
<contrapumpkin> but I think it tries eagerly to find out if the cache works
<contrapumpkin> also it does seem to be waiting indefinitely
<contrapumpkin> or at least for the past several minutes :)
<contrapumpkin> passing in --option connect-timeout 5 helped it along
<contrapumpkin> sigh
<contrapumpkin> :)
jsgrant- has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
jensens has joined #nixos
jsgrant- has joined #nixos
deepfire has quit [(Ping timeout: 240 seconds)]
ebzzry has joined #nixos
proteusguy has joined #nixos
<NixOS_GitHub> [nix] edolstra pushed 5 new commits to master: https://git.io/vyANH
<NixOS_GitHub> nix/master 4fc3092 Shea Levy: istringstream_nocopy: Implement in a standards-compliant way....
<NixOS_GitHub> nix/master 20df50d Eelco Dolstra: Merge branch 'darwin-s3-binary-cache-store' of https://github.com/shlevy/nix
<NixOS_GitHub> nix/master 3229f85 Eelco Dolstra: Honor $NIX_SSHOPTS again...
periklis has quit [(Ping timeout: 264 seconds)]
ndowens08 has quit [(Quit: Mutter: www.mutterirc.com)]
<NixOS_GitHub> [nixpkgs] edolstra pushed 1 new commit to master: https://git.io/vyAAs
<NixOS_GitHub> nixpkgs/master 2cb25f8 Eelco Dolstra: nix: 1.11.7 -> 1.11.8
<NixOS_GitHub> [nix] edolstra tagged 1.11.8 at a023452: https://git.io/vyAAZ
odi has joined #nixos
<contrapumpkin> \o/ niksnut
<gchristensen> nice!
ebzzry has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] pSub closed pull request #24165: terminal-parrot: init at 1.1.0 (master...init-party-parrot) https://git.io/vyA7K
deepfire has joined #nixos
<domenkozar> woot
cptchaos has joined #nixos
<domenkozar> that's with netrc
<domenkozar> !m Shados
<[0__0]> You're doing good work, Shados!
<domenkozar> !m shlevy
<[0__0]> You're doing good work, shlevy!
<domenkozar> !m niksnut
<[0__0]> You're doing good work, niksnut!
alebatt has joined #nixos
<domenkozar> shlevy: are you willing to work on https://github.com/NixOS/nix/pull/1027
<domenkozar> to convert to CPAN thingies
<contrapumpkin> niksnut: so I think the new c++ downloader won't have the default timeout of 0, so it won't be a big deal with nixUnstable, but defaulting a timeout to 0 makes me sad in 1.11.7 :)
takle has quit [(Remote host closed the connection)]
cpennington has joined #nixos
mudri has joined #nixos
<contrapumpkin> any thoughts on https://github.com/NixOS/nixpkgs/issues/24167?
pie__ has joined #nixos
<NixOS_GitHub> [nixpkgs] domenkozar pushed 4 new commits to master: https://git.io/vyApS
<NixOS_GitHub> nixpkgs/master ff2e2e8 Evan Danaher: nginx: Add alias configuration option for hosts and locations....
<NixOS_GitHub> nixpkgs/master e7358b1 Evan Danaher: nginx: Assert that either root or alias is null....
<NixOS_GitHub> nixpkgs/master a092469 Evan Danaher: nginx: disallow alias directive on server level; it doesn't work.
dhess2`` has joined #nixos
<taeradan> hi
<NixOS_GitHub> [nix] edolstra pushed 2 new commits to master: https://git.io/vyAhj
<NixOS_GitHub> nix/master 4bb3859 Eelco Dolstra: Restore cache.nixos.org as the default substituter...
<NixOS_GitHub> nix/master ecbc3fe Eelco Dolstra: Require signatures by default...
dhess2`` has quit [(Ping timeout: 268 seconds)]
<taeradan> why are we stuck on the commit "2839b10" on the nixos-unstable branch ? Is something broken ? Or is hydra just slow ?
ryanartecona has quit [(Quit: ryanartecona)]
<domenkozar> taeradan: http://howoldis.herokuapp.com/
<domenkozar> it should've been updated
<domenkozar> 4h ago
erasmas has joined #nixos
ebzzry has joined #nixos
freusque has joined #nixos
sellout- has joined #nixos
ndowens08 has joined #nixos
<NixOS_GitHub> [nixpkgs] fadenb opened pull request #24168: emby: 3.2.5 -> 3.2.8 (master...emby_3.2.8) https://git.io/vyxvt
danharaj has joined #nixos
ndowens08 has quit [(Client Quit)]
Rotaerk has quit [(Quit: Leaving)]
SadAwkUser has joined #nixos
<SadAwkUser> Hi. Is it possible to have a awk script using a shebang in NixOS without hardcoding the path to the Nix store?
<calvertvl> SadAwkUser: use /usr/bin/env awk
<calvertvl> that works across all Linux, as far as I'm aware
<SadAwkUser> I tried, but I guess I have to pass '-f' to awk to make it work.
<contrapumpkin> SadAwkUser: https://github.com/shlevy/long-shebang
<contrapumpkin> try that
<SadAwkUser> I'm gonna try that. Thank you very much, @contrapumpkin.
ixxie has joined #nixos
<contrapumpkin> I think it's a package in nixpkgs
<contrapumpkin> (also, I hate the one argument thing in shebangs)
<contrapumpkin> such a stupid limitations
<calvertvl> yes, it is a package in nixpkgs
jsgrant- has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
<contrapumpkin> another option is to use nix-shell as your long-shebang
<contrapumpkin> which is more likely to be in your $PATH by default
<contrapumpkin> but it feels slightly wrong
alebatt has quit [(Ping timeout: 264 seconds)]
alx741 has joined #nixos
ehanson has joined #nixos
alx741 has quit [(Client Quit)]
Rizy_ has joined #nixos
alx741 has joined #nixos
Rizy has quit [(Ping timeout: 240 seconds)]
Rizy_ is now known as Rizy
alx741 has quit [(Client Quit)]
alx741 has joined #nixos
alx741 has quit [(Client Quit)]
alx741 has joined #nixos
<SadAwkUser> Everything working. Thanks again, contrapumpkin. but it really is a strange limitation. No idea why it is still like this.
<contrapumpkin> some abstract notion of compatibilty I assume, even though nobody really cares
<ronny> abbradar: ping wrt my bumblebee noveau issue
takle has joined #nixos
mw has quit [(Ping timeout: 260 seconds)]
<abbradar> ronny: oh, sorry, got a bit overloaded lately
<abbradar> let's see, I'll prepare a little patch for you that enables bumblebee debug logging
<Criena[m]> Hi there, does someone have a hint where I should put the ldap.conf (TLS_CACERT ...) for PHP?
<ronny> abbradar: nm, if you are pressed too much i can still deal (i just have to hold dearly onto my system generation 124)
<Criena[m]> I tried /etc/ldap.conf, /etc/openldap/ldap.conf and /etc/ldap/ldap.conf. None worked.
<calvertvl> I'm looking at Travis logs for PRs and seeing a lot still failing, with eval-release.nix killed by stdenv/setup...
<abbradar> ronny: nah, currently it's okay, this was yesterday
<ronny> abbradar: can we perhaps get a debug boolean for the options?
SadAwkUser has quit [(Quit: Page closed)]
<ronny> (i suspect on occasion bumblebee issues will show up again anyway)
<abbradar> ronny: good idea
periklis has joined #nixos
RchrdB has joined #nixos
mw has joined #nixos
<ronny> i wish i could just save a generation of my system profile as a alternate profile to boot into it easyly
<contrapumpkin> :)
mkoenig has quit [(Remote host closed the connection)]
<calvertvl> Looks like the travis kill issue may be related to a timeout? it created the tarball fine on my system in about 6.5 minutes but was killed on travis after about 4
<abbradar> ronny: apply https://github.com/abbradar/nixpkgs/commit/2ca715232a25b40a6da0f53f6fbae3033c2bd515 and set "services.bumblebee.debug = true". let's first test with nvidia blob (it works for me now)
ebzzry has quit [(Ping timeout: 260 seconds)]
<abbradar> run "primus/optirun glxgears" and paste "journalctl -eu bumblebeed" output somewhere
odi has quit [(Ping timeout: 268 seconds)]
jensens has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] domenkozar pushed 1 new commit to staging-17.03: https://git.io/vyxtb
<NixOS_GitHub> nixpkgs/staging-17.03 b9608a9 Domen Kožar: git, openssl, curl: Respect $NIX_SSL_CERT_FILE...
<abbradar> ronny: BTW, I think you don't need bumblebee with nouveau at all nowadays
<abbradar> you can just set DRI_PRIME=1
Mercuria1Alchemi has quit [(Ping timeout: 264 seconds)]
<ronny> abbradar: i just did set up bumblebee because it fixes multi screen issues with docing stations for me
<ronny> where would i set DRI_PRIME=1 `
<abbradar> ronny: for example "DRI_PRIME=1 glxgears"
<abbradar> it should "just work"
<abbradar> you'd need to disable bumblebee for that to work
dhess2`` has joined #nixos
<ronny> abbradar: does multi screen and docing stations work those days?
<ronny> (i have a lenove 541, a docking station and a hdmi screen on it, it wouldnt work back when i tried without bumblebee on 16.03/09
<abbradar> ronny: this heavily depends on your configuration (is second monitor attached to intel or to nvidia)
<ronny> abbradar: as far as i understand the second monitor is on the nvidia
<philipp[m]> garbas: When I tried to do the PR for nixos-weekly I needed to touch one file in content the first time I while serving to get any site at all in my browser. Is that expected behaviour?
<ronny> abbradar: hmm, also note, that if i reboot into a current system, x11 will not start
<abbradar> ronny: hm, this shouldn't be related to bumblebee
<globin> domenkozar: thanks :)
<ronny> abbradar: how do i figure that detail then?
<abbradar> (i assumed that you meant "my _secondary_ X server keeps crashing" in the issue)
<abbradar> (the one that bumblebeed starts)
<abbradar> let me take a look at your logs...
dhess2`` has quit [(Ping timeout: 240 seconds)]
<ronny> i see
<ronny> i#ll reconfigure a system without bumblebee at all and reboot
<abbradar> ronny: do you have nouveau in videoDrivers?
<garbas> philipp[m]: are you running: nix-shell --run "python run.py"?
<abbradar> (and, importantly, no nvidia)
<garbas> philipp[m]: let me check
<philipp[m]> garbas: ran it as two commands, not one but that shouldn't matter, I guess.
<ronny> abbradar: actually not, i have no such setting, i think i can presume it worked by pure accident and now someone fixed it up and it broke
marsam has joined #nixos
<abbradar> ronny: use ''videoDrivers = [ "intel" "nouveau" ]''
skyraider_ has joined #nixos
<abbradar> in services.xserver
<ronny> abbradar: its set up, i#ll reboot now
<garbas> philipp[m]: i just pushed a fix. can you try if this fixes it?
<abbradar> ronny: good luck!
<philipp[m]> Sure
<ronny> abbradar: complete failure
<ronny> abbradar: is there any sensible wy to interact with the failing system, it keeps trying to start the xserver and messes up normal temrinal usage by flickering to tty1 all the time
<philipp[m]> garbas: Looks good now for me.
<garbas> philipp[m]: +1
<philipp[m]> ronny stop the display-manager service via ssh if possible.
<NixOS_GitHub> [nixpkgs] HeeL opened pull request #24171: Remove old version of sbt because of the latest sbt update (master...remove-old-version-of-sbt) https://git.io/vyxO1
<abbradar> ronny: ugh. what display manager do you use?
mkoenig has joined #nixos
<philipp[m]> abbradar: Imho the service in nixos is aways called display-manager.service
<ronny> abbradar: gdm+gnome3
<abbradar> philipp[m]: yeah, i meant display manager the nixos module
cfricke has quit [(Quit: WeeChat 1.7)]
ehanson has quit [(Quit: Leaving)]
jsgrant- has joined #nixos
<abbradar> ronny: nixos has start limits on display manager, seems that GDM doesn't crash when X is crashed and instead just restarts it
ryanartecona has joined #nixos
<abbradar> this prevents it from being properly stopped after some time
<ronny> i see
<ronny> is there a alternative on nixos that will allow me to lock the screen/switch users?
<abbradar> anyway, you can try to use slim or whatever for the purposes of debugging
<ronny> ok, on it#
<abbradar> oh wait
<abbradar> upload X.log.old somewhere
<abbradar> maybe it has some hints
<gchristensen> we have 104,104 commits right now
<ronny> im just booting that syystem again
jsgrant has joined #nixos
<abbradar> ronny: ah, I assumed you chat from the same system for some reason (you staying online didn't confuse me :D)
<abbradar> gchristensen: ^_^
<gchristensen> :)
Rizy has quit [(Quit: Rizy)]
<ronny> abbradar: my irssi is on a different box on the net, i switched ssh tmux between systems like 10 times in the last 20 minutes
<ronny> abbradar: https://github.com/NixOS/nixpkgs/issues/23628 - added the logs
<abbradar> ronny: oh, that explains it :D
<ronny> i#ll just flip from gdm to slim
<philipp[m]> PSA: Matrix is great for those problems with IRC. It bridges to IRC and on your end you can have mulitple devices logged into the same account, all with the same history.
<abbradar> ronny: interesting; there is no mention of "nouveau" in the log
<ronny> abbradar: actually even xrandr only shows the intel, im most bemused
<abbradar> ronny: it seems as if nouveau isn't even installed
<abbradar> hm
<ronny> philipp[m]: yes, but my irc client needs 60mb of ram, a matrix homeserver needs gigabytes or so
<abbradar> ronny: try this log actually seems okay, maybe that's not the bad one. the only strange thing is no nouveau
<abbradar> -try*
<abbradar> let's try with slim. backup the log after it fails
<philipp[m]> ronny mine is running at 667 MB, but I get your point.
<abbradar> you need X.0.log
jsgrant has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
<ronny> abbradar: it faild again, i got the log, uploading
<abbradar> ronny: ....shit, I remembered something. I think at some point we have switched X logs to journald
<abbradar> let's see this one but I feel it's just old
<abbradar> check modification dates
<abbradar> anyway it should have been saved in journal
<ronny> 13. Sep 2016 - lol damn
<ronny> seriously systemd and muscle memory
<abbradar> I bumped into this hard some time ago just like you now
<abbradar> tried to debug something and wondered why nothing changed for hours
digitus has joined #nixos
<ronny> in theory i love journalcontrol
<ronny> in practice muslce memory and wally make splat heads
<ronny> *walls
<abbradar> I head several log corruptions at most delicate moments but the filtering interface is nice
<abbradar> anyway let's not start {pro,contra}-systemd rant now :D
<avn> abbradar: actually X not stream all to console/systemd, so ability to turn logging back to file would be nice
<NixOS_GitHub> [nixpkgs] edolstra pushed 1 new commit to master: https://git.io/vyxc0
<NixOS_GitHub> nixpkgs/master cb49c14 Eelco Dolstra: Revert "nixos-container: Use machinectl shell (#18825)"...
<ronny> avn: i uploaded the complete log of the last boot, only the system name replaced
<abbradar> ronny: ugh, it says "intel module doesn't exist"
cptchaos has quit [(Remote host closed the connection)]
<abbradar> can you show me your "videoDrivers" option?
Wizek has joined #nixos
cptchaos has joined #nixos
<ronny> omg kill me
<abbradar> avn: I think there is
<ronny> i have "intel nouveau", missing the middle " "
<abbradar> ronny: don't blame only yourself, blame not enough assertions in NixOS
<ronny> can we pleae get constants / extenible named ennums
<abbradar> we should detect this somehow... I think there was some recent modules work which could help
<kriztw> stringy types :/
<ronny> using strings to epxress enuls is retarded
<abbradar> ronny: I think we got extensible enums some time ago
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to release-17.03: https://git.io/vyxCC
<NixOS_GitHub> nixpkgs/release-17.03 a0134b9 Eelco Dolstra: nix: 1.11.7 -> 1.11.8...
<abbradar> (not sure but we definitely had a PR)
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to release-16.09: https://git.io/vyxCl
<NixOS_GitHub> nixpkgs/release-16.09 6521c34 Eelco Dolstra: nix: 1.11.7 -> 1.11.8...
<ronny> abbradar: i recall that as well
<ronny> abbradar: btw, any idea when your fix will hit the channels? (its a bit of a pain to build from a patch on top of a tracked channel)
<ronny> brb, reboot
alebatt has joined #nixos
<abbradar> ronny: no idea, I haven't checked up on Hydra for some time but I think we are close
<abbradar> at least nixos-unstable-small was released recently
jsgrant has joined #nixos
<ronny> i see
<ronny> abbradar: ok, slim works, gdm fails, will upload a new log
bkchr has quit [(Quit: Konversation terminated!)]
<ronny> abbradar: uplaoded
bkchr has joined #nixos
ixxie has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vyxWA
<NixOS_GitHub> nixpkgs/master 6421845 Jörg Thalheim: pythonPackages.podcastparser: init at 0.6.1
<NixOS_GitHub> nixpkgs/master a3bce1b Jörg Thalheim: gpodder: 3.9.1 -> 3.9.3
<abbradar> ronny: segfault at 0 ip 00007f4c6eb94da9 sp 00007ffe7c605d20 error 4 in libgtk-3.so.0.2200.8[7f4c6e8b1000+6fc000]
<contrapumpkin> I have a question about overriding: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/build-managers/buildbot/default.nix#L4-L9 works great until I override the base expression. How can I make it work?
<contrapumpkin> so (buildbot.overrideAttrs (_: ...)).withPlugins [ ... ] is sad
<contrapumpkin> and ignores the override
dbmikus has joined #nixos
<ronny> abbradar: i see, thanks
dhess2`` has joined #nixos
Sonarpulse has joined #nixos
<ronny> abbradar: is there a alternative to gdm on nix that does support screen locking?
<abbradar> ronny: not sure how screen locking with gdm works
<abbradar> I've usually seen it implemented as something 3rdparty
<abbradar> like xlockmore
<ronny> abbradar: bascially there is a dbus interface, if anything implements it gnome3 can lock the screen
<ronny> kdm uses the same afair
<abbradar> hm, maybe try SLIM
<abbradar> not sure but it _may_ support it
<ronny> but atm gnome3 and kde5 at the same time break due to some packages being duplicate with different hashes
<sphalerite> Any obstacles to https://github.com/NixOS/nixpkgs/pull/23709 ?
<ronny> slim does not
<abbradar> oh, my mistake
<abbradar> how was it called, the one that I use.... :D
<sphalerite> sddm?
<abbradar> sphalerite: exactly
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vyx80
<NixOS_GitHub> nixpkgs/master 13ede04 Jörg Thalheim: pythonPackages.podcastparser: correct license
<NixOS_GitHub> nixpkgs/master dd13d24 Jörg Thalheim: gpodder: add myself as maintainer
sellout- has quit [(Read error: Connection reset by peer)]
sellout- has joined #nixos
<abbradar> sphalerite: commented on that one PR
<sphalerite> thanks!
<abbradar> general rule is "any reading of files in Nix is frown upon unless you have very good reasons, instead see if you can do this in derivation instead"
dhess2`` has quit [(Ping timeout: 256 seconds)]
<ronny> abbradar: main question i have now is what bug to report where
<abbradar> ronny: I think NixOS first
<abbradar> we have a pretty... nonstandard packaging for GDM
<NixOS_GitHub> [nixpkgs] edolstra closed pull request #24162: mesa: enable texture floats by default (staging...texture-floats) https://git.io/vyA9x
<NixOS_GitHub> [nixpkgs] edolstra pushed 2 new commits to staging: https://git.io/vyx4K
<NixOS_GitHub> nixpkgs/staging 261d7ca Nikolay Amiantov: mesa: enable texture floats by default
<NixOS_GitHub> nixpkgs/staging 98624f4 Eelco Dolstra: Merge pull request #24162 from abbradar/texture-floats...
<ronny> abbradar: i reported, i beleive we an close the other one now
alebatt has quit [(Ping timeout: 256 seconds)]
<abbradar> ronny: check if nouveau works, just in case
<abbradar> (we can close this one anyway because it's about bumblebee)
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24166: Fix mkdir for fetchgx to not throw an exception (master...fix-mkdir-in-fetchgx) https://git.io/vyAdN
deepfire has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] chris-martin opened pull request #24173: idea-community: 2016.3.4 -> 2016.3.5 (master...pr/idea-community-2016-3-5-b) https://git.io/vyxRo
<ronny> oh fml
<ronny> gnome and kde have a conflict for a package
<abbradar> ronny: you shouldn't need the full kde
<abbradar> only sddm
<Mic92> for all nixpkgs mainainer: git config alias.pr '!pr() { git fetch origin pull/$1/head:pr-$1; git checkout pr-$1; }; pr'
<Mic92> example -> git pr 24155
<ronny> abbradar: i enabled plasma5 just to see if i could go kde again later
<ronny> but it fails to build
<ronny> i reported a issue and will continue without for now
<NixOS_GitHub> [nixpkgs] carlosdagos opened pull request #24175: documentation: expand on creating USB bootable for OS X. (master...osx-bootable-usb) https://git.io/vyxEN
nschoe has quit [(Quit: Program. Terminated.)]
<abbradar> ronny: this one should be simple to fix actually
<ronny> hmm
<abbradar> give me a minute
<ronny> fml, sddm fils to start gnome3
stepcut has quit [(Remote host closed the connection)]
<abbradar> Mic92: nice one!
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
derjohn_mob has quit [(Ping timeout: 240 seconds)]
derjohn_mobi has quit [(Ping timeout: 264 seconds)]
<globin> abbradar: does that fix the failing test on master?
<FRidh> Mic92: nice, even better than hub checkout
ndowens08 has joined #nixos
<abbradar> globin: you mean gnome3?
<abbradar> it shoudln't
<abbradar> anyway I can't open logs
<globin> ah I thought plasma5
<abbradar> let me check that too
<abbradar> but shouldn't either
<ronny> abbradar: tested it, works now
<abbradar> globin: oh, didn't know
<abbradar> ronny: nice, I'll merge shortly
<abbradar> anyway I don't know much about gnome... maybe it requires GDM nowadays
<abbradar> it won't surprise me
<ndowens08> It use to not require it I thought. Dunno now been w while since I used it
<abbradar> and unfortunately our main GNOME contributor stepped down because of lack of time
<ndowens08> Desktops are too hard/time consuming to pkg
<abbradar> (and because packaging kept breaking)
<simpson> What if the modern Linux DE options are all terrible? :c
<abbradar> ndowens08: yeah. GNOME doesn't help with it having a lot of various FHS assumptions
<ndowens08> Window mgrs are the way to go 😊
<simpson> ndowens08: In X11, there's always a window manager of some sort.
<ndowens08> Yup but I like to distinguish them in general terms
<LnL> ndowens08: you asked earlier about the new nix ui, you can try it out by using nixUnstable
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vyx2V
<NixOS_GitHub> nixpkgs/master e6a0291 Carlos D: Expand on creating USB bootable for OS X
<NixOS_GitHub> nixpkgs/master d4b2963 Jörg Thalheim: Merge pull request #24175 from carlosdagos/osx-bootable-usb...
<simpson> ndowens08: "Window manager" is a specific bit of technical jargon to refer to a specific X11 client which manages other X11 clients via the window manager interface.
<ndowens08> I am on unstable small for faster updates
<NixOS_GitHub> [nixpkgs] globin pushed 5 new commits to release-17.03: https://git.io/vyx26
<NixOS_GitHub> nixpkgs/release-17.03 6448a3e Evan Danaher: nginx: Add alias configuration option for hosts and locations....
<NixOS_GitHub> nixpkgs/release-17.03 4bea988 Evan Danaher: nginx: Assert that either root or alias is null....
<NixOS_GitHub> nixpkgs/release-17.03 84561b0 Evan Danaher: nginx: disallow alias directive on server level; it doesn't work....
<abbradar> globin: are logs compessed?
<ndowens08> I can see that. I just see X listed as one type and another as Y. 😊when looking up a certain one
<abbradar> I tried curl'ing one and got binary on my face :D
<ronny> btw, is anyone working on something like system level waylnd?
<ndowens08> My view is wmis lighter and de as heavier
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to staging-17.03: https://git.io/vyxae
<NixOS_GitHub> nixpkgs/staging-17.03 80888e2 Nikolay Amiantov: mesa: enable texture floats by default...
<dash> simpson: i tried kde for the first time in years when i installed nixos
<dash> lsat month
<simpson> dash: How long did you last?
<ronny> dash: whats your impression?
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyxaq
<NixOS_GitHub> nixpkgs/release-17.03 128837a Carlos D: Expand on creating USB bootable for OS X...
<ndowens08> I never used default. The one that starts xterm
<dash> it's technically impressive with a lot of nice features
<dash> but i didn't need any of them
<dash> so i switched back to awesome
<abbradar> if you want a "mainstream DE" KDE is probably the best choice now -- our support for it is good
<abbradar> (thanks to ttuegel)
<ndowens08> I use awesome/bspwm
<abbradar> also XFCE is nice. I actually have XFCE with "frontend" gutted and replaced with xmonad+taffybar
<abbradar> it didn't update in years and it just works
<dash> if i wasn't going to use awesome i would probably use MATE
<ndowens08> I updated awesome some days ago. Dunno if it has available to download yet
<abbradar> dash: do we have MATE?
<dash> but i haven't tried it on nixos
<dash> abbradar: i don't know!
<Mic92> abbradar: it is not complete
<dash> oh and I finally had to learn lua for work
<dash> so i should try customizing awesome now
<Mic92> a "mate" of me currently to add all compoments to MATE
<abbradar> Mic92: oh, I didn't know
<ndowens08> 4.1 has theme features in it
teknico has left #nixos []
<ndowens08> No idea when it will be available to download as an update in unstable small
<socksy> hey, can anyone recommend a gui client for postgres that's already in the nixos repos?
spinus has joined #nixos
<NixOS_GitHub> [nix] edolstra pushed 2 new commits to master: https://git.io/vyxws
<NixOS_GitHub> nix/master e1e49c5 Eelco Dolstra: Only use cache.nixos.org when the store is /nix/store...
<NixOS_GitHub> nix/master aa23bba Eelco Dolstra: Fix tests to reflect the signed-binary-caches default change
<Nafai> socksy: I haven't done a ton with PG, but I see that pgAdmin is in the nixos repos
ryanartecona has quit [(Quit: ryanartecona)]
Wizek has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] globin closed pull request #24171: Remove old version of sbt because of the latest sbt update (master...remove-old-version-of-sbt) https://git.io/vyxO1
<Mic92> socksy: not a gui, but also awesome $ nix-shell -p python3Packages.pgcli (https://github.com/dbcli/pgcli)
dhess2`` has joined #nixos
ryanartecona has joined #nixos
__Sander__ has quit [(Quit: Konversation terminated!)]
<Mic92> socksy: and we have also squirrel-sql (also I have never used it)
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24173: idea-community: 2016.3.4 -> 2016.3.5 (master...pr/idea-community-2016-3-5-b) https://git.io/vyxRo
FRidh has quit [(Ping timeout: 268 seconds)]
c0bw3b has left #nixos []
jensens has joined #nixos
<philipp[m]> I use pgAdmin. It's not a simple as say phpmyadmin, but it's very nice.
<niksnut> eh, doesn't "strace -p" work anymore in 17.03?
<NixOS_GitHub> [nixpkgs] abbradar pushed 4 new commits to master: https://git.io/vyxKE
<NixOS_GitHub> nixpkgs/master c7ee41b Nikolay Amiantov: python.pkgs.sockjs-tornado: init at 1.0.3
<NixOS_GitHub> nixpkgs/master 6f88434 Nikolay Amiantov: python.pkgs.websocket_client: 0.32.0 -> 0.40.0
<NixOS_GitHub> nixpkgs/master d3e2957 Nikolay Amiantov: octoprint: 1.3.1 -> 1.3.2...
<abbradar> niksnut: it should, why?
<niksnut> strace: attach: ptrace(PTRACE_SEIZE, 3014): Operation not permitted
<niksnut> as non-root
<abbradar> oh, as non-root
<abbradar> hm
<niksnut> sounds like a misguided security feature
<abbradar> there is a thing called YAMA
dhess2`` has quit [(Ping timeout: 260 seconds)]
<abbradar> try sysctl kernel.yama.ptrace_scope=0
stepcut has joined #nixos
<niksnut> when did this get enabled?
<abbradar> niksnut: no idea
<niksnut> a000ed181cd8fe23809892c13393491dfeeba1d1
<abbradar> niksnut: is you think of disabling it let's use sysctl instead
<abbradar> I think if you disable it in kernel one can't reenable it
<abbradar> if*
<abbradar> (i have no opinion on whether this is a good feature)
<niksnut> I'm going to revert, I absolutely hated this on OS X and I don't want it on systems where I want to develop
<abbradar> why not sysctl?
<abbradar> this way it will be disabled by default but one can enable it if wishes
<ndowens08> I would vote for that abbradar
<niksnut> because being able to debug a system should be the default
<ndowens08> Choice 😀
goibhniu has quit [(Ping timeout: 260 seconds)]
<abbradar> niksnut: if you disable it in kernel one can't reenable it at all, but if you disable it on NixOS by default one can "sysctl.foo.bar = 2" and be happy
<abbradar> (but I'm only assuming it will disappear if you disable it in kernel, maybe I'm plain wrong)
ambro718 has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vyxim
<NixOS_GitHub> nixpkgs/master 5177f89 c74d: rustfmt: 0.7.1 -> 0.8
<NixOS_GitHub> nixpkgs/master 8467757 Jörg Thalheim: Merge pull request #24150 from 8573/8573/pkg/update/rustfmt/0.8/1...
<abbradar> niksnut: something like http://lpaste.net/6842574671435530240 should suffice
<abbradar> i can't help but notice that we have a very decent ARM (not 64) support
<abbradar> using Dezgeg's multiplatform images it practically just works
alebatt has joined #nixos
ndowens08 has quit [(Quit: Mutter: www.mutterirc.com)]
<abbradar> any simple qt5 application that has an open file dialog?
jsgrant- has left #nixos []
<niksnut> abbradar: thanks, that works
<abbradar> niksnut: nice! commit shortly
<NixOS_GitHub> [nixpkgs] edolstra pushed 2 new commits to master: https://git.io/vyxMr
<NixOS_GitHub> nixpkgs/master 78bb734 Eelco Dolstra: nix-daemon.nix: Make the 1.12 check less strict
<NixOS_GitHub> nixpkgs/master 86721a5 Eelco Dolstra: Allow attaching to non-child processes by default...
<niksnut> abbradar: I just pushed it
<abbradar> niksnut: good
<abbradar> niksnut: backport to release?
skyraider_ has quit [(Quit: Connection closed for inactivity)]
<niksnut> yes
endformationage has joined #nixos
<NixOS_GitHub> [nixpkgs] abbradar pushed 2 new commits to release-17.03: https://git.io/vyxDB
<NixOS_GitHub> nixpkgs/release-17.03 dffc300 Eelco Dolstra: nix-daemon.nix: Make the 1.12 check less strict...
<NixOS_GitHub> nixpkgs/release-17.03 1e8c017 Eelco Dolstra: Allow attaching to non-child processes by default...
<niksnut> thanks
<abbradar> np
<dtzWill> 1.11.8 has netrc support!! for http auth parameters? :D
mightyby1e has quit [(Changing host)]
mightyby1e has joined #nixos
<ronny> hmm
<ronny> so who does currently maintain gtk/gnome for nix ?
arianvp2 has joined #nixos
<arianvp2> hey
<arianvp2> how do I Remove old generations from bootloader in nixos?
<arianvp2> it lists 50 generations
<abbradar> ronny: GTK: more or less everyone. GNOME: I think nobody D:
<abbradar> arianvp2: nix-collect-garbage -d
<arianvp2> I used nix-env --delete-generations
mckeankylej_ has joined #nixos
<ronny> i see
<mckeankylej_> What do you do when you nix build fails with curl (23) out of space, I have plenty of harddrive and memory
<ronny> hmm, so "i" either find a group willing to do it or its going to end bad ^^
sellout- has quit [(Quit: Leaving.)]
arianvp2_ has joined #nixos
<arianvp2_> doesnt work
<arianvp2_> still lists the old generations :/
<arianvp2_> =(
<abbradar> arianvp2_: ...and then nixos-rebuild switch (I forgot)
<abbradar> both with sudo
<arianvp2_> ah
<arianvp2_> with --install-bootloader?
<abbradar> no, should suffice
<hotfuzz> Hello all, anyone able to help with a nix-rebuild infinite recursion error? The trace can be seen here https://git.io/vyxyK and my hardware-configuration.nix is https://git.io/vyxS3
<arianvp2_> ok brb
arianvp2 has quit [(Ping timeout: 260 seconds)]
k2s has joined #nixos
<clever> hotfuzz: and that kind of config is better put into configuration.nix
<clever> while evaluating the option `fileSystems./var/lib/mpd/music.options':
<clever> hotfuzz: this does appear in the backtrace
<NixOS_GitHub> [nixpkgs] zauberpony opened pull request #24176: vultr: 1.12.0 -> 1.13.0 (master...update-vultr-1.12.0-to-1.13.0) https://git.io/vyx9p
arianvp2_ has quit [(Ping timeout: 260 seconds)]
<clever> hotfuzz: and its somehow involved in users.extraUsers
<clever> ah, which is also in your config
<hotfuzz> clever: ok I totally missed that output in the trace.
<clever> hotfuzz: i think the list of supported filesystems has an impact on the available users, automaticaly installing programs (and users) to add fs support
<clever> and now the fs list depends on the user list
<hotfuzz> clever: ah okay, so by referencing the config.extraUsers from the filesystem definition I'm creating a circular dependency?
<clever> thats my first guess
takle has quit [(Remote host closed the connection)]
<dtzWill> clever: you're so helpful ♥. And clever. ;)
<hotfuzz> clever: I was a bit surprised by the error as I believe this was working previously
<hotfuzz> clever: I'll do some hard coding of the filesystems rather than using ${config...} to see if that fixes it
cfricke has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl closed pull request #24147: babelstone-han: init at 9.0.2 (master...babelstone-han-9.0.1) https://git.io/vyNFe
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vyxQP
<NixOS_GitHub> nixpkgs/master a7732d6 Volth: babelstone-han: init at 9.0.2
<clever> hotfuzz: i can confirm that ~11000 commits ago, nixpkgs accepted that
jensens has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vyx7T
<NixOS_GitHub> nixpkgs/master f61ead6 Vincent Laporte: ocamlPackages.inifiles: init at 1.2...
<clever> Bisecting: 8686 revisions left to test after this (roughly 13 steps)
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vyx7s
<NixOS_GitHub> nixpkgs/master 34809eb Vincent Laporte: ocamlPackages.ocamlbuild: 0.9.3 -> 0.11.0
fresheyeball has joined #nixos
<clever> hotfuzz: if rpcbind is enabled, the rpc user gets auto-created
freusque has quit [(Quit: WeeChat 1.7)]
<clever> hotfuzz: and the status of rpcbind depends on the presense of nfs in the list of supported filesystems, which depends on the entire filesystems attrset
<clever> hotfuzz: forcing rpcbind to on may break the recursion
<clever> nope, it doesnt
mudri has quit [(Ping timeout: 260 seconds)]
dhess2`` has joined #nixos
tvon has joined #nixos
Sonarpulse has quit [(Ping timeout: 256 seconds)]
<abbradar> dhess2``: you asked me some time ago about Ethernet on ODROID-XU4
<abbradar> it's RTL8153 over USB3.0, kernel module is r8152
<abbradar> I have a gigabit network, it works fine for me (I build a lot on it so it downloads things from cache now)
hotfuzz_ has joined #nixos
<NixOS_GitHub> [nix] edolstra pushed 2 new commits to master: https://git.io/vyxdt
<NixOS_GitHub> nix/master ed5c0f6 Eelco Dolstra: Don't hang in decompression if bzip2 data ends prematurely
<NixOS_GitHub> nix/master 895a74a Eelco Dolstra: LocalFSStore::getBuildLog(): Handle corrupted logs
alebatt has quit [(Ping timeout: 258 seconds)]
acarrico has quit [(Ping timeout: 240 seconds)]
marsam has quit [(Remote host closed the connection)]
hotfuzz has quit [(Ping timeout: 246 seconds)]
dhess2`` has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] abbradar pushed 4 new commits to release-17.03: https://git.io/vyxFT
<NixOS_GitHub> nixpkgs/release-17.03 ae43118 Nikolay Amiantov: python.pkgs.sockjs-tornado: init at 1.0.3...
<NixOS_GitHub> nixpkgs/release-17.03 f4f55a8 Nikolay Amiantov: python.pkgs.websocket_client: 0.32.0 -> 0.40.0...
<NixOS_GitHub> nixpkgs/release-17.03 ebca842 Nikolay Amiantov: octoprint: 1.3.1 -> 1.3.2...
[0x4A6F]1 has joined #nixos
hotfuzz_ has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] frontsideair opened pull request #24177: flow: 0.41.0 -> 0.42.0 (master...flow-42) https://git.io/vyxNv
abbradar has quit [(Remote host closed the connection)]
abbradar has joined #nixos
takle has joined #nixos
eacameron has joined #nixos
c0bw3b has joined #nixos
odi__ has joined #nixos
k2s has quit [(Remote host closed the connection)]
takle has quit [(Ping timeout: 260 seconds)]
c0bw3b has left #nixos []
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24176: vultr: 1.12.0 -> 1.13.0 (master...update-vultr-1.12.0-to-1.13.0) https://git.io/vyx9p
ryanartecona has quit [(Quit: ryanartecona)]
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24177: flow: 0.41.0 -> 0.42.0 (master...flow-42) https://git.io/vyxNv
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to staging: https://git.io/vyxpj
<NixOS_GitHub> nixpkgs/staging 328bcda Nikolay Amiantov: mesa: enable texture floats only for drivers...
marsam has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 pushed 2 new commits to master: https://git.io/vyxhx
<NixOS_GitHub> nixpkgs/master 2a65244 Matthew Daiter: riak: adding myself as maintainer
<NixOS_GitHub> nixpkgs/master 2bd9c80 Daiderd Jordan: Merge pull request #24160 from mdaiter/riakMaintain...
seanz has joined #nixos
mckeankylej_ has quit [(Ping timeout: 260 seconds)]
ryanartecona has joined #nixos
marsam has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to staging: https://git.io/vype5
<NixOS_GitHub> nixpkgs/staging 39eda57 Vladimír Čunát: mesa: maintenance 17.0.1 -> 17.0.2
ixxie has joined #nixos
katyucha is now known as Guest43031
Guest88673 is now known as katyucha
Wizek has joined #nixos
takle has joined #nixos
takle has quit [(Remote host closed the connection)]
AllanEspinosa has joined #nixos
marsam has joined #nixos
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to release-17.03: https://git.io/vypf6
<NixOS_GitHub> nixpkgs/release-17.03 0c06c48 Nikolay Amiantov: mesa: enable texture floats for drivers...
thip has joined #nixos
odi has joined #nixos
<NickHu> abbradar: Do you have some time to talk about qutebrowser?
<NickHu> I just rebuilt it against master and now it doesn't launch with webengine anymore
dhess2`` has joined #nixos
odi has quit [(Ping timeout: 260 seconds)]
mckeankylej has joined #nixos
<mckeankylej> What do you do when you nix build fails with curl (23) out of space, I have plenty of harddrive and memory
<gchristensen> anyone here using nixos containers with bridge networks and docker? (sheesh, how much more niche can I get?)
<abbradar> NickHu: i'm here. I'll see what happens on master...
thip has quit [(Ping timeout: 240 seconds)]
dhess2`` has quit [(Ping timeout: 240 seconds)]
revtintin has quit [(Quit: WeeChat 1.7)]
<calvertvl> abbradar: I also saw the same last time I rebuilt from master (in the last day or so)
odi__ has quit [(Ping timeout: 240 seconds)]
dhess2`` has joined #nixos
<abbradar> NickHu, calvertvl: that's instance of https://github.com/NixOS/nixpkgs/pull/24133#issuecomment-288178019 (at least for me)
<abbradar> it doesn't launch at all, with or without webengine
<NickHu> Also, it appears that I've somehow ended up in a situation where my system follows nixos-unstable and my per-user nix configuration follows nixpkgs-unstable - is this sane? See http://lpaste.net/5481571188272529408
<abbradar> do you see the same error as in the comment?
<abbradar> NickHu: it's easy to fix but shouldn't be problematic
<NickHu> abbradar: I know it's not problematic, just wondering if this is a sane choice
<NickHu> And no, qutebrowser launches fine for me when not using webengine
<abbradar> NickHu: oh ho... so this is something in my system
<calvertvl> abbradar: I see "15:37:48 CRITICAL qt Unknown module:none:0 Could not find QtWebEngineProcess" and it otherwise works fine
<NickHu> calvertvl: +1
<calvertvl> (without webengine)
<abbradar> hm, I think I have fixed QtWebEngineProcess
tvon has quit [()]
<abbradar> NickHu: yep, it should be good if you need something not yet in nixos-unstable
<abbradar> just don't ust nixpkgs-unstable system-wide
<NickHu> I see
<NickHu> I'd really like to get https://github.com/NixOS/nixpkgs/issues/23987 squashed too so I can actually use webengine
<abbradar> me too but I have no idea what happens
McK has joined #nixos
<abbradar> I tried to dig in QtWebEngine code but it's just usual OpenSSL certificate validation
<abbradar> nothing that catches the eye
<NickHu> I feel like if we built it against a newer version of openssl or something it would work
<NickHu> But I don't really know which component needs changing
<NickHu> And now on master I can't even get webengine to launch
<abbradar> i actually can't launch _any_ Qt application
mudri has joined #nixos
<sziszi> guys, I'd really like to get some advice about cups driver/filter management. I'm on the 17.03 release now, and I'd like to use this filter for my printer https://github.com/NixOS/nixpkgs/tree/release-17.03/pkgs/misc/cups/drivers/samsung but it installs the 4.x version, but I need the 1.x version(newer) and in theory this is the default. How can I specify or force to use that specific version?
<abbradar> (on master)
<McK> Is there a new release of unstable planned soon? I can't build chrome with flash, though it seems to have been fixed in master
<NickHu> abbradar: Sounds like your machine is goosed
<clever> McK: i'm also unable to build chrome with widevine
<abbradar> NickHu: hope it's not but that noone can't reproduce it is a bad sign D: I'll look at more strace
<clever> cant currently open links
<NickHu> Is there any way to get nix to print out the dependency graph of a package for me to look at?
<gchristensen> NickHu: `man nix-store` look for `--query` and at `--graph` and `--tree`
<clever> NickHu: nix-store --query --tree
<NickHu> Ah, great, thanks
williamyaoh has joined #nixos
AllanEspinosa has quit [(Ping timeout: 268 seconds)]
<NickHu> Wow... dot sure is thinking about this graph for a long time...
AllanEspinosa has joined #nixos
<gchristensen> it is probably a big graph
mudri has quit [(Ping timeout: 246 seconds)]
dhess2`` has quit [(Remote host closed the connection)]
williamyaoh has quit [(Quit: leaving)]
johbo has quit [(Quit: Bye)]
takle has quit [(Remote host closed the connection)]
<NickHu> Anyone know how to change the openssl version used to build qtbase?
<NixOS_GitHub> [nixpkgs] pbogdan opened pull request #24178: gmtp: init at 1.3.10 (master...gmtp) https://git.io/vypLq
jensens has joined #nixos
<spinus> NickHu: you probably want to override qtbase in nixpkgs, and when you do callPackage you can override openssl package (you can pass your parameter to the function which can be any other version of openssl)
thip has joined #nixos
kazamatzuri has joined #nixos
<kazamatzuri> hi
<clever> spinus: but qtbase is an attribute within qt5, and overriding the qtbase passed to other qt utils will be tricky
<spinus> I see
stepcut has quit [(Remote host closed the connection)]
ixxie has quit [(Ping timeout: 258 seconds)]
dhess` has joined #nixos
jensens has quit [(Ping timeout: 246 seconds)]
AllanEspinosa has quit [(Ping timeout: 246 seconds)]
johbo has joined #nixos
takle has joined #nixos
alebatt has joined #nixos
<viric> Is there any lib that allows working with a compressed file, with a full C FILE* kind of interface? Random access and all that.
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24151: far2l: init at 2.1 (master...far2l) https://git.io/vyNxy
<viric> I don't mean a gzip file, or so. It can be its own compression (for random access)
<clever> viric: i generaly just go zfs for that kind of thing
<viric> :)
<ronny> viric: typically those suck and come expensive, what do you want to implement?
<clever> viric: and if real-onlu is an option, squashfs
<viric> squashfs is kernel-related
<viric> I used the fuse cromfs as well
<viric> But I thought of a lib
<viric> For a program that create and consume that file, and does not expect sysadmin intervention
AllanEspinosa has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
<ronny> viric: again, whats the actual use case, strangely compress a random file is not a reasonable use-case ^^
<viric> I'm amazed with zstd... and I wanted things done with zstd
<NixOS_GitHub> [nixpkgs] vcunat pushed 3 new commits to staging-17.03: https://git.io/vypmK
<NixOS_GitHub> nixpkgs/staging-17.03 3a4038a Thomas Tuegel: mesa: allow overriding driver compilation...
<NixOS_GitHub> nixpkgs/staging-17.03 ef94c6d Nikolay Amiantov: mesa: enable texture floats only for drivers...
<NixOS_GitHub> nixpkgs/staging-17.03 cd3fb46 Vladimír Čunát: mesa: maintenance 17.0.1 -> 17.0.2...
<viric> ronny: I think of a mbox
jensens has joined #nixos
<ronny> viric: that would be horrendous to store universally compressed
* gchristensen has too many horror stories about mbox to go back to it
<ronny> viric: but its also not an answer of your use-case
<joepie91> when running something in WINE, I get this error: err:winediag:X11DRV_WineGL_InitOpenglInfo Direct rendering is disabled, most likely your 32-bit OpenGL drivers haven't been installed correctly (using GL renderer "AMD Radeon R7 200 Series ", version "1.4 (2.1 (4.5.13416 Compatibility Profile Context 15.302))").
<joepie91> any suggestions?
<joepie91> (the "something" is Alpha Centauri)
<ronny> joepie91: did you enable 32 bit opengl bindings?
<joepie91> (also, the process exits after that)
<joepie91> ronny: I *think* I did... remind me what the correct way is to do that?
<joepie91> (on NixOS)
<viric> ronny: Maybe I could use a compressed file with a LD_PRELOAD thing or so
<viric> gchristensen: I use read-only mboxe
<viric> s
<clever> joepie91: hardware.32bit something in configuration.nix
<ronny> viric: again, still not explaining your actual use-case, if you where a customer i'd have to send you out for wasting my time
<joepie91> driSupport32Bit?
<viric> ronny: send me out, I don't mind
<ronny> hardware.opengl.driSupport32Bit = true;
<clever> joepie91: thats the one
<joepie91> odd. I thought I had this, but I can't find it in my config
<joepie91> something about 'assumptions'... :)
<ronny> viric: bascially if you ask vauge random questions about solutions that may not even fit the problem you are being a jerk thats wasting everyones time ^^ ask for the real problem already
<viric> ronny: feel free to put me in your ignore list, as I did.
<contrapumpkin> viric: ZipFile in Python?
<contrapumpkin> :)
<simpson> viric: Read or write? I imagine that it depends quite a bit on the specific compression format. Do you have a use-case?
<viric> contrapumpkin: it lacks seek() per-file I see
<joepie91> hmmmm
<joepie91> is it _supposed_ to be checking that URL for GPU drivers?
<contrapumpkin> viric: yeah
<contrapumpkin> IIRC it's also pretty slow
<joepie91> tarballs.nixos.org seems like a strange URL
<joepie91> host *
<viric> simpson: I have big mboxes now. I meant read. Even for FUSE fs there is only cromfs, isn't it?
<clever> joepie91: that url is a mirror for all tarballs downloaded via fetchurl
<NixOS_GitHub> [nixpkgs] domenkozar pushed 2 new commits to release-17.03: https://git.io/vypYF
<NixOS_GitHub> nixpkgs/release-17.03 548e267 Domen Kožar: haskell: add justStaticExecutables combinator...
<NixOS_GitHub> nixpkgs/release-17.03 56196a6 Domen Kožar: haskell: use new justStaticExecutables and add purescript...
<joepie91> clever: but it's down? :)
<simpson> viric: Pick one of gzip/bzip2/etc. and use the corresponding zcat/bzcat or subprocess pipe or whatever your language affords.
<joepie91> clever: that's what my Nix claimed anyway
<joepie91> nothing on port 80
<joepie91> also seems a bit suspect to grab it over http
<viric> simpson: I meant seek() available
<eacameron> VSCode seems to have trouble running commands like mkdir, stat, because it keeps giving me this error: symbol _dl_catch_error
johbo has quit [(Quit: Bye)]
<clever> joepie91: the url is a hash of the contents, and nix will always check the hash of fixed-output things like fetchurl
johbo has joined #nixos
<clever> joepie91: so any modifications will be caught
<viric> Well, there is a mod of sqlite with online compression, and there are plenty of oportunities for that.
<joepie91> clever: oh, I wasn't aware of the extra check
<simpson> viric: That sounds like a terrible level to have to work at. Have you considered not having mboxes?
<joepie91> if it actually validates the hash of the resulting file it should be fine :)
<contrapumpkin> lol
<viric> simpson: where do you store email? :)
[0x4A6F]1 has quit [(Ping timeout: 256 seconds)]
<viric> See qcow in qemu. There is qcow with compression.
<simpson> viric: Mostly, I don't. I hear many of my peers discussing systems that process email at scale; it sounds like there are dedicated systems for processing medium-to-large amounts of email, but I've never worked with any.
<dhess`> viric: all the cool kids have been using Maildirs for years.
<viric> maildirs for storage mean lots of files to read. Very slow in any normal fs.
<dash> viric: only if you have to read them all
<avn> viric: zfs is pretty fine for maildir (with gzip-9)
<dhess`> viric: that hasn't been true since 2003: http://www.courier-mta.org/mbox-vs-maildir/
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #23769: renderdoc: init at version 0.34pre (master...renderdoc) https://git.io/vyKfQ
<clever> viric: qcow compression is a bit simpler, because its already treating it as a block device, there are more logical places to do the compression blocks, though you still need an index to allow seeking
Sonarpulse has joined #nixos
ndowens08 has joined #nixos
kampfschlaefer has joined #nixos
<viric> dhess`: 2000 messages? ehem
<contrapumpkin> dhess`: is emacs happy now?
<dash> viric: ... on a 200MHz/80MB RAM host :)
froglegstew has quit [(Ping timeout: 240 seconds)]
<dhess`> viric: Look at the graphs for search, delete, fetch, ec. up to 10k messages. Also, look at the trend lines.
<viric> I tested zfs with git-annex and I concluded that it was not faster. It "looked like" faster because it had an on-disk cache
<dhess`> viric: in any case, you keep knocking back every suggestion. OK then. Good luck!
<dhess`> contrapumpkin: yes, works great. I've been testing it for a few days.
stepcut has joined #nixos
<contrapumpkin> cool
<dhess`> contrapumpkin: I think that PR was commited, yes?
froglegstew has joined #nixos
<contrapumpkin> dhess`: yup, I just don't use it so I don't know if it works proeprly :)
<viric> dhess`: well, I use maildir & mbox. Maildir for "current year", and mbox for "previous years". I find mbox processing much faster. But I will test more.
zraexy has quit [(Remote host closed the connection)]
<avn> viric: nah, for immutable archives mbox is pretty ok ;)
zraexy has joined #nixos
periklis has quit [(Ping timeout: 258 seconds)]
<viric> avn: I agree
thip has quit [(Quit: WeeChat 1.7)]
<avn> viric: another hint for zfs performance -- turn dedup off before write ;)
<NixOS_GitHub> [nixpkgs] aneeshusa opened pull request #24179: WIP: openssh: 7.4p1 -> 7.5p1 (master...update-openssh-to-7.5p1) https://git.io/vypcO
<viric> I always used dedup off for zfs. But I dropped zfs once I knew that all the impression I had for its "good performance" was only online-cache.
<viric> ondisk-cache, sorry
<avn> you mean ssd cache I feel ;)
<viric> no no
goibhniu has joined #nixos
<viric> I don't have any ssd
<avn> well they have ARC (in memory adaprive cache) and L2ARC (optionally) which is on SSD (or other faster block device)
<clever> also, the L2ARC is basicaly just a dedicated swap for the main ARC
<clever> so the L2ARC is essentialy lost upon reboot
<avn> yes
stepcut has quit [(Remote host closed the connection)]
<viric> is it? hm
jsgrant- has joined #nixos
carlosdagos has quit [(Quit: WeeChat 1.7)]
<viric> what I experienced was good after reboot, for what I recall.
<clever> then it has to rebuild both arcs at bootup, via normal on-demand reads
<avn> I found zfs perfect, expect cases when it massive io burst, which follow to memory starvation
jsgrant- has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging: https://git.io/vypcN
<NixOS_GitHub> nixpkgs/staging 8143413 Frederik Rietdijk: pythonPackages.pygobject2: fixup conversation to buildPythonPackage
<avn> so kernel derivations in nixos can kill machine if it have not much free memory at time of build (I think some tunables can prevent it, but idk them)
carlosdagos has joined #nixos
alebatt has quit [(Quit: WeeChat 1.4)]
jsgrant- has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging-17.03: https://git.io/vypCW
<NixOS_GitHub> nixpkgs/staging-17.03 7e22474 Frederik Rietdijk: pythonPackages.pygobject2: fixup conversation to buildPythonPackage...
<NixOS_GitHub> [nixpkgs] fadenb opened pull request #24180: sonarr: 2.0.0.4613 -> 2.0.0.4645 (master...sonarr_4645) https://git.io/vypC6
<clever> avn: my main issue with zfs is not just maching killing lag, but entirely locking up
<clever> but i suspect it might be hardware related, i use zfs on 5 machines, and only 1 does it
<gchristensen> for those following along with my docker + nixos-container + bridge networking saga ... "It is not just that Docker is updating the FORWARD chain (especially reinserting the DOCKER-ISOLATION rule on top) on startup, but also each time a container is started! I ended up adding a cron job triggered each minute, that resets my iptables rules to be on top of the FORWARD chain." --
<avn> clever: I think is de-facto out of memory issue bound to some locking problems. (all ZIO threads become interlocked, but it happens only on memory starvation conditions)
<dtzWill> gchristensen: LOL :/
<clever> avn: it does tend to happen under high memory usage, but only on the machine with the most ram, heh
<gchristensen> dtzWill: right?? 1.12.X -> 1.13.0 changed the FORWARD chain from ACCEPT to DROP with no way to tell it not to
<clever> avn: the low-ram systems have never had that problem, and always go into swap-hell, and eventualy recover
cpennington has quit [(Remote host closed the connection)]
pi3r has joined #nixos
georges-duperon has joined #nixos
wkennington has joined #nixos
<clever> gchristensen: ive found that defaulting the input chain to accept to be a mild security problem, while reloading the rules, you are open to any packet
<gchristensen> yeah, sure, fair enough
<avn> clever: well, 16g is not so low ram system ;)
<gchristensen> but dammit my rules are configured intentionally, not just willy-nilly
<gchristensen> and there it goes just screwing it up :(
<clever> avn: the 16gig machine is the one with the problem, and it happens any time chromium is using a decent amount of ram
<clever> avn: but i have a laptop with 3gig of ram, that has never locked up, it just goes into swap-hell under over-use
<avn> clever: hehe, swap-on-zfs can add some fun ;)
<clever> avn: and for that reason, i never put swap on zfs, not even a zvol
<avn> I think I try to off these swap, and put it on place of l2arc for some time
<clever> avn: the laptop is zfs on lvm on luks, so i can put the swap in lvm and share the luks device
<avn> clever: I thik it will be fixed, but not before 0.7 will be released
<clever> avn: the desktop has 4 swap partitions, spread over several SSD's
c0bw3b has joined #nixos
Itkovian has joined #nixos
<schoppenhauer> I want to use pale moon. However, the problem is, it is not in stable yet. I can probably install it with -f, but then, I will not get upgrades automatically. Adding a second channel will upgrade all my packages. Thats not what I want, either. Currently I have a shell for this.
<calvertvl> gchristensen: can you run docker with --iptables=false ?
justbeingglad has joined #nixos
justbeingglad has left #nixos []
<gchristensen> that breaks all the other networking functionality
cfricke has quit [(Quit: WeeChat 1.7)]
goibhniu has quit [(Ping timeout: 260 seconds)]
takle has joined #nixos
mckeankylej has quit [(Ping timeout: 260 seconds)]
cptchaos has quit [(Ping timeout: 260 seconds)]
<schoppenhauer> I get the error message "error: anonymous function at /home/christoph/nobackup/nixos-unstable/nixpkgs/pkgs/applications/editors/android-studio/default.nix:1:1 called with unexpected argument ‘jdk’, at /home/christoph/nobackup/nixos-unstable/nixpkgs/lib/customisation.nix:56:12" when trying to install via -f
<viric> clever: this implements a file format with block gzip + seek for read. https://godoc.org/github.com/biogo/hts/bgzf
<clever> viric: what about seek+write?, that will change the size of a compressed block, and it may not be able to insert it at the right spot
<ndowens08> gchristensen: sent ya a msg earlier, dont know if ya got it or not
<gchristensen> ndowens08: I did, I'm sorry -- between normal obligations and https://github.com/NixOS/nixpkgs/issues/24161 I've been under water :(
<ndowens08> oh ok, was on my phone and left shortly after
<calvertvl> gchristensen: https://github.com/irsl/dfwfw <- this may help (reads docker event stream and generates firewall rules, so you can customize)
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24181: feh: Remove un-needed libPath (master...feh) https://git.io/vypBi
<calvertvl> not sure I've seen anything better for that purpose
<viric> clever: I wish I found a lib like that, yes :)
<viric> avn: zfs compresses only separated 4k blocks, isn't it?
<gchristensen> calvertvl: I'm just going to stop using docker for this purpose, it is unfit for the particular task, anyway.
<gchristensen> calvertvl: thank you, though :)
<clever> viric: when using gzip, you can freely scale from -1 to -9, the other algos dont have those options
<viric> clever: that's for the compression window, but I mean the disk blocks. What is the size of every block before compression?
<avn> viric: $recordsize blocks, so with default 128k block it have chance that whole mail compressed at once
<viric> ok
<avn> viric: is not my hypotesis, folks on #zfsonlinux tell me that ;)
<clever> and you can freely change the recordsize
dbmikus has quit [(Quit: WeeChat 1.7)]
<viric> but gzip is so slow for little size benefit...
<avn> Also they told, that if len($file) lesser than recordsize, file would take exact one record, rounded up only on size of ashift (physical block of backing device)
<viric> (I like zstd a lot!)
<clever> viric: ive recently been informed of lz4's insane byte/sec rates
<avn> viric: lz4 suggested as default compression now
<viric> clever: but zstd compresses much more
<avn> so I have lz4 for all, except torrents volume (none) and maildir volume (gzip-9)
stepcut has joined #nixos
<viric> yes, I only tried zfs with lz4
<clever> ive also heard, that the metadata in zfs always uses 128 bit ints, and it takes advantage of metadata compression to hide the cost
<smw> clever, good news, awesome news, and bad news. good news: Dezgeg created an image that works on rpi3. awesome news: aarch64 is in hydra. bad news, no wifi on rpi3 XD
<clever> smw: i believe the wifi is over sdio on the rpi3
<smw> clever, I saw sdio mentioned. I don't know what that means
<ndowens08> I am working on the munion security one
<viric> smw: great
<clever> smw: its a general-purpose bus (like usb) but over the SD card interface
<smw> clever, that is... odd.
<clever> smw: at one time, it was used to plug cameras into PDA's and such
<viric> I used a sdio wifi with nixos
<avn> if someone wants try to have /nix on zfs I can suggest have separate boot, or at least copyKernels = true, even if your /boot on same zfs as / (grub can't handle /nix/store/.links)
<avn> and also I can say, that .links relinking more effective than dedup
<clever> avn: i just assumed grub cant deal with zfs and always went with ext4 /boot
<avn> clever: It can, but with some restictions
<viric> smw: sdio wifi is quite common in embedded systems
<viric> Haven't you seen µSD-shape wifi cards?
<avn> I need to figure out, what 255g in dedup tables as singles, and move out them
<viric> that was a common way to give network to PDAs
<avn> Also I curious, what file counted as 2k dupes ;)
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24182: munin: 2.0.30 -> 2.0.33; for CVE-2017-6188 (master...munin) https://git.io/vypuU
<clever> avn: find -inum can search by inode number, and all things in the hardlink share an inode
<avn> clever: is not hardlinks, it from `zdb -DD tank` ;) IDK may be ZDB can dig it out ;)
<clever> avn: ah, yeah, that sounds harder to track down
<ndowens08> gchristensen: i updated munion for that CVE, didnt mark as done as it hasnt been reviewed/pushed
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
hiratara has quit [(Ping timeout: 246 seconds)]
Itkovian has joined #nixos
stepcut has quit [(Remote host closed the connection)]
hiratara has joined #nixos
<NixOS_GitHub> [nixpkgs] primeos pushed 2 new commits to master: https://git.io/vypzC
<NixOS_GitHub> nixpkgs/master 8727702 Michael Weiss: gpgme: Drop multiple outputs (dev and info)...
<NixOS_GitHub> nixpkgs/master b276521 Michael Weiss: fwknop: init at 2.6.9...
<NixOS_GitHub> [nixpkgs] primeos closed pull request #24132: fwknop: init at 2.6.9 (master...fwknop) https://git.io/vybax
<NixOS_GitHub> [nixops] dhess closed pull request #629: DigitalOcean backend: fix authToken, add IPv6 support. (master...master) https://git.io/vydx0
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24183: tnef: 1.4.12 - > 1.4.14; Advisory X41-2017-004 (master...tnef) https://git.io/vypzx
jsgrant has quit [(Read error: Connection reset by peer)]
wkennington has quit [(Remote host closed the connection)]
jsgrant has joined #nixos
JagaJaga has joined #nixos
<gchristensen> ndowens08: NICE :D
<gchristensen> erm... I'm enthusiastic about that ... but I did just mean "nice :D"
<gchristensen> P
<ndowens08> trying to work on another one atm, 2 down so far
<ndowens08> on this one, i may switch src to use debian, as theirs is patched already; link to patch tracker gave 404
phreedom has joined #nixos
<ndowens08> wait, maybe...
<gchristensen> I can show you how to fix debian patch URLs
<ndowens08> ah :)
<ndowens08> trying to work on graphicsmagick
<gchristensen> graphicsmagick is a nightmare!
<ndowens08> i found the patches listed on SF, i could use those maybe
<ndowens08> though there are multiple
reinzelmann has quit [(Quit: Leaving)]
<ndowens08> may just use the one linked in that url to the patches
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 2 new commits to master: https://git.io/vyp2y
<NixOS_GitHub> nixpkgs/master 41abf78 ndowens: tnef: 1.4.12 - > 1.4.14; Advisory X41-2017-004
<NixOS_GitHub> nixpkgs/master bb0bf4b Michael Raskin: Merge pull request #24183 from ndowens/tnef...
Itkovian has quit [(Read error: Connection reset by peer)]
<NixOS_GitHub> [nixpkgs] 7c6f434c closed pull request #24181: feh: Remove un-needed libPath (master...feh) https://git.io/vypBi
Itkovian has joined #nixos
jsgrant has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-16.09: https://git.io/vypaF
<NixOS_GitHub> nixpkgs/release-16.09 7af0267 ndowens: tnef: 1.4.12 - > 1.4.14; Advisory X41-2017-004...
ryanartecona has quit [(Quit: ryanartecona)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-17.03: https://git.io/vypVI
<NixOS_GitHub> nixpkgs/release-17.03 9b6a6cf ndowens: tnef: 1.4.12 - > 1.4.14; Advisory X41-2017-004...
<ndowens08> Found it
ambro718 has quit [(Ping timeout: 240 seconds)]
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<ndowens08> hmm the patch doesnt work, downloaded the one from debian, well fetchurl it
<gchristensen> use fetchpatchh :)
<ndowens08> well i did, meant that
<ndowens08> acts as the patch is bad, gets to patching changelog and fails and it uses the same url as the other packages
<ndowens08> so i know it is coming from the same location
<clever> gchristensen: weird, wasnt expecting fetchpatch to do such things
<gchristensen> hrm it shouldn't break it :/
pi3r has quit [(Quit: Nettalk6 - www.ntalk.de)]
<ndowens08> yeah it fails at it saying hunk #1 failed at 35
<ndowens08> gonna try something
hiratara has quit [(Remote host closed the connection)]
<ndowens08> nope :\
<ndowens08> Gonna link the patch in the post and move on, i have no idea
hiratara has joined #nixos
<calvertvl> primeos[m]: you broke fwupd: in 872770286d04cadb9816cd1665d3d5f17adce456 - it depends on dev
cptchaos has joined #nixos
rjsalts has quit [(Read error: Connection reset by peer)]
rjsalts has joined #nixos
<NixOS_GitHub> [nixops] dhess opened pull request #633: DigtalOcean backend: IPv6 support. (master...do-ipv6) https://git.io/vypr0
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to master: https://git.io/vypru
<NixOS_GitHub> nixpkgs/master dec8fb0 Nikolay Amiantov: qt5.qtwebengine: fix library paths...
<abbradar> NickHu, calvertvl: ^ this should fix qutebrowser+qtwebengine
<NickHu> abbradar: The ssl errors too?
<abbradar> NickHu: nope, sadly
<abbradar> (or maybe it does but I didn't check yet -- qtwebengine is a beast to build)
<abbradar> the same patch fixed this process not found problem for 5.7
<abbradar> I just backported it
<NickHu> Okay, well I am rebuilding the whole of qtbase with openssl 1.10 so I will let you know if that helps
<abbradar> nice!
<NickHu> It has taken hours...
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to release-17.03: https://git.io/vyprN
<NixOS_GitHub> nixpkgs/release-17.03 844c4fa Nikolay Amiantov: qt5.qtwebengine: fix library paths...
<primeos[m]> calvertvl: oh, indeed - I'm so sorry, I didn't notice that... :o
<primeos[m]> should I better revert both commits or change fwupd?
<calvertvl> not sure what makes more sense, I just saw the error when watching the build for a PR
<NixOS_GitHub> [nixpkgs] LnL7 opened pull request #24185: atomicparsley: fix build with llvm 4 (master...atomicparsley-clang) https://git.io/vypo3
c0bw3b has left #nixos []
cptchaos has quit [(Ping timeout: 260 seconds)]
<ndowens08> gchristensen: Hey I created a patch for pax-utils, i downloaded the release and then cloned the git master and made a diff, is that ok?
<ndowens08> if so it is ready for PR, it built atleast, but would want someone/some to review
<primeos[m]> I think reverting 872770286d04cadb9816cd1665d3d5f17adce456 might be appropriate even though fwupd seems the only package affected, I did something stupid without realizing... :o
smw_ has joined #nixos
<ndowens08> it had two commits, so thought just diff release and master would be simple to take care of the CVE
<smw_> viric: hey, sorry I left abruptly. Fire alarm went off at the end of the day.
<viric> smw_: I forgot the topic
<smw_> viric: sdio wifi
ryanartecona has joined #nixos
McK has quit [(Ping timeout: 260 seconds)]
thc202 has quit [(Ping timeout: 260 seconds)]
<smw_> viric: anyways, got any tips on making an sdio wifi work? I know the broadcom chipset used as well as the fact it is over sdio
<viric> smw_: the sdio wifi I used in linux was not broadcom
<viric> smw_: you basically need kernel drivers + firmware.
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vyp6e
<NixOS_GitHub> nixpkgs/master 242031a Robin Gloster: mutter: fix on i686-linux
<ndowens08> gchristensen: ping
filterfish has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vyp6Y
<NixOS_GitHub> nixpkgs/release-17.03 fb4dced Robin Gloster: mutter: fix on i686-linux...
<smw_> viric: might be easer to just buy a usb wifi module :-P
seanz has quit [(Quit: Leaving.)]
<NixOS_GitHub> [nixpkgs] primeos pushed 1 new commit to master: https://git.io/vyp68
<NixOS_GitHub> nixpkgs/master 4e29638 Michael Weiss: Revert "gpgme: Drop multiple outputs (dev and info)"...
<primeos[m]> calvertvl: Everything should be fine now, thank you so much for letting me know!
<calvertvl> primeos[m]: you're welcome :)
<adelbertc> "Haskell packages who’s Nix name (second column) begins with a haskell- prefix are packages that provide a library whereas packages without that prefix provide just executables. Libraries may provide executables too, though: the package haskell-pandoc, for example, installs both a library and an application." <-- is this still true? For instance, if I drop
<adelbertc> into `nix-repl '<nixpkgs>'` and tab on haskellPackages.haskell-pan I don't see it
<smw_> viric: hm... I think my rpi died overnight...
<smw_> viric: had to hard restart
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24186: pax-utils: Out of bounds read fix (master...pax-utils) https://git.io/vyp6j
<ndowens08> if anyone looks at that one, i left a msg in it on motivation reason
<ndowens08> gchristensen: i think that is all the ones i can do
digitus has quit [(Quit: digitus)]
<ndowens08> the audiofile one doesn't have an update or link to patch so idk
<gchristensen> ndowens08: <3 thank you!
<smw_> viric: gah, each time the rpi reboots, it changes its mac
athan has quit [(Ping timeout: 246 seconds)]
hamishmack has joined #nixos
Rizy has joined #nixos
<ndowens08> about to get off here, at least from PC, storm is coming
dhess` has quit [(Remote host closed the connection)]
ndowens08 has quit [(Quit: WeeChat 1.7)]
dhess` has joined #nixos
ndowens08 has joined #nixos
athan has joined #nixos
stepcut has joined #nixos
marsam has quit [(Ping timeout: 260 seconds)]
acowleyz is now known as acowley
ndowens08 has quit [(Quit: Mutter: www.mutterirc.com)]
abbradar has quit [(Remote host closed the connection)]
ndowens08 has joined #nixos
<Mic92> ndowens08: I left a link here: https://github.com/NixOS/security/issues/9#issuecomment-288240377 (This message has been postponed on 2017-03-21 23:34:46.)
<ndowens08> Ah didn't see it
<Mic92> ndowens08: but I would wait a short time for the authors to respond
<Mic92> ndowens08: only because claims to fix a security hole does not mean, no new one is open
<ndowens08> K just knew I looked for a newer version so it would fix it
JagaJaga has quit [(Ping timeout: 256 seconds)]
ebzzry has joined #nixos
<ndowens08> But there isn't nor did I notice anything about patches 😀
<Mic92> ndowens08: it is only spread over 3 pull requests
erasmas has quit [(Ping timeout: 268 seconds)]
ryanartecona has quit [(Quit: ryanartecona)]
ryanartecona has joined #nixos
ndowens08 has quit [(Ping timeout: 246 seconds)]
<gchristensen> dangit ndowens, always leaves right when I have a question :P
<smw_> I thought my rpi randomly died last night...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vypDk
<NixOS_GitHub> nixpkgs/master c5f818f Robin Gloster: elvis: fix build
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vypDq
<NixOS_GitHub> nixpkgs/release-17.03 97aff04 Robin Gloster: elvis: fix build...
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vypDa
<NixOS_GitHub> nixpkgs/master 9d38774 Orivej Desh: gargoyle: init at 2017-03-12
<NixOS_GitHub> nixpkgs/master b5b036a Jörg Thalheim: Merge pull request #24032 from orivej/gargoyle...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vypDr
<NixOS_GitHub> nixpkgs/release-17.03 552f6b3 ndowens: enginepkcs11: libp11 version 0.4.0 and above contain enginepkcs11...
ebzzry has quit [(Ping timeout: 268 seconds)]
ebzzry has joined #nixos
ndowens08 has joined #nixos
jensens has quit [(Ping timeout: 264 seconds)]